sailpoint-api-client 1.6.8 → 1.6.10

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 (72) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +343 -1123
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +321 -840
  6. package/dist/beta/api.js +113 -699
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/beta/common.js.map +1 -1
  10. package/dist/generic/api.d.ts +386 -0
  11. package/dist/generic/api.js +689 -0
  12. package/dist/generic/api.js.map +1 -0
  13. package/dist/generic/base.d.ts +66 -0
  14. package/dist/generic/base.js +89 -0
  15. package/dist/generic/base.js.map +1 -0
  16. package/dist/generic/common.d.ts +65 -0
  17. package/dist/generic/common.js +260 -0
  18. package/dist/generic/common.js.map +1 -0
  19. package/dist/generic/configuration.d.ts +91 -0
  20. package/dist/generic/configuration.js +46 -0
  21. package/dist/generic/configuration.js.map +1 -0
  22. package/dist/generic/index.d.ts +13 -0
  23. package/dist/generic/index.js +32 -0
  24. package/dist/generic/index.js.map +1 -0
  25. package/dist/index.d.ts +5 -4
  26. package/dist/index.js +1 -0
  27. package/dist/index.js.map +1 -1
  28. package/dist/paginator.d.ts +3 -1
  29. package/dist/paginator.js +146 -0
  30. package/dist/paginator.js.map +1 -1
  31. package/dist/v2024/api.d.ts +1536 -511
  32. package/dist/v2024/api.js +5111 -4045
  33. package/dist/v2024/api.js.map +1 -1
  34. package/dist/v2024/common.js +1 -1
  35. package/dist/v2024/common.js.map +1 -1
  36. package/dist/v2025/api.d.ts +5099 -632
  37. package/dist/v2025/api.js +11068 -7033
  38. package/dist/v2025/api.js.map +1 -1
  39. package/dist/v2025/common.js +1 -1
  40. package/dist/v2025/common.js.map +1 -1
  41. package/dist/v3/api.d.ts +122 -444
  42. package/dist/v3/api.js +88 -407
  43. package/dist/v3/api.js.map +1 -1
  44. package/dist/v3/common.js +1 -1
  45. package/dist/v3/common.js.map +1 -1
  46. package/generic/.openapi-generator/FILES +11 -0
  47. package/generic/.openapi-generator/VERSION +1 -0
  48. package/generic/.openapi-generator-ignore +23 -0
  49. package/generic/README.md +46 -0
  50. package/generic/api.ts +681 -0
  51. package/generic/base.ts +86 -0
  52. package/generic/common.ts +159 -0
  53. package/generic/configuration.ts +110 -0
  54. package/generic/git_push.sh +57 -0
  55. package/generic/index.ts +18 -0
  56. package/generic/package.json +34 -0
  57. package/generic/tsconfig.json +21 -0
  58. package/index.ts +9 -7
  59. package/package.json +1 -1
  60. package/paginator.ts +137 -11
  61. package/v2024/README.md +2 -2
  62. package/v2024/api.ts +2323 -771
  63. package/v2024/common.ts +2 -2
  64. package/v2024/package.json +1 -1
  65. package/v2025/README.md +2 -2
  66. package/v2025/api.ts +7689 -1221
  67. package/v2025/common.ts +2 -2
  68. package/v2025/package.json +1 -1
  69. package/v3/README.md +2 -2
  70. package/v3/api.ts +146 -611
  71. package/v3/common.ts +2 -2
  72. package/v3/package.json +1 -1
@@ -1008,13 +1008,13 @@ export interface AccessModelMetadataValuesInnerV2024 {
1008
1008
  */
1009
1009
  export interface AccessProfileApprovalSchemeV2024 {
1010
1010
  /**
1011
- * 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
1011
+ * 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.
1012
1012
  * @type {string}
1013
1013
  * @memberof AccessProfileApprovalSchemeV2024
1014
1014
  */
1015
1015
  'approverType'?: AccessProfileApprovalSchemeV2024ApproverTypeV2024;
1016
1016
  /**
1017
- * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
1017
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
1018
1018
  * @type {string}
1019
1019
  * @memberof AccessProfileApprovalSchemeV2024
1020
1020
  */
@@ -1026,6 +1026,7 @@ export declare const AccessProfileApprovalSchemeV2024ApproverTypeV2024: {
1026
1026
  readonly SourceOwner: "SOURCE_OWNER";
1027
1027
  readonly Manager: "MANAGER";
1028
1028
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
1029
+ readonly Workflow: "WORKFLOW";
1029
1030
  };
1030
1031
  export type AccessProfileApprovalSchemeV2024ApproverTypeV2024 = typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024[keyof typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024];
1031
1032
  /**
@@ -3284,7 +3285,7 @@ export interface AccessV2024 {
3284
3285
  */
3285
3286
  export interface AccountActionV2024 {
3286
3287
  /**
3287
- * Describes if action will be enabled or disabled
3288
+ * Describes if action will be enable, disable or delete.
3288
3289
  * @type {string}
3289
3290
  * @memberof AccountActionV2024
3290
3291
  */
@@ -3299,6 +3300,7 @@ export interface AccountActionV2024 {
3299
3300
  export declare const AccountActionV2024ActionV2024: {
3300
3301
  readonly Enable: "ENABLE";
3301
3302
  readonly Disable: "DISABLE";
3303
+ readonly Delete: "DELETE";
3302
3304
  };
3303
3305
  export type AccountActionV2024ActionV2024 = typeof AccountActionV2024ActionV2024[keyof typeof AccountActionV2024ActionV2024];
3304
3306
  /**
@@ -6115,13 +6117,13 @@ export interface ApprovalReminderAndEscalationConfigV2024 {
6115
6117
  */
6116
6118
  export interface ApprovalSchemeForRoleV2024 {
6117
6119
  /**
6118
- * 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
6120
+ * 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.
6119
6121
  * @type {string}
6120
6122
  * @memberof ApprovalSchemeForRoleV2024
6121
6123
  */
6122
6124
  'approverType'?: ApprovalSchemeForRoleV2024ApproverTypeV2024;
6123
6125
  /**
6124
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
6126
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
6125
6127
  * @type {string}
6126
6128
  * @memberof ApprovalSchemeForRoleV2024
6127
6129
  */
@@ -6131,6 +6133,7 @@ export declare const ApprovalSchemeForRoleV2024ApproverTypeV2024: {
6131
6133
  readonly Owner: "OWNER";
6132
6134
  readonly Manager: "MANAGER";
6133
6135
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
6136
+ readonly Workflow: "WORKFLOW";
6134
6137
  };
6135
6138
  export type ApprovalSchemeForRoleV2024ApproverTypeV2024 = typeof ApprovalSchemeForRoleV2024ApproverTypeV2024[keyof typeof ApprovalSchemeForRoleV2024ApproverTypeV2024];
6136
6139
  /**
@@ -6719,6 +6722,12 @@ export interface AttributeDefinitionV2024 {
6719
6722
  * @memberof AttributeDefinitionV2024
6720
6723
  */
6721
6724
  'name'?: string;
6725
+ /**
6726
+ * Attribute name in the native system.
6727
+ * @type {string}
6728
+ * @memberof AttributeDefinitionV2024
6729
+ */
6730
+ 'nativeName'?: string | null;
6722
6731
  /**
6723
6732
  *
6724
6733
  * @type {AttributeDefinitionTypeV2024}
@@ -10883,6 +10892,12 @@ export interface CompletedApprovalV2024 {
10883
10892
  * @memberof CompletedApprovalV2024
10884
10893
  */
10885
10894
  'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
10895
+ /**
10896
+ * The privilege level of the requested access item, if applicable.
10897
+ * @type {string}
10898
+ * @memberof CompletedApprovalV2024
10899
+ */
10900
+ 'privilegeLevel'?: string | null;
10886
10901
  }
10887
10902
  /**
10888
10903
  * The status after completion.
@@ -13201,19 +13216,6 @@ export declare const DeleteSource202ResponseV2024TypeV2024: {
13201
13216
  readonly TaskResult: "TASK_RESULT";
13202
13217
  };
13203
13218
  export type DeleteSource202ResponseV2024TypeV2024 = typeof DeleteSource202ResponseV2024TypeV2024[keyof typeof DeleteSource202ResponseV2024TypeV2024];
13204
- /**
13205
- *
13206
- * @export
13207
- * @interface DeleteVendorConnectorMapping200ResponseV2024
13208
- */
13209
- export interface DeleteVendorConnectorMapping200ResponseV2024 {
13210
- /**
13211
- * The number of vendor connector mappings successfully deleted.
13212
- * @type {number}
13213
- * @memberof DeleteVendorConnectorMapping200ResponseV2024
13214
- */
13215
- 'count'?: number;
13216
- }
13217
13219
  /**
13218
13220
  *
13219
13221
  * @export
@@ -14194,13 +14196,13 @@ export interface EntitlementAccessRequestConfigV2024 {
14194
14196
  */
14195
14197
  export interface EntitlementApprovalSchemeV2024 {
14196
14198
  /**
14197
- * 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
14199
+ * 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.
14198
14200
  * @type {string}
14199
14201
  * @memberof EntitlementApprovalSchemeV2024
14200
14202
  */
14201
14203
  'approverType'?: EntitlementApprovalSchemeV2024ApproverTypeV2024;
14202
14204
  /**
14203
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
14205
+ * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
14204
14206
  * @type {string}
14205
14207
  * @memberof EntitlementApprovalSchemeV2024
14206
14208
  */
@@ -14211,6 +14213,7 @@ export declare const EntitlementApprovalSchemeV2024ApproverTypeV2024: {
14211
14213
  readonly SourceOwner: "SOURCE_OWNER";
14212
14214
  readonly Manager: "MANAGER";
14213
14215
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
14216
+ readonly Workflow: "WORKFLOW";
14214
14217
  };
14215
14218
  export type EntitlementApprovalSchemeV2024ApproverTypeV2024 = typeof EntitlementApprovalSchemeV2024ApproverTypeV2024[keyof typeof EntitlementApprovalSchemeV2024ApproverTypeV2024];
14216
14219
  /**
@@ -14648,35 +14651,6 @@ export declare const EntitlementOwnerV2024TypeV2024: {
14648
14651
  readonly Identity: "IDENTITY";
14649
14652
  };
14650
14653
  export type EntitlementOwnerV2024TypeV2024 = typeof EntitlementOwnerV2024TypeV2024[keyof typeof EntitlementOwnerV2024TypeV2024];
14651
- /**
14652
- * Entitlement including a specific set of access.
14653
- * @export
14654
- * @interface EntitlementRef1V2024
14655
- */
14656
- export interface EntitlementRef1V2024 {
14657
- /**
14658
- * Entitlement\'s DTO type.
14659
- * @type {string}
14660
- * @memberof EntitlementRef1V2024
14661
- */
14662
- 'type'?: EntitlementRef1V2024TypeV2024;
14663
- /**
14664
- * Entitlement\'s ID.
14665
- * @type {string}
14666
- * @memberof EntitlementRef1V2024
14667
- */
14668
- 'id'?: string;
14669
- /**
14670
- * Entitlement\'s display name.
14671
- * @type {string}
14672
- * @memberof EntitlementRef1V2024
14673
- */
14674
- 'name'?: string;
14675
- }
14676
- export declare const EntitlementRef1V2024TypeV2024: {
14677
- readonly Entitlement: "ENTITLEMENT";
14678
- };
14679
- export type EntitlementRef1V2024TypeV2024 = typeof EntitlementRef1V2024TypeV2024[keyof typeof EntitlementRef1V2024TypeV2024];
14680
14654
  /**
14681
14655
  * Entitlement including a specific set of access.
14682
14656
  * @export
@@ -16192,11 +16166,11 @@ export interface FieldDetailsDtoV2024 {
16192
16166
  */
16193
16167
  'isRequired'?: boolean;
16194
16168
  /**
16195
- * The type of the attribute.
16169
+ * 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.
16196
16170
  * @type {string}
16197
16171
  * @memberof FieldDetailsDtoV2024
16198
16172
  */
16199
- 'type'?: string;
16173
+ 'type'?: FieldDetailsDtoV2024TypeV2024;
16200
16174
  /**
16201
16175
  * Flag indicating whether or not the attribute is multi-valued.
16202
16176
  * @type {boolean}
@@ -16204,6 +16178,15 @@ export interface FieldDetailsDtoV2024 {
16204
16178
  */
16205
16179
  'isMultiValued'?: boolean;
16206
16180
  }
16181
+ export declare const FieldDetailsDtoV2024TypeV2024: {
16182
+ readonly String: "string";
16183
+ readonly Int: "int";
16184
+ readonly Long: "long";
16185
+ readonly Date: "date";
16186
+ readonly Boolean: "boolean";
16187
+ readonly Secret: "secret";
16188
+ };
16189
+ export type FieldDetailsDtoV2024TypeV2024 = typeof FieldDetailsDtoV2024TypeV2024[keyof typeof FieldDetailsDtoV2024TypeV2024];
16207
16190
  /**
16208
16191
  * An additional filter to constrain the results of the search query.
16209
16192
  * @export
@@ -16871,17 +16854,11 @@ export type FormInstanceRecipientV2024TypeV2024 = typeof FormInstanceRecipientV2
16871
16854
  */
16872
16855
  export interface FormInstanceResponseV2024 {
16873
16856
  /**
16874
- * Created is the date the form instance was assigned
16857
+ * Unique guid identifying this form instance
16875
16858
  * @type {string}
16876
16859
  * @memberof FormInstanceResponseV2024
16877
16860
  */
16878
- 'created'?: string;
16879
- /**
16880
- *
16881
- * @type {FormInstanceCreatedByV2024}
16882
- * @memberof FormInstanceResponseV2024
16883
- */
16884
- 'createdBy'?: FormInstanceCreatedByV2024;
16861
+ 'id'?: string;
16885
16862
  /**
16886
16863
  * Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
16887
16864
  * @type {string}
@@ -16889,37 +16866,35 @@ export interface FormInstanceResponseV2024 {
16889
16866
  */
16890
16867
  'expire'?: string;
16891
16868
  /**
16892
- * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
16893
- * @type {Array<FormConditionV2024>}
16869
+ * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
16870
+ * @type {string}
16894
16871
  * @memberof FormInstanceResponseV2024
16895
16872
  */
16896
- 'formConditions'?: Array<FormConditionV2024>;
16873
+ 'state'?: FormInstanceResponseV2024StateV2024;
16897
16874
  /**
16898
- * FormData is the data provided by the form on submit. The data is in a key -> value map
16899
- * @type {{ [key: string]: any; }}
16875
+ * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
16876
+ * @type {boolean}
16900
16877
  * @memberof FormInstanceResponseV2024
16901
16878
  */
16902
- 'formData'?: {
16903
- [key: string]: any;
16904
- } | null;
16879
+ 'standAloneForm'?: boolean;
16905
16880
  /**
16906
- * FormDefinitionID is the id of the form definition that created this form
16881
+ * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
16907
16882
  * @type {string}
16908
16883
  * @memberof FormInstanceResponseV2024
16909
16884
  */
16910
- 'formDefinitionId'?: string;
16885
+ 'standAloneFormUrl'?: string;
16911
16886
  /**
16912
- * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
16913
- * @type {Array<FormElementV2024>}
16887
+ *
16888
+ * @type {FormInstanceCreatedByV2024}
16914
16889
  * @memberof FormInstanceResponseV2024
16915
16890
  */
16916
- 'formElements'?: Array<FormElementV2024>;
16891
+ 'createdBy'?: FormInstanceCreatedByV2024;
16917
16892
  /**
16918
- * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
16919
- * @type {Array<FormErrorV2024>}
16893
+ * FormDefinitionID is the id of the form definition that created this form
16894
+ * @type {string}
16920
16895
  * @memberof FormInstanceResponseV2024
16921
16896
  */
16922
- 'formErrors'?: Array<FormErrorV2024>;
16897
+ 'formDefinitionId'?: string;
16923
16898
  /**
16924
16899
  * FormInput is an object of form input labels to value
16925
16900
  * @type {{ [key: string]: object; }}
@@ -16929,41 +16904,49 @@ export interface FormInstanceResponseV2024 {
16929
16904
  [key: string]: object;
16930
16905
  } | null;
16931
16906
  /**
16932
- * Unique guid identifying this form instance
16933
- * @type {string}
16907
+ * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
16908
+ * @type {Array<FormElementV2024>}
16934
16909
  * @memberof FormInstanceResponseV2024
16935
16910
  */
16936
- 'id'?: string;
16911
+ 'formElements'?: Array<FormElementV2024>;
16937
16912
  /**
16938
- * Modified is the last date the form instance was modified
16939
- * @type {string}
16913
+ * FormData is the data provided by the form on submit. The data is in a key -> value map
16914
+ * @type {{ [key: string]: any; }}
16940
16915
  * @memberof FormInstanceResponseV2024
16941
16916
  */
16942
- 'modified'?: string;
16917
+ 'formData'?: {
16918
+ [key: string]: any;
16919
+ } | null;
16943
16920
  /**
16944
- * Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
16945
- * @type {Array<FormInstanceRecipientV2024>}
16921
+ * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
16922
+ * @type {Array<FormErrorV2024>}
16946
16923
  * @memberof FormInstanceResponseV2024
16947
16924
  */
16948
- 'recipients'?: Array<FormInstanceRecipientV2024>;
16925
+ 'formErrors'?: Array<FormErrorV2024>;
16949
16926
  /**
16950
- * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
16951
- * @type {boolean}
16927
+ * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
16928
+ * @type {Array<FormConditionV2024>}
16952
16929
  * @memberof FormInstanceResponseV2024
16953
16930
  */
16954
- 'standAloneForm'?: boolean;
16931
+ 'formConditions'?: Array<FormConditionV2024>;
16955
16932
  /**
16956
- * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
16933
+ * Created is the date the form instance was assigned
16957
16934
  * @type {string}
16958
16935
  * @memberof FormInstanceResponseV2024
16959
16936
  */
16960
- 'standAloneFormUrl'?: string;
16937
+ 'created'?: string;
16961
16938
  /**
16962
- * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
16939
+ * Modified is the last date the form instance was modified
16963
16940
  * @type {string}
16964
16941
  * @memberof FormInstanceResponseV2024
16965
16942
  */
16966
- 'state'?: FormInstanceResponseV2024StateV2024;
16943
+ 'modified'?: string;
16944
+ /**
16945
+ * Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
16946
+ * @type {Array<FormInstanceRecipientV2024>}
16947
+ * @memberof FormInstanceResponseV2024
16948
+ */
16949
+ 'recipients'?: Array<FormInstanceRecipientV2024>;
16967
16950
  }
16968
16951
  export declare const FormInstanceResponseV2024StateV2024: {
16969
16952
  readonly Assigned: "ASSIGNED";
@@ -17637,6 +17620,25 @@ export declare const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemT
17637
17620
  readonly AccessProfile: "accessProfile";
17638
17621
  };
17639
17622
  export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
17623
+ /**
17624
+ *
17625
+ * @export
17626
+ * @interface GetLaunchers200ResponseV2024
17627
+ */
17628
+ export interface GetLaunchers200ResponseV2024 {
17629
+ /**
17630
+ * Pagination marker
17631
+ * @type {string}
17632
+ * @memberof GetLaunchers200ResponseV2024
17633
+ */
17634
+ 'next'?: string;
17635
+ /**
17636
+ *
17637
+ * @type {Array<LauncherV2024>}
17638
+ * @memberof GetLaunchers200ResponseV2024
17639
+ */
17640
+ 'items'?: Array<LauncherV2024>;
17641
+ }
17640
17642
  /**
17641
17643
  *
17642
17644
  * @export
@@ -17880,6 +17882,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
17880
17882
  * @memberof GetRoleAssignments200ResponseInnerV2024
17881
17883
  */
17882
17884
  'role'?: BaseReferenceDtoV2024;
17885
+ /**
17886
+ * Date that the assignment was added
17887
+ * @type {string}
17888
+ * @memberof GetRoleAssignments200ResponseInnerV2024
17889
+ */
17890
+ 'addedDate'?: string;
17883
17891
  /**
17884
17892
  * Comments added by the user when the assignment was made
17885
17893
  * @type {string}
@@ -19428,6 +19436,184 @@ export interface IdentityEntitiesV2024 {
19428
19436
  */
19429
19437
  'identityEntity'?: IdentityEntitiesIdentityEntityV2024;
19430
19438
  }
19439
+ /**
19440
+ *
19441
+ * @export
19442
+ * @interface IdentityEntitlementDetailsAccountTargetV2024
19443
+ */
19444
+ export interface IdentityEntitlementDetailsAccountTargetV2024 {
19445
+ /**
19446
+ * The id of account
19447
+ * @type {string}
19448
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19449
+ */
19450
+ 'accountId'?: string;
19451
+ /**
19452
+ * The name of account
19453
+ * @type {string}
19454
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19455
+ */
19456
+ 'accountName'?: string;
19457
+ /**
19458
+ * The UUID representation of the account if available
19459
+ * @type {string}
19460
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19461
+ */
19462
+ 'accountUUID'?: string | null;
19463
+ /**
19464
+ * The id of Source
19465
+ * @type {string}
19466
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19467
+ */
19468
+ 'sourceId'?: string;
19469
+ /**
19470
+ * The name of Source
19471
+ * @type {string}
19472
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19473
+ */
19474
+ 'sourceName'?: string;
19475
+ /**
19476
+ * The removal date scheduled for the entitlement on the Identity
19477
+ * @type {string}
19478
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19479
+ */
19480
+ 'removeDate'?: string | null;
19481
+ /**
19482
+ * The assignmentId of the entitlement on the Identity
19483
+ * @type {string}
19484
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19485
+ */
19486
+ 'assignmentId'?: string | null;
19487
+ /**
19488
+ * If the entitlement can be revoked
19489
+ * @type {boolean}
19490
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
19491
+ */
19492
+ 'revocable'?: boolean;
19493
+ }
19494
+ /**
19495
+ *
19496
+ * @export
19497
+ * @interface IdentityEntitlementDetailsEntitlementDtoV2024
19498
+ */
19499
+ export interface IdentityEntitlementDetailsEntitlementDtoV2024 {
19500
+ /**
19501
+ * The entitlement id
19502
+ * @type {string}
19503
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19504
+ */
19505
+ 'id'?: string;
19506
+ /**
19507
+ * The entitlement name
19508
+ * @type {string}
19509
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19510
+ */
19511
+ 'name'?: string;
19512
+ /**
19513
+ * Time when the entitlement was last modified
19514
+ * @type {string}
19515
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19516
+ */
19517
+ 'created'?: string;
19518
+ /**
19519
+ * Time when the entitlement was last modified
19520
+ * @type {string}
19521
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19522
+ */
19523
+ 'modified'?: string;
19524
+ /**
19525
+ * The description of the entitlement
19526
+ * @type {string}
19527
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19528
+ */
19529
+ 'description'?: string | null;
19530
+ /**
19531
+ * The type of the object, will always be \"ENTITLEMENT\"
19532
+ * @type {string}
19533
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19534
+ */
19535
+ 'type'?: string;
19536
+ /**
19537
+ * The source ID
19538
+ * @type {string}
19539
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19540
+ */
19541
+ 'sourceId'?: string;
19542
+ /**
19543
+ * The source name
19544
+ * @type {string}
19545
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19546
+ */
19547
+ 'sourceName'?: string;
19548
+ /**
19549
+ *
19550
+ * @type {OwnerDtoV2024}
19551
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19552
+ */
19553
+ 'owner'?: OwnerDtoV2024;
19554
+ /**
19555
+ * The value of the entitlement
19556
+ * @type {string}
19557
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19558
+ */
19559
+ 'value'?: string;
19560
+ /**
19561
+ * a list of properties informing the viewer about the entitlement
19562
+ * @type {Array<string>}
19563
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
19564
+ */
19565
+ 'flags'?: Array<string>;
19566
+ }
19567
+ /**
19568
+ *
19569
+ * @export
19570
+ * @interface IdentityEntitlementDetailsV2024
19571
+ */
19572
+ export interface IdentityEntitlementDetailsV2024 {
19573
+ /**
19574
+ * Id of Identity
19575
+ * @type {string}
19576
+ * @memberof IdentityEntitlementDetailsV2024
19577
+ */
19578
+ 'identityId'?: string;
19579
+ /**
19580
+ *
19581
+ * @type {IdentityEntitlementDetailsEntitlementDtoV2024}
19582
+ * @memberof IdentityEntitlementDetailsV2024
19583
+ */
19584
+ 'entitlement'?: IdentityEntitlementDetailsEntitlementDtoV2024;
19585
+ /**
19586
+ * Id of Source
19587
+ * @type {string}
19588
+ * @memberof IdentityEntitlementDetailsV2024
19589
+ */
19590
+ 'sourceId'?: string;
19591
+ /**
19592
+ * A list of account targets on the identity provisioned with the requested entitlement.
19593
+ * @type {Array<IdentityEntitlementDetailsAccountTargetV2024>}
19594
+ * @memberof IdentityEntitlementDetailsV2024
19595
+ */
19596
+ 'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2024>;
19597
+ }
19598
+ /**
19599
+ *
19600
+ * @export
19601
+ * @interface IdentityEntitlementsV2024
19602
+ */
19603
+ export interface IdentityEntitlementsV2024 {
19604
+ /**
19605
+ *
19606
+ * @type {TaggedObjectDtoV2024}
19607
+ * @memberof IdentityEntitlementsV2024
19608
+ */
19609
+ 'objectRef'?: TaggedObjectDtoV2024;
19610
+ /**
19611
+ * Labels to be applied to object.
19612
+ * @type {Array<string>}
19613
+ * @memberof IdentityEntitlementsV2024
19614
+ */
19615
+ 'tags'?: Array<string>;
19616
+ }
19431
19617
  /**
19432
19618
  *
19433
19619
  * @export
@@ -20196,33 +20382,6 @@ export declare const IdentityV2024IdentityStatusV2024: {
20196
20382
  readonly Locked: "LOCKED";
20197
20383
  };
20198
20384
  export type IdentityV2024IdentityStatusV2024 = typeof IdentityV2024IdentityStatusV2024[keyof typeof IdentityV2024IdentityStatusV2024];
20199
- /**
20200
- * An identity with a set of access to be added
20201
- * @export
20202
- * @interface IdentityWithNewAccess1V2024
20203
- */
20204
- export interface IdentityWithNewAccess1V2024 {
20205
- /**
20206
- * Set of identity IDs to be checked.
20207
- * @type {string}
20208
- * @memberof IdentityWithNewAccess1V2024
20209
- */
20210
- 'identityId': string;
20211
- /**
20212
- * The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
20213
- * @type {Array<EntitlementRef1V2024>}
20214
- * @memberof IdentityWithNewAccess1V2024
20215
- */
20216
- 'accessRefs': Array<EntitlementRef1V2024>;
20217
- /**
20218
- * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
20219
- * @type {{ [key: string]: string; }}
20220
- * @memberof IdentityWithNewAccess1V2024
20221
- */
20222
- 'clientMetadata'?: {
20223
- [key: string]: string;
20224
- };
20225
- }
20226
20385
  /**
20227
20386
  * Entitlement including a specific set of access.
20228
20387
  * @export
@@ -20241,12 +20400,6 @@ export interface IdentityWithNewAccessAccessRefsInnerV2024 {
20241
20400
  * @memberof IdentityWithNewAccessAccessRefsInnerV2024
20242
20401
  */
20243
20402
  'id'?: string;
20244
- /**
20245
- * Entitlement\'s display name.
20246
- * @type {string}
20247
- * @memberof IdentityWithNewAccessAccessRefsInnerV2024
20248
- */
20249
- 'name'?: string;
20250
20403
  }
20251
20404
  export declare const IdentityWithNewAccessAccessRefsInnerV2024TypeV2024: {
20252
20405
  readonly Entitlement: "ENTITLEMENT";
@@ -21004,6 +21157,189 @@ export declare const LatestOutlierSummaryV2024TypeV2024: {
21004
21157
  readonly Structural: "STRUCTURAL";
21005
21158
  };
21006
21159
  export type LatestOutlierSummaryV2024TypeV2024 = typeof LatestOutlierSummaryV2024TypeV2024[keyof typeof LatestOutlierSummaryV2024TypeV2024];
21160
+ /**
21161
+ * Owner of the Launcher
21162
+ * @export
21163
+ * @interface LauncherOwnerV2024
21164
+ */
21165
+ export interface LauncherOwnerV2024 {
21166
+ /**
21167
+ * Owner type
21168
+ * @type {string}
21169
+ * @memberof LauncherOwnerV2024
21170
+ */
21171
+ 'type': string;
21172
+ /**
21173
+ * Owner ID
21174
+ * @type {string}
21175
+ * @memberof LauncherOwnerV2024
21176
+ */
21177
+ 'id': string;
21178
+ }
21179
+ /**
21180
+ *
21181
+ * @export
21182
+ * @interface LauncherReferenceV2024
21183
+ */
21184
+ export interface LauncherReferenceV2024 {
21185
+ /**
21186
+ * Type of Launcher reference
21187
+ * @type {string}
21188
+ * @memberof LauncherReferenceV2024
21189
+ */
21190
+ 'type'?: LauncherReferenceV2024TypeV2024;
21191
+ /**
21192
+ * ID of Launcher reference
21193
+ * @type {string}
21194
+ * @memberof LauncherReferenceV2024
21195
+ */
21196
+ 'id'?: string;
21197
+ }
21198
+ export declare const LauncherReferenceV2024TypeV2024: {
21199
+ readonly Workflow: "WORKFLOW";
21200
+ };
21201
+ export type LauncherReferenceV2024TypeV2024 = typeof LauncherReferenceV2024TypeV2024[keyof typeof LauncherReferenceV2024TypeV2024];
21202
+ /**
21203
+ *
21204
+ * @export
21205
+ * @interface LauncherRequestReferenceV2024
21206
+ */
21207
+ export interface LauncherRequestReferenceV2024 {
21208
+ /**
21209
+ * Type of Launcher reference
21210
+ * @type {string}
21211
+ * @memberof LauncherRequestReferenceV2024
21212
+ */
21213
+ 'type': LauncherRequestReferenceV2024TypeV2024;
21214
+ /**
21215
+ * ID of Launcher reference
21216
+ * @type {string}
21217
+ * @memberof LauncherRequestReferenceV2024
21218
+ */
21219
+ 'id': string;
21220
+ }
21221
+ export declare const LauncherRequestReferenceV2024TypeV2024: {
21222
+ readonly Workflow: "WORKFLOW";
21223
+ };
21224
+ export type LauncherRequestReferenceV2024TypeV2024 = typeof LauncherRequestReferenceV2024TypeV2024[keyof typeof LauncherRequestReferenceV2024TypeV2024];
21225
+ /**
21226
+ *
21227
+ * @export
21228
+ * @interface LauncherRequestV2024
21229
+ */
21230
+ export interface LauncherRequestV2024 {
21231
+ /**
21232
+ * Name of the Launcher, limited to 255 characters
21233
+ * @type {string}
21234
+ * @memberof LauncherRequestV2024
21235
+ */
21236
+ 'name': string;
21237
+ /**
21238
+ * Description of the Launcher, limited to 2000 characters
21239
+ * @type {string}
21240
+ * @memberof LauncherRequestV2024
21241
+ */
21242
+ 'description': string;
21243
+ /**
21244
+ * Launcher type
21245
+ * @type {string}
21246
+ * @memberof LauncherRequestV2024
21247
+ */
21248
+ 'type': LauncherRequestV2024TypeV2024;
21249
+ /**
21250
+ * State of the Launcher
21251
+ * @type {boolean}
21252
+ * @memberof LauncherRequestV2024
21253
+ */
21254
+ 'disabled': boolean;
21255
+ /**
21256
+ *
21257
+ * @type {LauncherRequestReferenceV2024}
21258
+ * @memberof LauncherRequestV2024
21259
+ */
21260
+ 'reference'?: LauncherRequestReferenceV2024;
21261
+ /**
21262
+ * JSON configuration associated with this Launcher, restricted to a max size of 4KB
21263
+ * @type {string}
21264
+ * @memberof LauncherRequestV2024
21265
+ */
21266
+ 'config': string;
21267
+ }
21268
+ export declare const LauncherRequestV2024TypeV2024: {
21269
+ readonly InteractiveProcess: "INTERACTIVE_PROCESS";
21270
+ };
21271
+ export type LauncherRequestV2024TypeV2024 = typeof LauncherRequestV2024TypeV2024[keyof typeof LauncherRequestV2024TypeV2024];
21272
+ /**
21273
+ *
21274
+ * @export
21275
+ * @interface LauncherV2024
21276
+ */
21277
+ export interface LauncherV2024 {
21278
+ /**
21279
+ * ID of the Launcher
21280
+ * @type {string}
21281
+ * @memberof LauncherV2024
21282
+ */
21283
+ 'id': string;
21284
+ /**
21285
+ * Date the Launcher was created
21286
+ * @type {string}
21287
+ * @memberof LauncherV2024
21288
+ */
21289
+ 'created': string;
21290
+ /**
21291
+ * Date the Launcher was last modified
21292
+ * @type {string}
21293
+ * @memberof LauncherV2024
21294
+ */
21295
+ 'modified': string;
21296
+ /**
21297
+ *
21298
+ * @type {LauncherOwnerV2024}
21299
+ * @memberof LauncherV2024
21300
+ */
21301
+ 'owner': LauncherOwnerV2024;
21302
+ /**
21303
+ * Name of the Launcher, limited to 255 characters
21304
+ * @type {string}
21305
+ * @memberof LauncherV2024
21306
+ */
21307
+ 'name': string;
21308
+ /**
21309
+ * Description of the Launcher, limited to 2000 characters
21310
+ * @type {string}
21311
+ * @memberof LauncherV2024
21312
+ */
21313
+ 'description': string;
21314
+ /**
21315
+ * Launcher type
21316
+ * @type {string}
21317
+ * @memberof LauncherV2024
21318
+ */
21319
+ 'type': LauncherV2024TypeV2024;
21320
+ /**
21321
+ * State of the Launcher
21322
+ * @type {boolean}
21323
+ * @memberof LauncherV2024
21324
+ */
21325
+ 'disabled': boolean;
21326
+ /**
21327
+ *
21328
+ * @type {LauncherReferenceV2024}
21329
+ * @memberof LauncherV2024
21330
+ */
21331
+ 'reference'?: LauncherReferenceV2024;
21332
+ /**
21333
+ * JSON configuration associated with this Launcher, restricted to a max size of 4KB
21334
+ * @type {string}
21335
+ * @memberof LauncherV2024
21336
+ */
21337
+ 'config': string;
21338
+ }
21339
+ export declare const LauncherV2024TypeV2024: {
21340
+ readonly InteractiveProcess: "INTERACTIVE_PROCESS";
21341
+ };
21342
+ export type LauncherV2024TypeV2024 = typeof LauncherV2024TypeV2024[keyof typeof LauncherV2024TypeV2024];
21007
21343
  /**
21008
21344
  *
21009
21345
  * @export
@@ -21360,24 +21696,114 @@ export interface ListFormElementDataByElementIDResponseV2024 {
21360
21696
  'results'?: Array<FormElementDataSourceConfigOptionsV2024>;
21361
21697
  }
21362
21698
  /**
21363
- *
21699
+ * List of FormInstanceResponse items
21364
21700
  * @export
21365
21701
  * @interface ListFormInstancesByTenantResponseV2024
21366
21702
  */
21367
21703
  export interface ListFormInstancesByTenantResponseV2024 {
21368
21704
  /**
21369
- * Count number of Results
21370
- * @type {number}
21705
+ * Unique guid identifying this form instance
21706
+ * @type {string}
21371
21707
  * @memberof ListFormInstancesByTenantResponseV2024
21372
21708
  */
21373
- 'count'?: number;
21709
+ 'id'?: string;
21710
+ /**
21711
+ * Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
21712
+ * @type {string}
21713
+ * @memberof ListFormInstancesByTenantResponseV2024
21714
+ */
21715
+ 'expire'?: string;
21716
+ /**
21717
+ * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
21718
+ * @type {string}
21719
+ * @memberof ListFormInstancesByTenantResponseV2024
21720
+ */
21721
+ 'state'?: ListFormInstancesByTenantResponseV2024StateV2024;
21722
+ /**
21723
+ * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
21724
+ * @type {boolean}
21725
+ * @memberof ListFormInstancesByTenantResponseV2024
21726
+ */
21727
+ 'standAloneForm'?: boolean;
21728
+ /**
21729
+ * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
21730
+ * @type {string}
21731
+ * @memberof ListFormInstancesByTenantResponseV2024
21732
+ */
21733
+ 'standAloneFormUrl'?: string;
21734
+ /**
21735
+ *
21736
+ * @type {FormInstanceCreatedByV2024}
21737
+ * @memberof ListFormInstancesByTenantResponseV2024
21738
+ */
21739
+ 'createdBy'?: FormInstanceCreatedByV2024;
21740
+ /**
21741
+ * FormDefinitionID is the id of the form definition that created this form
21742
+ * @type {string}
21743
+ * @memberof ListFormInstancesByTenantResponseV2024
21744
+ */
21745
+ 'formDefinitionId'?: string;
21746
+ /**
21747
+ * FormInput is an object of form input labels to value
21748
+ * @type {{ [key: string]: object; }}
21749
+ * @memberof ListFormInstancesByTenantResponseV2024
21750
+ */
21751
+ 'formInput'?: {
21752
+ [key: string]: object;
21753
+ } | null;
21374
21754
  /**
21375
- * Results holds a list of FormInstanceResponse items
21376
- * @type {Array<FormInstanceResponseV2024>}
21755
+ * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
21756
+ * @type {Array<FormElementV2024>}
21757
+ * @memberof ListFormInstancesByTenantResponseV2024
21758
+ */
21759
+ 'formElements'?: Array<FormElementV2024>;
21760
+ /**
21761
+ * FormData is the data provided by the form on submit. The data is in a key -> value map
21762
+ * @type {{ [key: string]: any; }}
21763
+ * @memberof ListFormInstancesByTenantResponseV2024
21764
+ */
21765
+ 'formData'?: {
21766
+ [key: string]: any;
21767
+ } | null;
21768
+ /**
21769
+ * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
21770
+ * @type {Array<FormErrorV2024>}
21377
21771
  * @memberof ListFormInstancesByTenantResponseV2024
21378
21772
  */
21379
- 'results'?: Array<FormInstanceResponseV2024>;
21773
+ 'formErrors'?: Array<FormErrorV2024>;
21774
+ /**
21775
+ * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
21776
+ * @type {Array<FormConditionV2024>}
21777
+ * @memberof ListFormInstancesByTenantResponseV2024
21778
+ */
21779
+ 'formConditions'?: Array<FormConditionV2024>;
21780
+ /**
21781
+ * Created is the date the form instance was assigned
21782
+ * @type {string}
21783
+ * @memberof ListFormInstancesByTenantResponseV2024
21784
+ */
21785
+ 'created'?: string;
21786
+ /**
21787
+ * Modified is the last date the form instance was modified
21788
+ * @type {string}
21789
+ * @memberof ListFormInstancesByTenantResponseV2024
21790
+ */
21791
+ 'modified'?: string;
21792
+ /**
21793
+ * Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
21794
+ * @type {Array<FormInstanceRecipientV2024>}
21795
+ * @memberof ListFormInstancesByTenantResponseV2024
21796
+ */
21797
+ 'recipients'?: Array<FormInstanceRecipientV2024>;
21380
21798
  }
21799
+ export declare const ListFormInstancesByTenantResponseV2024StateV2024: {
21800
+ readonly Assigned: "ASSIGNED";
21801
+ readonly InProgress: "IN_PROGRESS";
21802
+ readonly Submitted: "SUBMITTED";
21803
+ readonly Completed: "COMPLETED";
21804
+ readonly Cancelled: "CANCELLED";
21805
+ };
21806
+ export type ListFormInstancesByTenantResponseV2024StateV2024 = typeof ListFormInstancesByTenantResponseV2024StateV2024[keyof typeof ListFormInstancesByTenantResponseV2024StateV2024];
21381
21807
  /**
21382
21808
  *
21383
21809
  * @export
@@ -22842,6 +23268,24 @@ export interface ManagedClusterAttributesV2024 {
22842
23268
  */
22843
23269
  'keystore'?: string | null;
22844
23270
  }
23271
+ /**
23272
+ * Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
23273
+ * @export
23274
+ * @interface ManagedClusterEncryptionConfigV2024
23275
+ */
23276
+ export interface ManagedClusterEncryptionConfigV2024 {
23277
+ /**
23278
+ * Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
23279
+ * @type {string}
23280
+ * @memberof ManagedClusterEncryptionConfigV2024
23281
+ */
23282
+ 'format'?: ManagedClusterEncryptionConfigV2024FormatV2024;
23283
+ }
23284
+ export declare const ManagedClusterEncryptionConfigV2024FormatV2024: {
23285
+ readonly V2: "V2";
23286
+ readonly V3: "V3";
23287
+ };
23288
+ export type ManagedClusterEncryptionConfigV2024FormatV2024 = typeof ManagedClusterEncryptionConfigV2024FormatV2024[keyof typeof ManagedClusterEncryptionConfigV2024FormatV2024];
22845
23289
  /**
22846
23290
  * Managed Cluster key pair for Cluster
22847
23291
  * @export
@@ -23096,7 +23540,7 @@ export interface ManagedClusterV2024 {
23096
23540
  */
23097
23541
  'ccgVersion': string;
23098
23542
  /**
23099
- * boolean flag indiacting whether or not the cluster configuration is pinned
23543
+ * boolean flag indicating whether or not the cluster configuration is pinned
23100
23544
  * @type {boolean}
23101
23545
  * @memberof ManagedClusterV2024
23102
23546
  */
@@ -23137,6 +23581,12 @@ export interface ManagedClusterV2024 {
23137
23581
  * @memberof ManagedClusterV2024
23138
23582
  */
23139
23583
  'publicKey'?: string | null;
23584
+ /**
23585
+ *
23586
+ * @type {ManagedClusterEncryptionConfigV2024}
23587
+ * @memberof ManagedClusterV2024
23588
+ */
23589
+ 'encryptionConfiguration'?: ManagedClusterEncryptionConfigV2024;
23140
23590
  /**
23141
23591
  * Key describing any immediate cluster alerts
23142
23592
  * @type {string}
@@ -23924,10 +24374,10 @@ export interface MultiHostIntegrationsCreateV2024 {
23924
24374
  'description': string;
23925
24375
  /**
23926
24376
  *
23927
- * @type {SourceOwnerV2024}
24377
+ * @type {MultiHostIntegrationsOwnerV2024}
23928
24378
  * @memberof MultiHostIntegrationsCreateV2024
23929
24379
  */
23930
- 'owner': SourceOwnerV2024;
24380
+ 'owner': MultiHostIntegrationsOwnerV2024;
23931
24381
  /**
23932
24382
  *
23933
24383
  * @type {SourceClusterV2024}
@@ -23967,6 +24417,35 @@ export interface MultiHostIntegrationsCreateV2024 {
23967
24417
  */
23968
24418
  'modified'?: string;
23969
24419
  }
24420
+ /**
24421
+ * Reference to identity object who owns the source.
24422
+ * @export
24423
+ * @interface MultiHostIntegrationsOwnerV2024
24424
+ */
24425
+ export interface MultiHostIntegrationsOwnerV2024 {
24426
+ /**
24427
+ * Type of object being referenced.
24428
+ * @type {string}
24429
+ * @memberof MultiHostIntegrationsOwnerV2024
24430
+ */
24431
+ 'type'?: MultiHostIntegrationsOwnerV2024TypeV2024;
24432
+ /**
24433
+ * Owner identity\'s ID.
24434
+ * @type {string}
24435
+ * @memberof MultiHostIntegrationsOwnerV2024
24436
+ */
24437
+ 'id'?: string;
24438
+ /**
24439
+ * Owner identity\'s human-readable display name.
24440
+ * @type {string}
24441
+ * @memberof MultiHostIntegrationsOwnerV2024
24442
+ */
24443
+ 'name'?: string;
24444
+ }
24445
+ export declare const MultiHostIntegrationsOwnerV2024TypeV2024: {
24446
+ readonly Identity: "IDENTITY";
24447
+ };
24448
+ export type MultiHostIntegrationsOwnerV2024TypeV2024 = typeof MultiHostIntegrationsOwnerV2024TypeV2024[keyof typeof MultiHostIntegrationsOwnerV2024TypeV2024];
23970
24449
  /**
23971
24450
  *
23972
24451
  * @export
@@ -23993,10 +24472,10 @@ export interface MultiHostIntegrationsV2024 {
23993
24472
  'description': string;
23994
24473
  /**
23995
24474
  *
23996
- * @type {SourceOwnerV2024}
24475
+ * @type {MultiHostIntegrationsOwnerV2024}
23997
24476
  * @memberof MultiHostIntegrationsV2024
23998
24477
  */
23999
- 'owner': SourceOwnerV2024;
24478
+ 'owner': MultiHostIntegrationsOwnerV2024;
24000
24479
  /**
24001
24480
  *
24002
24481
  * @type {SourceClusterV2024}
@@ -24199,6 +24678,7 @@ export declare const MultiHostIntegrationsV2024FeaturesV2024: {
24199
24678
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
24200
24679
  readonly UsesUuid: "USES_UUID";
24201
24680
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
24681
+ readonly Delete: "DELETE";
24202
24682
  };
24203
24683
  export type MultiHostIntegrationsV2024FeaturesV2024 = typeof MultiHostIntegrationsV2024FeaturesV2024[keyof typeof MultiHostIntegrationsV2024FeaturesV2024];
24204
24684
  export declare const MultiHostIntegrationsV2024StatusV2024: {
@@ -24246,10 +24726,10 @@ export interface MultiHostSourcesV2024 {
24246
24726
  'description'?: string;
24247
24727
  /**
24248
24728
  *
24249
- * @type {SourceOwnerV2024}
24729
+ * @type {MultiHostIntegrationsOwnerV2024}
24250
24730
  * @memberof MultiHostSourcesV2024
24251
24731
  */
24252
- 'owner': SourceOwnerV2024;
24732
+ 'owner': MultiHostIntegrationsOwnerV2024;
24253
24733
  /**
24254
24734
  *
24255
24735
  * @type {SourceClusterV2024}
@@ -24448,6 +24928,7 @@ export declare const MultiHostSourcesV2024FeaturesV2024: {
24448
24928
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
24449
24929
  readonly UsesUuid: "USES_UUID";
24450
24930
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
24931
+ readonly Delete: "DELETE";
24451
24932
  };
24452
24933
  export type MultiHostSourcesV2024FeaturesV2024 = typeof MultiHostSourcesV2024FeaturesV2024[keyof typeof MultiHostSourcesV2024FeaturesV2024];
24453
24934
  export declare const MultiHostSourcesV2024StatusV2024: {
@@ -27563,6 +28044,12 @@ export interface PendingApprovalV2024 {
27563
28044
  * @memberof PendingApprovalV2024
27564
28045
  */
27565
28046
  'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
28047
+ /**
28048
+ * The privilege level of the requested access item, if applicable.
28049
+ * @type {string}
28050
+ * @memberof PendingApprovalV2024
28051
+ */
28052
+ 'privilegeLevel'?: string | null;
27566
28053
  }
27567
28054
  /**
27568
28055
  * Simplified DTO for the Permission objects stored in SailPoint\'s database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
@@ -30231,6 +30718,12 @@ export interface RequestedItemStatusV2024 {
30231
30718
  * @memberof RequestedItemStatusV2024
30232
30719
  */
30233
30720
  'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
30721
+ /**
30722
+ * The privilege level of the requested access item, if applicable.
30723
+ * @type {string}
30724
+ * @memberof RequestedItemStatusV2024
30725
+ */
30726
+ 'privilegeLevel'?: string | null;
30234
30727
  }
30235
30728
  export declare const RequestedItemStatusV2024TypeV2024: {
30236
30729
  readonly AccessProfile: "ACCESS_PROFILE";
@@ -31069,6 +31562,12 @@ export interface RoleAssignmentDtoV2024 {
31069
31562
  * @memberof RoleAssignmentDtoV2024
31070
31563
  */
31071
31564
  'removeDate'?: string | null;
31565
+ /**
31566
+ * Date that the assignment was added
31567
+ * @type {string}
31568
+ * @memberof RoleAssignmentDtoV2024
31569
+ */
31570
+ 'addedDate'?: string;
31072
31571
  }
31073
31572
  /**
31074
31573
  *
@@ -31088,6 +31587,12 @@ export interface RoleAssignmentRefV2024 {
31088
31587
  * @memberof RoleAssignmentRefV2024
31089
31588
  */
31090
31589
  'role'?: BaseReferenceDtoV2024;
31590
+ /**
31591
+ * Date that the assignment was added
31592
+ * @type {string}
31593
+ * @memberof RoleAssignmentRefV2024
31594
+ */
31595
+ 'addedDate'?: string;
31091
31596
  }
31092
31597
  /**
31093
31598
  * Type which indicates how a particular Identity obtained a particular Role
@@ -34844,6 +35349,7 @@ export declare const SchemaV2024FeaturesV2024: {
34844
35349
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
34845
35350
  readonly UsesUuid: "USES_UUID";
34846
35351
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
35352
+ readonly Delete: "DELETE";
34847
35353
  };
34848
35354
  export type SchemaV2024FeaturesV2024 = typeof SchemaV2024FeaturesV2024[keyof typeof SchemaV2024FeaturesV2024];
34849
35355
  /**
@@ -38651,7 +39157,7 @@ export interface SourceV2024 {
38651
39157
  * @type {SourceOwnerV2024}
38652
39158
  * @memberof SourceV2024
38653
39159
  */
38654
- 'owner': SourceOwnerV2024;
39160
+ 'owner': SourceOwnerV2024 | null;
38655
39161
  /**
38656
39162
  *
38657
39163
  * @type {SourceClusterV2024}
@@ -38848,6 +39354,7 @@ export declare const SourceV2024FeaturesV2024: {
38848
39354
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
38849
39355
  readonly UsesUuid: "USES_UUID";
38850
39356
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
39357
+ readonly Delete: "DELETE";
38851
39358
  };
38852
39359
  export type SourceV2024FeaturesV2024 = typeof SourceV2024FeaturesV2024[keyof typeof SourceV2024FeaturesV2024];
38853
39360
  export declare const SourceV2024StatusV2024: {
@@ -39475,6 +39982,19 @@ export interface StartInvocationInputV2024 {
39475
39982
  */
39476
39983
  'contentJson'?: object;
39477
39984
  }
39985
+ /**
39986
+ *
39987
+ * @export
39988
+ * @interface StartLauncher200ResponseV2024
39989
+ */
39990
+ export interface StartLauncher200ResponseV2024 {
39991
+ /**
39992
+ * ID of the Interactive Process that was launched
39993
+ * @type {string}
39994
+ * @memberof StartLauncher200ResponseV2024
39995
+ */
39996
+ 'interactiveProcessId': string;
39997
+ }
39478
39998
  /**
39479
39999
  *
39480
40000
  * @export
@@ -39867,6 +40387,79 @@ export interface SubstringV2024 {
39867
40387
  [key: string]: any;
39868
40388
  };
39869
40389
  }
40390
+ /**
40391
+ * Tagged object\'s category.
40392
+ * @export
40393
+ * @interface TagTagCategoryRefsInnerV2024
40394
+ */
40395
+ export interface TagTagCategoryRefsInnerV2024 {
40396
+ /**
40397
+ * DTO type of the tagged object\'s category.
40398
+ * @type {string}
40399
+ * @memberof TagTagCategoryRefsInnerV2024
40400
+ */
40401
+ 'type'?: TagTagCategoryRefsInnerV2024TypeV2024;
40402
+ /**
40403
+ * Tagged object\'s ID.
40404
+ * @type {string}
40405
+ * @memberof TagTagCategoryRefsInnerV2024
40406
+ */
40407
+ 'id'?: string;
40408
+ /**
40409
+ * Tagged object\'s display name.
40410
+ * @type {string}
40411
+ * @memberof TagTagCategoryRefsInnerV2024
40412
+ */
40413
+ 'name'?: string;
40414
+ }
40415
+ export declare const TagTagCategoryRefsInnerV2024TypeV2024: {
40416
+ readonly AccessProfile: "ACCESS_PROFILE";
40417
+ readonly Application: "APPLICATION";
40418
+ readonly Campaign: "CAMPAIGN";
40419
+ readonly Entitlement: "ENTITLEMENT";
40420
+ readonly Identity: "IDENTITY";
40421
+ readonly Role: "ROLE";
40422
+ readonly SodPolicy: "SOD_POLICY";
40423
+ readonly Source: "SOURCE";
40424
+ };
40425
+ export type TagTagCategoryRefsInnerV2024TypeV2024 = typeof TagTagCategoryRefsInnerV2024TypeV2024[keyof typeof TagTagCategoryRefsInnerV2024TypeV2024];
40426
+ /**
40427
+ *
40428
+ * @export
40429
+ * @interface TagV2024
40430
+ */
40431
+ export interface TagV2024 {
40432
+ /**
40433
+ * Tag id
40434
+ * @type {string}
40435
+ * @memberof TagV2024
40436
+ */
40437
+ 'id': string;
40438
+ /**
40439
+ * Name of the tag.
40440
+ * @type {string}
40441
+ * @memberof TagV2024
40442
+ */
40443
+ 'name': string;
40444
+ /**
40445
+ * Date the tag was created.
40446
+ * @type {string}
40447
+ * @memberof TagV2024
40448
+ */
40449
+ 'created': string;
40450
+ /**
40451
+ * Date the tag was last modified.
40452
+ * @type {string}
40453
+ * @memberof TagV2024
40454
+ */
40455
+ 'modified': string;
40456
+ /**
40457
+ *
40458
+ * @type {Array<TagTagCategoryRefsInnerV2024>}
40459
+ * @memberof TagV2024
40460
+ */
40461
+ 'tagCategoryRefs': Array<TagTagCategoryRefsInnerV2024>;
40462
+ }
39870
40463
  /**
39871
40464
  *
39872
40465
  * @export
@@ -42252,143 +42845,6 @@ export interface ValueV2024 {
42252
42845
  */
42253
42846
  'value'?: string;
42254
42847
  }
42255
- /**
42256
- * An object representing the nullable timestamp of when the mapping was deleted.
42257
- * @export
42258
- * @interface VendorConnectorMappingDeletedAtV2024
42259
- */
42260
- export interface VendorConnectorMappingDeletedAtV2024 {
42261
- /**
42262
- * The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
42263
- * @type {string}
42264
- * @memberof VendorConnectorMappingDeletedAtV2024
42265
- */
42266
- 'Time'?: string;
42267
- /**
42268
- * A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
42269
- * @type {boolean}
42270
- * @memberof VendorConnectorMappingDeletedAtV2024
42271
- */
42272
- 'Valid'?: boolean;
42273
- }
42274
- /**
42275
- * An object representing the nullable identifier of the user who deleted the mapping.
42276
- * @export
42277
- * @interface VendorConnectorMappingDeletedByV2024
42278
- */
42279
- export interface VendorConnectorMappingDeletedByV2024 {
42280
- /**
42281
- * The identifier of the user who deleted the mapping, if applicable.
42282
- * @type {string}
42283
- * @memberof VendorConnectorMappingDeletedByV2024
42284
- */
42285
- 'String'?: string;
42286
- /**
42287
- * A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
42288
- * @type {boolean}
42289
- * @memberof VendorConnectorMappingDeletedByV2024
42290
- */
42291
- 'Valid'?: boolean;
42292
- }
42293
- /**
42294
- * An object representing the nullable timestamp of the last update.
42295
- * @export
42296
- * @interface VendorConnectorMappingUpdatedAtV2024
42297
- */
42298
- export interface VendorConnectorMappingUpdatedAtV2024 {
42299
- /**
42300
- * The timestamp when the mapping was last updated, represented in ISO 8601 format.
42301
- * @type {string}
42302
- * @memberof VendorConnectorMappingUpdatedAtV2024
42303
- */
42304
- 'Time'?: string;
42305
- /**
42306
- * A flag indicating if the \'Time\' field is set and valid.
42307
- * @type {boolean}
42308
- * @memberof VendorConnectorMappingUpdatedAtV2024
42309
- */
42310
- 'Valid'?: boolean;
42311
- }
42312
- /**
42313
- * An object representing the nullable identifier of the user who last updated the mapping.
42314
- * @export
42315
- * @interface VendorConnectorMappingUpdatedByV2024
42316
- */
42317
- export interface VendorConnectorMappingUpdatedByV2024 {
42318
- /**
42319
- * The identifier of the user who last updated the mapping, if available.
42320
- * @type {string}
42321
- * @memberof VendorConnectorMappingUpdatedByV2024
42322
- */
42323
- 'String'?: string;
42324
- /**
42325
- * A flag indicating if the \'String\' field is set and valid.
42326
- * @type {boolean}
42327
- * @memberof VendorConnectorMappingUpdatedByV2024
42328
- */
42329
- 'Valid'?: boolean;
42330
- }
42331
- /**
42332
- *
42333
- * @export
42334
- * @interface VendorConnectorMappingV2024
42335
- */
42336
- export interface VendorConnectorMappingV2024 {
42337
- /**
42338
- * The unique identifier for the vendor-connector mapping.
42339
- * @type {string}
42340
- * @memberof VendorConnectorMappingV2024
42341
- */
42342
- 'id'?: string;
42343
- /**
42344
- * The name of the vendor.
42345
- * @type {string}
42346
- * @memberof VendorConnectorMappingV2024
42347
- */
42348
- 'vendor'?: string;
42349
- /**
42350
- * The name of the connector.
42351
- * @type {string}
42352
- * @memberof VendorConnectorMappingV2024
42353
- */
42354
- 'connector'?: string;
42355
- /**
42356
- * The creation timestamp of the mapping.
42357
- * @type {string}
42358
- * @memberof VendorConnectorMappingV2024
42359
- */
42360
- 'createdAt'?: string;
42361
- /**
42362
- * The identifier of the user who created the mapping.
42363
- * @type {string}
42364
- * @memberof VendorConnectorMappingV2024
42365
- */
42366
- 'createdBy'?: string;
42367
- /**
42368
- *
42369
- * @type {VendorConnectorMappingUpdatedAtV2024}
42370
- * @memberof VendorConnectorMappingV2024
42371
- */
42372
- 'updatedAt'?: VendorConnectorMappingUpdatedAtV2024 | null;
42373
- /**
42374
- *
42375
- * @type {VendorConnectorMappingUpdatedByV2024}
42376
- * @memberof VendorConnectorMappingV2024
42377
- */
42378
- 'updatedBy'?: VendorConnectorMappingUpdatedByV2024 | null;
42379
- /**
42380
- *
42381
- * @type {VendorConnectorMappingDeletedAtV2024}
42382
- * @memberof VendorConnectorMappingV2024
42383
- */
42384
- 'deletedAt'?: VendorConnectorMappingDeletedAtV2024 | null;
42385
- /**
42386
- *
42387
- * @type {VendorConnectorMappingDeletedByV2024}
42388
- * @memberof VendorConnectorMappingV2024
42389
- */
42390
- 'deletedBy'?: VendorConnectorMappingDeletedByV2024 | null;
42391
- }
42392
42848
  /**
42393
42849
  * The types of objects supported for SOD violations
42394
42850
  * @export
@@ -45196,7 +45652,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
45196
45652
  */
45197
45653
  cancelAccessRequestInBulk: (bulkCancelAccessRequestV2024: BulkCancelAccessRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45198
45654
  /**
45199
- * 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.
45655
+ * 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.
45200
45656
  * @summary Close access request
45201
45657
  * @param {CloseAccessRequestV2024} closeAccessRequestV2024
45202
45658
  * @param {*} [axiosOptions] Override http request option.
@@ -45218,6 +45674,16 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
45218
45674
  * @throws {RequiredError}
45219
45675
  */
45220
45676
  getAccessRequestConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45677
+ /**
45678
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
45679
+ * @summary Identity entitlement details
45680
+ * @param {string} identityId The identity ID.
45681
+ * @param {string} entitlementId The entitlement ID
45682
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45683
+ * @param {*} [axiosOptions] Override http request option.
45684
+ * @throws {RequiredError}
45685
+ */
45686
+ getEntitlementDetailsForIdentity: (identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45221
45687
  /**
45222
45688
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
45223
45689
  * @summary Access request status
@@ -45238,6 +45704,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
45238
45704
  /**
45239
45705
  * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
45240
45706
  * @summary Access request status for administrators
45707
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
45241
45708
  * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
45242
45709
  * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
45243
45710
  * @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
@@ -45251,15 +45718,16 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
45251
45718
  * @param {*} [axiosOptions] Override http request option.
45252
45719
  * @throws {RequiredError}
45253
45720
  */
45254
- listAdministratorsAccessRequestStatus: (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45721
+ listAdministratorsAccessRequestStatus: (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45255
45722
  /**
45256
45723
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
45257
45724
  * @summary Get accounts selections for identity
45258
45725
  * @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
45726
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45259
45727
  * @param {*} [axiosOptions] Override http request option.
45260
45728
  * @throws {RequiredError}
45261
45729
  */
45262
- loadAccountSelections: (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45730
+ loadAccountSelections: (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45263
45731
  /**
45264
45732
  * This endpoint replaces the current access-request configuration.
45265
45733
  * @summary Update access request configuration
@@ -45299,7 +45767,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
45299
45767
  */
45300
45768
  cancelAccessRequestInBulk(bulkCancelAccessRequestV2024: BulkCancelAccessRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45301
45769
  /**
45302
- * 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.
45770
+ * 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.
45303
45771
  * @summary Close access request
45304
45772
  * @param {CloseAccessRequestV2024} closeAccessRequestV2024
45305
45773
  * @param {*} [axiosOptions] Override http request option.
@@ -45321,6 +45789,16 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
45321
45789
  * @throws {RequiredError}
45322
45790
  */
45323
45791
  getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestConfigV2024>>;
45792
+ /**
45793
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
45794
+ * @summary Identity entitlement details
45795
+ * @param {string} identityId The identity ID.
45796
+ * @param {string} entitlementId The entitlement ID
45797
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45798
+ * @param {*} [axiosOptions] Override http request option.
45799
+ * @throws {RequiredError}
45800
+ */
45801
+ getEntitlementDetailsForIdentity(identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityEntitlementDetailsV2024>>;
45324
45802
  /**
45325
45803
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
45326
45804
  * @summary Access request status
@@ -45341,6 +45819,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
45341
45819
  /**
45342
45820
  * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
45343
45821
  * @summary Access request status for administrators
45822
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
45344
45823
  * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
45345
45824
  * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
45346
45825
  * @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
@@ -45354,15 +45833,16 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
45354
45833
  * @param {*} [axiosOptions] Override http request option.
45355
45834
  * @throws {RequiredError}
45356
45835
  */
45357
- listAdministratorsAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>>;
45836
+ listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>>;
45358
45837
  /**
45359
45838
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
45360
45839
  * @summary Get accounts selections for identity
45361
45840
  * @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
45841
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45362
45842
  * @param {*} [axiosOptions] Override http request option.
45363
45843
  * @throws {RequiredError}
45364
45844
  */
45365
- loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>>;
45845
+ loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>>;
45366
45846
  /**
45367
45847
  * This endpoint replaces the current access-request configuration.
45368
45848
  * @summary Update access request configuration
@@ -45402,7 +45882,7 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
45402
45882
  */
45403
45883
  cancelAccessRequestInBulk(requestParameters: AccessRequestsV2024ApiCancelAccessRequestInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
45404
45884
  /**
45405
- * 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.
45885
+ * 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.
45406
45886
  * @summary Close access request
45407
45887
  * @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
45408
45888
  * @param {*} [axiosOptions] Override http request option.
@@ -45424,6 +45904,14 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
45424
45904
  * @throws {RequiredError}
45425
45905
  */
45426
45906
  getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestConfigV2024>;
45907
+ /**
45908
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
45909
+ * @summary Identity entitlement details
45910
+ * @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
45911
+ * @param {*} [axiosOptions] Override http request option.
45912
+ * @throws {RequiredError}
45913
+ */
45914
+ getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityEntitlementDetailsV2024>;
45427
45915
  /**
45428
45916
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
45429
45917
  * @summary Access request status
@@ -45439,7 +45927,7 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
45439
45927
  * @param {*} [axiosOptions] Override http request option.
45440
45928
  * @throws {RequiredError}
45441
45929
  */
45442
- listAdministratorsAccessRequestStatus(requestParameters?: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>;
45930
+ listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>;
45443
45931
  /**
45444
45932
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
45445
45933
  * @summary Get accounts selections for identity
@@ -45522,6 +46010,31 @@ export interface AccessRequestsV2024ApiCreateAccessRequestRequest {
45522
46010
  */
45523
46011
  readonly accessRequestV2024: AccessRequestV2024;
45524
46012
  }
46013
+ /**
46014
+ * Request parameters for getEntitlementDetailsForIdentity operation in AccessRequestsV2024Api.
46015
+ * @export
46016
+ * @interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest
46017
+ */
46018
+ export interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest {
46019
+ /**
46020
+ * The identity ID.
46021
+ * @type {string}
46022
+ * @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
46023
+ */
46024
+ readonly identityId: string;
46025
+ /**
46026
+ * The entitlement ID
46027
+ * @type {string}
46028
+ * @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
46029
+ */
46030
+ readonly entitlementId: string;
46031
+ /**
46032
+ * Use this header to enable this experimental API.
46033
+ * @type {string}
46034
+ * @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
46035
+ */
46036
+ readonly xSailPointExperimental?: string;
46037
+ }
45525
46038
  /**
45526
46039
  * Request parameters for listAccessRequestStatus operation in AccessRequestsV2024Api.
45527
46040
  * @export
@@ -45595,6 +46108,12 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
45595
46108
  * @interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
45596
46109
  */
45597
46110
  export interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest {
46111
+ /**
46112
+ * Use this header to enable this experimental API.
46113
+ * @type {string}
46114
+ * @memberof AccessRequestsV2024ApiListAdministratorsAccessRequestStatus
46115
+ */
46116
+ readonly xSailPointExperimental: string;
45598
46117
  /**
45599
46118
  * Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
45600
46119
  * @type {string}
@@ -45668,6 +46187,12 @@ export interface AccessRequestsV2024ApiLoadAccountSelectionsRequest {
45668
46187
  * @memberof AccessRequestsV2024ApiLoadAccountSelections
45669
46188
  */
45670
46189
  readonly accountsSelectionRequestV2024: AccountsSelectionRequestV2024;
46190
+ /**
46191
+ * Use this header to enable this experimental API.
46192
+ * @type {string}
46193
+ * @memberof AccessRequestsV2024ApiLoadAccountSelections
46194
+ */
46195
+ readonly xSailPointExperimental?: string;
45671
46196
  }
45672
46197
  /**
45673
46198
  * Request parameters for setAccessRequestConfig operation in AccessRequestsV2024Api.
@@ -45717,7 +46242,7 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
45717
46242
  */
45718
46243
  cancelAccessRequestInBulk(requestParameters: AccessRequestsV2024ApiCancelAccessRequestInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
45719
46244
  /**
45720
- * 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.
46245
+ * 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.
45721
46246
  * @summary Close access request
45722
46247
  * @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
45723
46248
  * @param {*} [axiosOptions] Override http request option.
@@ -45742,6 +46267,15 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
45742
46267
  * @memberof AccessRequestsV2024Api
45743
46268
  */
45744
46269
  getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestConfigV2024, any>>;
46270
+ /**
46271
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
46272
+ * @summary Identity entitlement details
46273
+ * @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
46274
+ * @param {*} [axiosOptions] Override http request option.
46275
+ * @throws {RequiredError}
46276
+ * @memberof AccessRequestsV2024Api
46277
+ */
46278
+ getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementDetailsV2024, any>>;
45745
46279
  /**
45746
46280
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
45747
46281
  * @summary Access request status
@@ -45759,7 +46293,7 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
45759
46293
  * @throws {RequiredError}
45760
46294
  * @memberof AccessRequestsV2024Api
45761
46295
  */
45762
- listAdministratorsAccessRequestStatus(requestParameters?: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestAdminItemStatusV2024[], any>>;
46296
+ listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestAdminItemStatusV2024[], any>>;
45763
46297
  /**
45764
46298
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
45765
46299
  * @summary Get accounts selections for identity
@@ -51599,7 +52133,7 @@ export declare const ConfigurationHubV2024ApiAxiosParamCreator: (configuration?:
51599
52133
  */
51600
52134
  createScheduledAction: (scheduledActionPayloadV2024: ScheduledActionPayloadV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
51601
52135
  /**
51602
- * 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.
52136
+ * 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.
51603
52137
  * @summary Upload a configuration
51604
52138
  * @param {File} data JSON file containing the objects to be imported.
51605
52139
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -51769,7 +52303,7 @@ export declare const ConfigurationHubV2024ApiFp: (configuration?: Configuration)
51769
52303
  */
51770
52304
  createScheduledAction(scheduledActionPayloadV2024: ScheduledActionPayloadV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduledActionResponseV2024>>;
51771
52305
  /**
51772
- * 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.
52306
+ * 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.
51773
52307
  * @summary Upload a configuration
51774
52308
  * @param {File} data JSON file containing the objects to be imported.
51775
52309
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -51937,7 +52471,7 @@ export declare const ConfigurationHubV2024ApiFactory: (configuration?: Configura
51937
52471
  */
51938
52472
  createScheduledAction(requestParameters: ConfigurationHubV2024ApiCreateScheduledActionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ScheduledActionResponseV2024>;
51939
52473
  /**
51940
- * 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.
52474
+ * 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.
51941
52475
  * @summary Upload a configuration
51942
52476
  * @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
51943
52477
  * @param {*} [axiosOptions] Override http request option.
@@ -52377,7 +52911,7 @@ export declare class ConfigurationHubV2024Api extends BaseAPI {
52377
52911
  */
52378
52912
  createScheduledAction(requestParameters: ConfigurationHubV2024ApiCreateScheduledActionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScheduledActionResponseV2024, any>>;
52379
52913
  /**
52380
- * 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.
52914
+ * 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.
52381
52915
  * @summary Upload a configuration
52382
52916
  * @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
52383
52917
  * @param {*} [axiosOptions] Override http request option.
@@ -56427,7 +56961,7 @@ export declare const EntitlementsV2024ApiAxiosParamCreator: (configuration?: Con
56427
56961
  */
56428
56962
  resetSourceEntitlements: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56429
56963
  /**
56430
- * 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.
56964
+ * 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.
56431
56965
  * @summary Bulk update an entitlement list
56432
56966
  * @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
56433
56967
  * @param {*} [axiosOptions] Override http request option.
@@ -56555,7 +57089,7 @@ export declare const EntitlementsV2024ApiFp: (configuration?: Configuration) =>
56555
57089
  */
56556
57090
  resetSourceEntitlements(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>>;
56557
57091
  /**
56558
- * 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.
57092
+ * 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.
56559
57093
  * @summary Bulk update an entitlement list
56560
57094
  * @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
56561
57095
  * @param {*} [axiosOptions] Override http request option.
@@ -56658,7 +57192,7 @@ export declare const EntitlementsV2024ApiFactory: (configuration?: Configuration
56658
57192
  */
56659
57193
  resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>;
56660
57194
  /**
56661
- * 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.
57195
+ * 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.
56662
57196
  * @summary Bulk update an entitlement list
56663
57197
  * @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
56664
57198
  * @param {*} [axiosOptions] Override http request option.
@@ -57080,7 +57614,7 @@ export declare class EntitlementsV2024Api extends BaseAPI {
57080
57614
  */
57081
57615
  resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoV2024, any>>;
57082
57616
  /**
57083
- * 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.
57617
+ * 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.
57084
57618
  * @summary Bulk update an entitlement list
57085
57619
  * @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
57086
57620
  * @param {*} [axiosOptions] Override http request option.
@@ -57542,7 +58076,7 @@ export declare const GovernanceGroupsV2024ApiAxiosParamCreator: (configuration?:
57542
58076
  * This API returns list of Governance Groups
57543
58077
  * @summary List governance groups
57544
58078
  * @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.
57545
- * @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.
58079
+ * @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.
57546
58080
  * @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.
57547
58081
  * @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*
57548
58082
  * @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**
@@ -57653,7 +58187,7 @@ export declare const GovernanceGroupsV2024ApiFp: (configuration?: Configuration)
57653
58187
  * This API returns list of Governance Groups
57654
58188
  * @summary List governance groups
57655
58189
  * @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.
57656
- * @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.
58190
+ * @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.
57657
58191
  * @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.
57658
58192
  * @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*
57659
58193
  * @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**
@@ -57969,7 +58503,7 @@ export interface GovernanceGroupsV2024ApiListWorkgroupsRequest {
57969
58503
  */
57970
58504
  readonly offset?: number;
57971
58505
  /**
57972
- * 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.
58506
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
57973
58507
  * @type {number}
57974
58508
  * @memberof GovernanceGroupsV2024ApiListWorkgroups
57975
58509
  */
@@ -62250,6 +62784,17 @@ export declare const IdentitiesV2024ApiAxiosParamCreator: (configuration?: Confi
62250
62784
  * @throws {RequiredError}
62251
62785
  */
62252
62786
  getRoleAssignments: (identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62787
+ /**
62788
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
62789
+ * @summary List of entitlements by identity.
62790
+ * @param {string} id Identity Id
62791
+ * @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.
62792
+ * @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.
62793
+ * @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.
62794
+ * @param {*} [axiosOptions] Override http request option.
62795
+ * @throws {RequiredError}
62796
+ */
62797
+ listEntitlementsByIdentity: (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62253
62798
  /**
62254
62799
  * This API returns a list of identities.
62255
62800
  * @summary List identities
@@ -62285,10 +62830,11 @@ export declare const IdentitiesV2024ApiAxiosParamCreator: (configuration?: Confi
62285
62830
  * This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
62286
62831
  * @summary Invite identities to register
62287
62832
  * @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
62833
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
62288
62834
  * @param {*} [axiosOptions] Override http request option.
62289
62835
  * @throws {RequiredError}
62290
62836
  */
62291
- startIdentitiesInvite: (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62837
+ startIdentitiesInvite: (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62292
62838
  /**
62293
62839
  * This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
62294
62840
  * @summary Process a list of identityids
@@ -62356,6 +62902,17 @@ export declare const IdentitiesV2024ApiFp: (configuration?: Configuration) => {
62356
62902
  * @throws {RequiredError}
62357
62903
  */
62358
62904
  getRoleAssignments(identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>>>;
62905
+ /**
62906
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
62907
+ * @summary List of entitlements by identity.
62908
+ * @param {string} id Identity Id
62909
+ * @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.
62910
+ * @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.
62911
+ * @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.
62912
+ * @param {*} [axiosOptions] Override http request option.
62913
+ * @throws {RequiredError}
62914
+ */
62915
+ listEntitlementsByIdentity(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityEntitlementsV2024>>>;
62359
62916
  /**
62360
62917
  * This API returns a list of identities.
62361
62918
  * @summary List identities
@@ -62391,10 +62948,11 @@ export declare const IdentitiesV2024ApiFp: (configuration?: Configuration) => {
62391
62948
  * This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
62392
62949
  * @summary Invite identities to register
62393
62950
  * @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
62951
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
62394
62952
  * @param {*} [axiosOptions] Override http request option.
62395
62953
  * @throws {RequiredError}
62396
62954
  */
62397
- startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
62955
+ startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
62398
62956
  /**
62399
62957
  * This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
62400
62958
  * @summary Process a list of identityids
@@ -62459,6 +63017,14 @@ export declare const IdentitiesV2024ApiFactory: (configuration?: Configuration,
62459
63017
  * @throws {RequiredError}
62460
63018
  */
62461
63019
  getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>>;
63020
+ /**
63021
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
63022
+ * @summary List of entitlements by identity.
63023
+ * @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
63024
+ * @param {*} [axiosOptions] Override http request option.
63025
+ * @throws {RequiredError}
63026
+ */
63027
+ listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityEntitlementsV2024>>;
62462
63028
  /**
62463
63029
  * This API returns a list of identities.
62464
63030
  * @summary List identities
@@ -62591,6 +63157,37 @@ export interface IdentitiesV2024ApiGetRoleAssignmentsRequest {
62591
63157
  */
62592
63158
  readonly roleName?: string;
62593
63159
  }
63160
+ /**
63161
+ * Request parameters for listEntitlementsByIdentity operation in IdentitiesV2024Api.
63162
+ * @export
63163
+ * @interface IdentitiesV2024ApiListEntitlementsByIdentityRequest
63164
+ */
63165
+ export interface IdentitiesV2024ApiListEntitlementsByIdentityRequest {
63166
+ /**
63167
+ * Identity Id
63168
+ * @type {string}
63169
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
63170
+ */
63171
+ readonly id: string;
63172
+ /**
63173
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
63174
+ * @type {number}
63175
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
63176
+ */
63177
+ readonly limit?: number;
63178
+ /**
63179
+ * 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.
63180
+ * @type {number}
63181
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
63182
+ */
63183
+ readonly offset?: number;
63184
+ /**
63185
+ * 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.
63186
+ * @type {boolean}
63187
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
63188
+ */
63189
+ readonly count?: boolean;
63190
+ }
62594
63191
  /**
62595
63192
  * Request parameters for listIdentities operation in IdentitiesV2024Api.
62596
63193
  * @export
@@ -62684,6 +63281,12 @@ export interface IdentitiesV2024ApiStartIdentitiesInviteRequest {
62684
63281
  * @memberof IdentitiesV2024ApiStartIdentitiesInvite
62685
63282
  */
62686
63283
  readonly inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024;
63284
+ /**
63285
+ * Use this header to enable this experimental API.
63286
+ * @type {string}
63287
+ * @memberof IdentitiesV2024ApiStartIdentitiesInvite
63288
+ */
63289
+ readonly xSailPointExperimental?: string;
62687
63290
  }
62688
63291
  /**
62689
63292
  * Request parameters for startIdentityProcessing operation in IdentitiesV2024Api.
@@ -62775,6 +63378,15 @@ export declare class IdentitiesV2024Api extends BaseAPI {
62775
63378
  * @memberof IdentitiesV2024Api
62776
63379
  */
62777
63380
  getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetRoleAssignments200ResponseInnerV2024[], any>>;
63381
+ /**
63382
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
63383
+ * @summary List of entitlements by identity.
63384
+ * @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
63385
+ * @param {*} [axiosOptions] Override http request option.
63386
+ * @throws {RequiredError}
63387
+ * @memberof IdentitiesV2024Api
63388
+ */
63389
+ listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementsV2024[], any>>;
62778
63390
  /**
62779
63391
  * This API returns a list of identities.
62780
63392
  * @summary List identities
@@ -64203,11 +64815,10 @@ export declare const IdentityProfilesV2024ApiAxiosParamCreator: (configuration?:
64203
64815
  * This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
64204
64816
  * @summary Generate identity profile preview
64205
64817
  * @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
64206
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
64207
64818
  * @param {*} [axiosOptions] Override http request option.
64208
64819
  * @throws {RequiredError}
64209
64820
  */
64210
- generateIdentityPreview: (identityPreviewRequestV2024: IdentityPreviewRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64821
+ generateIdentityPreview: (identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64211
64822
  /**
64212
64823
  * This returns the default identity attribute config.
64213
64824
  * @summary Get default identity attribute config
@@ -64307,11 +64918,10 @@ export declare const IdentityProfilesV2024ApiFp: (configuration?: Configuration)
64307
64918
  * This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
64308
64919
  * @summary Generate identity profile preview
64309
64920
  * @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
64310
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
64311
64921
  * @param {*} [axiosOptions] Override http request option.
64312
64922
  * @throws {RequiredError}
64313
64923
  */
64314
- generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>>;
64924
+ generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>>;
64315
64925
  /**
64316
64926
  * This returns the default identity attribute config.
64317
64927
  * @summary Get default identity attribute config
@@ -64548,12 +65158,6 @@ export interface IdentityProfilesV2024ApiGenerateIdentityPreviewRequest {
64548
65158
  * @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
64549
65159
  */
64550
65160
  readonly identityPreviewRequestV2024: IdentityPreviewRequestV2024;
64551
- /**
64552
- * Use this header to enable this experimental API.
64553
- * @type {string}
64554
- * @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
64555
- */
64556
- readonly xSailPointExperimental?: string;
64557
65161
  }
64558
65162
  /**
64559
65163
  * Request parameters for getDefaultIdentityAttributeConfig operation in IdentityProfilesV2024Api.
@@ -64770,6 +65374,332 @@ export declare class IdentityProfilesV2024Api extends BaseAPI {
64770
65374
  */
64771
65375
  updateIdentityProfile(requestParameters: IdentityProfilesV2024ApiUpdateIdentityProfileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileV2024, any>>;
64772
65376
  }
65377
+ /**
65378
+ * LaunchersV2024Api - axios parameter creator
65379
+ * @export
65380
+ */
65381
+ export declare const LaunchersV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
65382
+ /**
65383
+ * Create a Launcher with given information
65384
+ * @summary Create launcher
65385
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
65386
+ * @param {*} [axiosOptions] Override http request option.
65387
+ * @throws {RequiredError}
65388
+ */
65389
+ createLauncher: (launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65390
+ /**
65391
+ * Delete the given Launcher ID
65392
+ * @summary Delete launcher
65393
+ * @param {string} launcherID ID of the Launcher to be deleted
65394
+ * @param {*} [axiosOptions] Override http request option.
65395
+ * @throws {RequiredError}
65396
+ */
65397
+ deleteLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65398
+ /**
65399
+ * Get details for the given Launcher ID
65400
+ * @summary Get launcher by id
65401
+ * @param {string} launcherID ID of the Launcher to be retrieved
65402
+ * @param {*} [axiosOptions] Override http request option.
65403
+ * @throws {RequiredError}
65404
+ */
65405
+ getLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65406
+ /**
65407
+ * Return a list of Launchers for the authenticated tenant
65408
+ * @summary List all launchers for tenant
65409
+ * @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: **description**: *sw* **disabled**: *eq* **name**: *sw*
65410
+ * @param {string} [next] Pagination marker
65411
+ * @param {number} [limit] Number of Launchers to return
65412
+ * @param {*} [axiosOptions] Override http request option.
65413
+ * @throws {RequiredError}
65414
+ */
65415
+ getLaunchers: (filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65416
+ /**
65417
+ * Replace the given Launcher ID with given payload
65418
+ * @summary Replace launcher
65419
+ * @param {string} launcherID ID of the Launcher to be replaced
65420
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
65421
+ * @param {*} [axiosOptions] Override http request option.
65422
+ * @throws {RequiredError}
65423
+ */
65424
+ putLauncher: (launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65425
+ /**
65426
+ * Launch the given Launcher ID
65427
+ * @summary Launch a launcher
65428
+ * @param {string} launcherID ID of the Launcher to be launched
65429
+ * @param {*} [axiosOptions] Override http request option.
65430
+ * @throws {RequiredError}
65431
+ */
65432
+ startLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65433
+ };
65434
+ /**
65435
+ * LaunchersV2024Api - functional programming interface
65436
+ * @export
65437
+ */
65438
+ export declare const LaunchersV2024ApiFp: (configuration?: Configuration) => {
65439
+ /**
65440
+ * Create a Launcher with given information
65441
+ * @summary Create launcher
65442
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
65443
+ * @param {*} [axiosOptions] Override http request option.
65444
+ * @throws {RequiredError}
65445
+ */
65446
+ createLauncher(launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
65447
+ /**
65448
+ * Delete the given Launcher ID
65449
+ * @summary Delete launcher
65450
+ * @param {string} launcherID ID of the Launcher to be deleted
65451
+ * @param {*} [axiosOptions] Override http request option.
65452
+ * @throws {RequiredError}
65453
+ */
65454
+ deleteLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
65455
+ /**
65456
+ * Get details for the given Launcher ID
65457
+ * @summary Get launcher by id
65458
+ * @param {string} launcherID ID of the Launcher to be retrieved
65459
+ * @param {*} [axiosOptions] Override http request option.
65460
+ * @throws {RequiredError}
65461
+ */
65462
+ getLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
65463
+ /**
65464
+ * Return a list of Launchers for the authenticated tenant
65465
+ * @summary List all launchers for tenant
65466
+ * @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: **description**: *sw* **disabled**: *eq* **name**: *sw*
65467
+ * @param {string} [next] Pagination marker
65468
+ * @param {number} [limit] Number of Launchers to return
65469
+ * @param {*} [axiosOptions] Override http request option.
65470
+ * @throws {RequiredError}
65471
+ */
65472
+ getLaunchers(filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLaunchers200ResponseV2024>>;
65473
+ /**
65474
+ * Replace the given Launcher ID with given payload
65475
+ * @summary Replace launcher
65476
+ * @param {string} launcherID ID of the Launcher to be replaced
65477
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
65478
+ * @param {*} [axiosOptions] Override http request option.
65479
+ * @throws {RequiredError}
65480
+ */
65481
+ putLauncher(launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
65482
+ /**
65483
+ * Launch the given Launcher ID
65484
+ * @summary Launch a launcher
65485
+ * @param {string} launcherID ID of the Launcher to be launched
65486
+ * @param {*} [axiosOptions] Override http request option.
65487
+ * @throws {RequiredError}
65488
+ */
65489
+ startLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StartLauncher200ResponseV2024>>;
65490
+ };
65491
+ /**
65492
+ * LaunchersV2024Api - factory interface
65493
+ * @export
65494
+ */
65495
+ export declare const LaunchersV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
65496
+ /**
65497
+ * Create a Launcher with given information
65498
+ * @summary Create launcher
65499
+ * @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
65500
+ * @param {*} [axiosOptions] Override http request option.
65501
+ * @throws {RequiredError}
65502
+ */
65503
+ createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
65504
+ /**
65505
+ * Delete the given Launcher ID
65506
+ * @summary Delete launcher
65507
+ * @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
65508
+ * @param {*} [axiosOptions] Override http request option.
65509
+ * @throws {RequiredError}
65510
+ */
65511
+ deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
65512
+ /**
65513
+ * Get details for the given Launcher ID
65514
+ * @summary Get launcher by id
65515
+ * @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
65516
+ * @param {*} [axiosOptions] Override http request option.
65517
+ * @throws {RequiredError}
65518
+ */
65519
+ getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
65520
+ /**
65521
+ * Return a list of Launchers for the authenticated tenant
65522
+ * @summary List all launchers for tenant
65523
+ * @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
65524
+ * @param {*} [axiosOptions] Override http request option.
65525
+ * @throws {RequiredError}
65526
+ */
65527
+ getLaunchers(requestParameters?: LaunchersV2024ApiGetLaunchersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetLaunchers200ResponseV2024>;
65528
+ /**
65529
+ * Replace the given Launcher ID with given payload
65530
+ * @summary Replace launcher
65531
+ * @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
65532
+ * @param {*} [axiosOptions] Override http request option.
65533
+ * @throws {RequiredError}
65534
+ */
65535
+ putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
65536
+ /**
65537
+ * Launch the given Launcher ID
65538
+ * @summary Launch a launcher
65539
+ * @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
65540
+ * @param {*} [axiosOptions] Override http request option.
65541
+ * @throws {RequiredError}
65542
+ */
65543
+ startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<StartLauncher200ResponseV2024>;
65544
+ };
65545
+ /**
65546
+ * Request parameters for createLauncher operation in LaunchersV2024Api.
65547
+ * @export
65548
+ * @interface LaunchersV2024ApiCreateLauncherRequest
65549
+ */
65550
+ export interface LaunchersV2024ApiCreateLauncherRequest {
65551
+ /**
65552
+ * Payload to create a Launcher
65553
+ * @type {LauncherRequestV2024}
65554
+ * @memberof LaunchersV2024ApiCreateLauncher
65555
+ */
65556
+ readonly launcherRequestV2024: LauncherRequestV2024;
65557
+ }
65558
+ /**
65559
+ * Request parameters for deleteLauncher operation in LaunchersV2024Api.
65560
+ * @export
65561
+ * @interface LaunchersV2024ApiDeleteLauncherRequest
65562
+ */
65563
+ export interface LaunchersV2024ApiDeleteLauncherRequest {
65564
+ /**
65565
+ * ID of the Launcher to be deleted
65566
+ * @type {string}
65567
+ * @memberof LaunchersV2024ApiDeleteLauncher
65568
+ */
65569
+ readonly launcherID: string;
65570
+ }
65571
+ /**
65572
+ * Request parameters for getLauncher operation in LaunchersV2024Api.
65573
+ * @export
65574
+ * @interface LaunchersV2024ApiGetLauncherRequest
65575
+ */
65576
+ export interface LaunchersV2024ApiGetLauncherRequest {
65577
+ /**
65578
+ * ID of the Launcher to be retrieved
65579
+ * @type {string}
65580
+ * @memberof LaunchersV2024ApiGetLauncher
65581
+ */
65582
+ readonly launcherID: string;
65583
+ }
65584
+ /**
65585
+ * Request parameters for getLaunchers operation in LaunchersV2024Api.
65586
+ * @export
65587
+ * @interface LaunchersV2024ApiGetLaunchersRequest
65588
+ */
65589
+ export interface LaunchersV2024ApiGetLaunchersRequest {
65590
+ /**
65591
+ * 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: **description**: *sw* **disabled**: *eq* **name**: *sw*
65592
+ * @type {string}
65593
+ * @memberof LaunchersV2024ApiGetLaunchers
65594
+ */
65595
+ readonly filters?: string;
65596
+ /**
65597
+ * Pagination marker
65598
+ * @type {string}
65599
+ * @memberof LaunchersV2024ApiGetLaunchers
65600
+ */
65601
+ readonly next?: string;
65602
+ /**
65603
+ * Number of Launchers to return
65604
+ * @type {number}
65605
+ * @memberof LaunchersV2024ApiGetLaunchers
65606
+ */
65607
+ readonly limit?: number;
65608
+ }
65609
+ /**
65610
+ * Request parameters for putLauncher operation in LaunchersV2024Api.
65611
+ * @export
65612
+ * @interface LaunchersV2024ApiPutLauncherRequest
65613
+ */
65614
+ export interface LaunchersV2024ApiPutLauncherRequest {
65615
+ /**
65616
+ * ID of the Launcher to be replaced
65617
+ * @type {string}
65618
+ * @memberof LaunchersV2024ApiPutLauncher
65619
+ */
65620
+ readonly launcherID: string;
65621
+ /**
65622
+ * Payload to replace Launcher
65623
+ * @type {LauncherRequestV2024}
65624
+ * @memberof LaunchersV2024ApiPutLauncher
65625
+ */
65626
+ readonly launcherRequestV2024: LauncherRequestV2024;
65627
+ }
65628
+ /**
65629
+ * Request parameters for startLauncher operation in LaunchersV2024Api.
65630
+ * @export
65631
+ * @interface LaunchersV2024ApiStartLauncherRequest
65632
+ */
65633
+ export interface LaunchersV2024ApiStartLauncherRequest {
65634
+ /**
65635
+ * ID of the Launcher to be launched
65636
+ * @type {string}
65637
+ * @memberof LaunchersV2024ApiStartLauncher
65638
+ */
65639
+ readonly launcherID: string;
65640
+ }
65641
+ /**
65642
+ * LaunchersV2024Api - object-oriented interface
65643
+ * @export
65644
+ * @class LaunchersV2024Api
65645
+ * @extends {BaseAPI}
65646
+ */
65647
+ export declare class LaunchersV2024Api extends BaseAPI {
65648
+ /**
65649
+ * Create a Launcher with given information
65650
+ * @summary Create launcher
65651
+ * @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
65652
+ * @param {*} [axiosOptions] Override http request option.
65653
+ * @throws {RequiredError}
65654
+ * @memberof LaunchersV2024Api
65655
+ */
65656
+ createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
65657
+ /**
65658
+ * Delete the given Launcher ID
65659
+ * @summary Delete launcher
65660
+ * @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
65661
+ * @param {*} [axiosOptions] Override http request option.
65662
+ * @throws {RequiredError}
65663
+ * @memberof LaunchersV2024Api
65664
+ */
65665
+ deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
65666
+ /**
65667
+ * Get details for the given Launcher ID
65668
+ * @summary Get launcher by id
65669
+ * @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
65670
+ * @param {*} [axiosOptions] Override http request option.
65671
+ * @throws {RequiredError}
65672
+ * @memberof LaunchersV2024Api
65673
+ */
65674
+ getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
65675
+ /**
65676
+ * Return a list of Launchers for the authenticated tenant
65677
+ * @summary List all launchers for tenant
65678
+ * @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
65679
+ * @param {*} [axiosOptions] Override http request option.
65680
+ * @throws {RequiredError}
65681
+ * @memberof LaunchersV2024Api
65682
+ */
65683
+ getLaunchers(requestParameters?: LaunchersV2024ApiGetLaunchersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLaunchers200ResponseV2024, any>>;
65684
+ /**
65685
+ * Replace the given Launcher ID with given payload
65686
+ * @summary Replace launcher
65687
+ * @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
65688
+ * @param {*} [axiosOptions] Override http request option.
65689
+ * @throws {RequiredError}
65690
+ * @memberof LaunchersV2024Api
65691
+ */
65692
+ putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
65693
+ /**
65694
+ * Launch the given Launcher ID
65695
+ * @summary Launch a launcher
65696
+ * @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
65697
+ * @param {*} [axiosOptions] Override http request option.
65698
+ * @throws {RequiredError}
65699
+ * @memberof LaunchersV2024Api
65700
+ */
65701
+ startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StartLauncher200ResponseV2024, any>>;
65702
+ }
64773
65703
  /**
64774
65704
  * LifecycleStatesV2024Api - axios parameter creator
64775
65705
  * @export
@@ -64809,7 +65739,7 @@ export declare const LifecycleStatesV2024ApiAxiosParamCreator: (configuration?:
64809
65739
  * @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.
64810
65740
  * @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.
64811
65741
  * @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.
64812
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
65742
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
64813
65743
  * @param {*} [axiosOptions] Override http request option.
64814
65744
  * @throws {RequiredError}
64815
65745
  */
@@ -64873,7 +65803,7 @@ export declare const LifecycleStatesV2024ApiFp: (configuration?: Configuration)
64873
65803
  * @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.
64874
65804
  * @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.
64875
65805
  * @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.
64876
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
65806
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
64877
65807
  * @param {*} [axiosOptions] Override http request option.
64878
65808
  * @throws {RequiredError}
64879
65809
  */
@@ -65040,7 +65970,7 @@ export interface LifecycleStatesV2024ApiGetLifecycleStatesRequest {
65040
65970
  */
65041
65971
  readonly count?: boolean;
65042
65972
  /**
65043
- * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
65973
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
65044
65974
  * @type {string}
65045
65975
  * @memberof LifecycleStatesV2024ApiGetLifecycleStates
65046
65976
  */
@@ -66241,8 +67171,8 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
66241
67171
  /**
66242
67172
  * This API returns a list of machine identities.
66243
67173
  * @summary List machine identities
66244
- * @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* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
66245
- * @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: **businessApplication, name**
67174
+ * @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* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
67175
+ * @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: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
66246
67176
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
66247
67177
  * @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.
66248
67178
  * @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.
@@ -66297,8 +67227,8 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
66297
67227
  /**
66298
67228
  * This API returns a list of machine identities.
66299
67229
  * @summary List machine identities
66300
- * @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* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
66301
- * @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: **businessApplication, name**
67230
+ * @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* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
67231
+ * @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: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
66302
67232
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
66303
67233
  * @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.
66304
67234
  * @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.
@@ -66428,13 +67358,13 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
66428
67358
  */
66429
67359
  export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
66430
67360
  /**
66431
- * 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* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
67361
+ * 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* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
66432
67362
  * @type {string}
66433
67363
  * @memberof MachineIdentitiesV2024ApiListMachineIdentities
66434
67364
  */
66435
67365
  readonly filters?: string;
66436
67366
  /**
66437
- * 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: **businessApplication, name**
67367
+ * 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: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
66438
67368
  * @type {string}
66439
67369
  * @memberof MachineIdentitiesV2024ApiListMachineIdentities
66440
67370
  */
@@ -76230,11 +77160,11 @@ export declare const SODViolationsV2024ApiAxiosParamCreator: (configuration?: Co
76230
77160
  /**
76231
77161
  * This API initiates a SOD policy verification asynchronously.
76232
77162
  * @summary Check sod violations
76233
- * @param {IdentityWithNewAccess1V2024} identityWithNewAccess1V2024
77163
+ * @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
76234
77164
  * @param {*} [axiosOptions] Override http request option.
76235
77165
  * @throws {RequiredError}
76236
77166
  */
76237
- startViolationCheck: (identityWithNewAccess1V2024: IdentityWithNewAccess1V2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
77167
+ startViolationCheck: (identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76238
77168
  };
76239
77169
  /**
76240
77170
  * SODViolationsV2024Api - functional programming interface
@@ -76252,11 +77182,11 @@ export declare const SODViolationsV2024ApiFp: (configuration?: Configuration) =>
76252
77182
  /**
76253
77183
  * This API initiates a SOD policy verification asynchronously.
76254
77184
  * @summary Check sod violations
76255
- * @param {IdentityWithNewAccess1V2024} identityWithNewAccess1V2024
77185
+ * @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
76256
77186
  * @param {*} [axiosOptions] Override http request option.
76257
77187
  * @throws {RequiredError}
76258
77188
  */
76259
- startViolationCheck(identityWithNewAccess1V2024: IdentityWithNewAccess1V2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>>;
77189
+ startViolationCheck(identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>>;
76260
77190
  };
76261
77191
  /**
76262
77192
  * SODViolationsV2024Api - factory interface
@@ -76301,10 +77231,10 @@ export interface SODViolationsV2024ApiStartPredictSodViolationsRequest {
76301
77231
  export interface SODViolationsV2024ApiStartViolationCheckRequest {
76302
77232
  /**
76303
77233
  *
76304
- * @type {IdentityWithNewAccess1V2024}
77234
+ * @type {IdentityWithNewAccessV2024}
76305
77235
  * @memberof SODViolationsV2024ApiStartViolationCheck
76306
77236
  */
76307
- readonly identityWithNewAccess1V2024: IdentityWithNewAccess1V2024;
77237
+ readonly identityWithNewAccessV2024: IdentityWithNewAccessV2024;
76308
77238
  }
76309
77239
  /**
76310
77240
  * SODViolationsV2024Api - object-oriented interface
@@ -76338,7 +77268,7 @@ export declare class SODViolationsV2024Api extends BaseAPI {
76338
77268
  */
76339
77269
  export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
76340
77270
  /**
76341
- * 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).
77271
+ * 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).
76342
77272
  * @summary Initiates configuration objects export job
76343
77273
  * @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
76344
77274
  * @param {*} [axiosOptions] Override http request option.
@@ -76370,7 +77300,7 @@ export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configu
76370
77300
  */
76371
77301
  getSpConfigImport: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76372
77302
  /**
76373
- * \'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).\'
77303
+ * \'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).\'
76374
77304
  * @summary Get import job status
76375
77305
  * @param {string} id The ID of the import job whose status will be returned.
76376
77306
  * @param {*} [axiosOptions] Override http request option.
@@ -76378,7 +77308,7 @@ export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configu
76378
77308
  */
76379
77309
  getSpConfigImportStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76380
77310
  /**
76381
- * 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).
77311
+ * 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).
76382
77312
  * @summary Initiates configuration objects import job
76383
77313
  * @param {File} data JSON file containing the objects to be imported.
76384
77314
  * @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.
@@ -76401,7 +77331,7 @@ export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configu
76401
77331
  */
76402
77332
  export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
76403
77333
  /**
76404
- * 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).
77334
+ * 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).
76405
77335
  * @summary Initiates configuration objects export job
76406
77336
  * @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
76407
77337
  * @param {*} [axiosOptions] Override http request option.
@@ -76433,7 +77363,7 @@ export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
76433
77363
  */
76434
77364
  getSpConfigImport(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportResultsV2024>>;
76435
77365
  /**
76436
- * \'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).\'
77366
+ * \'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).\'
76437
77367
  * @summary Get import job status
76438
77368
  * @param {string} id The ID of the import job whose status will be returned.
76439
77369
  * @param {*} [axiosOptions] Override http request option.
@@ -76441,7 +77371,7 @@ export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
76441
77371
  */
76442
77372
  getSpConfigImportStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportJobStatusV2024>>;
76443
77373
  /**
76444
- * 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).
77374
+ * 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).
76445
77375
  * @summary Initiates configuration objects import job
76446
77376
  * @param {File} data JSON file containing the objects to be imported.
76447
77377
  * @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.
@@ -76464,7 +77394,7 @@ export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
76464
77394
  */
76465
77395
  export declare const SPConfigV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
76466
77396
  /**
76467
- * 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).
77397
+ * 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).
76468
77398
  * @summary Initiates configuration objects export job
76469
77399
  * @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
76470
77400
  * @param {*} [axiosOptions] Override http request option.
@@ -76496,7 +77426,7 @@ export declare const SPConfigV2024ApiFactory: (configuration?: Configuration, ba
76496
77426
  */
76497
77427
  getSpConfigImport(requestParameters: SPConfigV2024ApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportResultsV2024>;
76498
77428
  /**
76499
- * \'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).\'
77429
+ * \'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).\'
76500
77430
  * @summary Get import job status
76501
77431
  * @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
76502
77432
  * @param {*} [axiosOptions] Override http request option.
@@ -76504,7 +77434,7 @@ export declare const SPConfigV2024ApiFactory: (configuration?: Configuration, ba
76504
77434
  */
76505
77435
  getSpConfigImportStatus(requestParameters: SPConfigV2024ApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportJobStatusV2024>;
76506
77436
  /**
76507
- * 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).
77437
+ * 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).
76508
77438
  * @summary Initiates configuration objects import job
76509
77439
  * @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
76510
77440
  * @param {*} [axiosOptions] Override http request option.
@@ -76617,7 +77547,7 @@ export interface SPConfigV2024ApiImportSpConfigRequest {
76617
77547
  */
76618
77548
  export declare class SPConfigV2024Api extends BaseAPI {
76619
77549
  /**
76620
- * 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).
77550
+ * 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).
76621
77551
  * @summary Initiates configuration objects export job
76622
77552
  * @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
76623
77553
  * @param {*} [axiosOptions] Override http request option.
@@ -76653,7 +77583,7 @@ export declare class SPConfigV2024Api extends BaseAPI {
76653
77583
  */
76654
77584
  getSpConfigImport(requestParameters: SPConfigV2024ApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportResultsV2024, any>>;
76655
77585
  /**
76656
- * \'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).\'
77586
+ * \'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).\'
76657
77587
  * @summary Get import job status
76658
77588
  * @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
76659
77589
  * @param {*} [axiosOptions] Override http request option.
@@ -76662,7 +77592,7 @@ export declare class SPConfigV2024Api extends BaseAPI {
76662
77592
  */
76663
77593
  getSpConfigImportStatus(requestParameters: SPConfigV2024ApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportJobStatusV2024, any>>;
76664
77594
  /**
76665
- * 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).
77595
+ * 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).
76666
77596
  * @summary Initiates configuration objects import job
76667
77597
  * @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
76668
77598
  * @param {*} [axiosOptions] Override http request option.
@@ -78889,7 +79819,7 @@ export declare class SourceUsagesV2024Api extends BaseAPI {
78889
79819
  */
78890
79820
  export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
78891
79821
  /**
78892
- * 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.
79822
+ * 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.
78893
79823
  * @summary Create provisioning policy
78894
79824
  * @param {string} sourceId The Source id
78895
79825
  * @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
@@ -79208,7 +80138,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
79208
80138
  */
79209
80139
  putNativeChangeDetectionConfig: (id: string, nativeChangeDetectionConfigV2024: NativeChangeDetectionConfigV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79210
80140
  /**
79211
- * 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.
80141
+ * 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.
79212
80142
  * @summary Update provisioning policy by usagetype
79213
80143
  * @param {string} sourceId The Source ID.
79214
80144
  * @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.
@@ -79299,7 +80229,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
79299
80229
  */
79300
80230
  updateProvisioningPoliciesInBulk: (sourceId: string, provisioningPolicyDtoV2024: Array<ProvisioningPolicyDtoV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79301
80231
  /**
79302
- * 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.
80232
+ * 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.
79303
80233
  * @summary Partial update of provisioning policy
79304
80234
  * @param {string} sourceId The Source id.
79305
80235
  * @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.
@@ -79353,7 +80283,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
79353
80283
  */
79354
80284
  export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
79355
80285
  /**
79356
- * 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.
80286
+ * 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.
79357
80287
  * @summary Create provisioning policy
79358
80288
  * @param {string} sourceId The Source id
79359
80289
  * @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
@@ -79672,7 +80602,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
79672
80602
  */
79673
80603
  putNativeChangeDetectionConfig(id: string, nativeChangeDetectionConfigV2024: NativeChangeDetectionConfigV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigV2024>>;
79674
80604
  /**
79675
- * 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.
80605
+ * 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.
79676
80606
  * @summary Update provisioning policy by usagetype
79677
80607
  * @param {string} sourceId The Source ID.
79678
80608
  * @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.
@@ -79763,7 +80693,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
79763
80693
  */
79764
80694
  updateProvisioningPoliciesInBulk(sourceId: string, provisioningPolicyDtoV2024: Array<ProvisioningPolicyDtoV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoV2024>>>;
79765
80695
  /**
79766
- * 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.
80696
+ * 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.
79767
80697
  * @summary Partial update of provisioning policy
79768
80698
  * @param {string} sourceId The Source id.
79769
80699
  * @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.
@@ -79817,7 +80747,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
79817
80747
  */
79818
80748
  export declare const SourcesV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
79819
80749
  /**
79820
- * 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.
80750
+ * 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.
79821
80751
  * @summary Create provisioning policy
79822
80752
  * @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
79823
80753
  * @param {*} [axiosOptions] Override http request option.
@@ -80105,7 +81035,7 @@ export declare const SourcesV2024ApiFactory: (configuration?: Configuration, bas
80105
81035
  */
80106
81036
  putNativeChangeDetectionConfig(requestParameters: SourcesV2024ApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NativeChangeDetectionConfigV2024>;
80107
81037
  /**
80108
- * 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.
81038
+ * 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.
80109
81039
  * @summary Update provisioning policy by usagetype
80110
81040
  * @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
80111
81041
  * @param {*} [axiosOptions] Override http request option.
@@ -80185,7 +81115,7 @@ export declare const SourcesV2024ApiFactory: (configuration?: Configuration, bas
80185
81115
  */
80186
81116
  updateProvisioningPoliciesInBulk(requestParameters: SourcesV2024ApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDtoV2024>>;
80187
81117
  /**
80188
- * 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.
81118
+ * 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.
80189
81119
  * @summary Partial update of provisioning policy
80190
81120
  * @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
80191
81121
  * @param {*} [axiosOptions] Override http request option.
@@ -81196,7 +82126,7 @@ export interface SourcesV2024ApiUpdateSourceSchemaRequest {
81196
82126
  */
81197
82127
  export declare class SourcesV2024Api extends BaseAPI {
81198
82128
  /**
81199
- * 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.
82129
+ * 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.
81200
82130
  * @summary Create provisioning policy
81201
82131
  * @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
81202
82132
  * @param {*} [axiosOptions] Override http request option.
@@ -81520,7 +82450,7 @@ export declare class SourcesV2024Api extends BaseAPI {
81520
82450
  */
81521
82451
  putNativeChangeDetectionConfig(requestParameters: SourcesV2024ApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NativeChangeDetectionConfigV2024, any>>;
81522
82452
  /**
81523
- * 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.
82453
+ * 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.
81524
82454
  * @summary Update provisioning policy by usagetype
81525
82455
  * @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
81526
82456
  * @param {*} [axiosOptions] Override http request option.
@@ -81610,7 +82540,7 @@ export declare class SourcesV2024Api extends BaseAPI {
81610
82540
  */
81611
82541
  updateProvisioningPoliciesInBulk(requestParameters: SourcesV2024ApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningPolicyDtoV2024[], any>>;
81612
82542
  /**
81613
- * 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.
82543
+ * 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.
81614
82544
  * @summary Partial update of provisioning policy
81615
82545
  * @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
81616
82546
  * @param {*} [axiosOptions] Override http request option.
@@ -82188,7 +83118,7 @@ export declare const TaggedObjectsV2024ApiAxiosParamCreator: (configuration?: Co
82188
83118
  */
82189
83119
  getTaggedObject: (type: GetTaggedObjectTypeV2024, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
82190
83120
  /**
82191
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
83121
+ * This API returns a list of all tagged objects.
82192
83122
  * @summary List tagged objects
82193
83123
  * @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.
82194
83124
  * @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.
@@ -82199,7 +83129,7 @@ export declare const TaggedObjectsV2024ApiAxiosParamCreator: (configuration?: Co
82199
83129
  */
82200
83130
  listTaggedObjects: (limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
82201
83131
  /**
82202
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
83132
+ * This API returns a list of all tagged objects by type.
82203
83133
  * @summary List tagged objects by type
82204
83134
  * @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
82205
83135
  * @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.
@@ -82221,7 +83151,7 @@ export declare const TaggedObjectsV2024ApiAxiosParamCreator: (configuration?: Co
82221
83151
  */
82222
83152
  putTaggedObject: (type: PutTaggedObjectTypeV2024, id: string, taggedObjectV2024: TaggedObjectV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
82223
83153
  /**
82224
- * This adds a tag to an object. Any authenticated token may be used to call this API.
83154
+ * This adds a tag to an object.
82225
83155
  * @summary Add tag to object
82226
83156
  * @param {TaggedObjectV2024} taggedObjectV2024
82227
83157
  * @param {*} [axiosOptions] Override http request option.
@@ -82269,7 +83199,7 @@ export declare const TaggedObjectsV2024ApiFp: (configuration?: Configuration) =>
82269
83199
  */
82270
83200
  getTaggedObject(type: GetTaggedObjectTypeV2024, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectV2024>>;
82271
83201
  /**
82272
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
83202
+ * This API returns a list of all tagged objects.
82273
83203
  * @summary List tagged objects
82274
83204
  * @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.
82275
83205
  * @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.
@@ -82280,7 +83210,7 @@ export declare const TaggedObjectsV2024ApiFp: (configuration?: Configuration) =>
82280
83210
  */
82281
83211
  listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObjectV2024>>>;
82282
83212
  /**
82283
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
83213
+ * This API returns a list of all tagged objects by type.
82284
83214
  * @summary List tagged objects by type
82285
83215
  * @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
82286
83216
  * @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.
@@ -82302,7 +83232,7 @@ export declare const TaggedObjectsV2024ApiFp: (configuration?: Configuration) =>
82302
83232
  */
82303
83233
  putTaggedObject(type: PutTaggedObjectTypeV2024, id: string, taggedObjectV2024: TaggedObjectV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectV2024>>;
82304
83234
  /**
82305
- * This adds a tag to an object. Any authenticated token may be used to call this API.
83235
+ * This adds a tag to an object.
82306
83236
  * @summary Add tag to object
82307
83237
  * @param {TaggedObjectV2024} taggedObjectV2024
82308
83238
  * @param {*} [axiosOptions] Override http request option.
@@ -82348,7 +83278,7 @@ export declare const TaggedObjectsV2024ApiFactory: (configuration?: Configuratio
82348
83278
  */
82349
83279
  getTaggedObject(requestParameters: TaggedObjectsV2024ApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectV2024>;
82350
83280
  /**
82351
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
83281
+ * This API returns a list of all tagged objects.
82352
83282
  * @summary List tagged objects
82353
83283
  * @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
82354
83284
  * @param {*} [axiosOptions] Override http request option.
@@ -82356,7 +83286,7 @@ export declare const TaggedObjectsV2024ApiFactory: (configuration?: Configuratio
82356
83286
  */
82357
83287
  listTaggedObjects(requestParameters?: TaggedObjectsV2024ApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaggedObjectV2024>>;
82358
83288
  /**
82359
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
83289
+ * This API returns a list of all tagged objects by type.
82360
83290
  * @summary List tagged objects by type
82361
83291
  * @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
82362
83292
  * @param {*} [axiosOptions] Override http request option.
@@ -82372,7 +83302,7 @@ export declare const TaggedObjectsV2024ApiFactory: (configuration?: Configuratio
82372
83302
  */
82373
83303
  putTaggedObject(requestParameters: TaggedObjectsV2024ApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectV2024>;
82374
83304
  /**
82375
- * This adds a tag to an object. Any authenticated token may be used to call this API.
83305
+ * This adds a tag to an object.
82376
83306
  * @summary Add tag to object
82377
83307
  * @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
82378
83308
  * @param {*} [axiosOptions] Override http request option.
@@ -82593,7 +83523,7 @@ export declare class TaggedObjectsV2024Api extends BaseAPI {
82593
83523
  */
82594
83524
  getTaggedObject(requestParameters: TaggedObjectsV2024ApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectV2024, any>>;
82595
83525
  /**
82596
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
83526
+ * This API returns a list of all tagged objects.
82597
83527
  * @summary List tagged objects
82598
83528
  * @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
82599
83529
  * @param {*} [axiosOptions] Override http request option.
@@ -82602,7 +83532,7 @@ export declare class TaggedObjectsV2024Api extends BaseAPI {
82602
83532
  */
82603
83533
  listTaggedObjects(requestParameters?: TaggedObjectsV2024ApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectV2024[], any>>;
82604
83534
  /**
82605
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
83535
+ * This API returns a list of all tagged objects by type.
82606
83536
  * @summary List tagged objects by type
82607
83537
  * @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
82608
83538
  * @param {*} [axiosOptions] Override http request option.
@@ -82620,7 +83550,7 @@ export declare class TaggedObjectsV2024Api extends BaseAPI {
82620
83550
  */
82621
83551
  putTaggedObject(requestParameters: TaggedObjectsV2024ApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectV2024, any>>;
82622
83552
  /**
82623
- * This adds a tag to an object. Any authenticated token may be used to call this API.
83553
+ * This adds a tag to an object.
82624
83554
  * @summary Add tag to object
82625
83555
  * @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
82626
83556
  * @param {*} [axiosOptions] Override http request option.
@@ -82694,6 +83624,248 @@ export declare const PutTaggedObjectTypeV2024: {
82694
83624
  readonly Source: "SOURCE";
82695
83625
  };
82696
83626
  export type PutTaggedObjectTypeV2024 = typeof PutTaggedObjectTypeV2024[keyof typeof PutTaggedObjectTypeV2024];
83627
+ /**
83628
+ * TagsV2024Api - axios parameter creator
83629
+ * @export
83630
+ */
83631
+ export declare const TagsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
83632
+ /**
83633
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83634
+ * @summary Create tag
83635
+ * @param {TagV2024} tagV2024
83636
+ * @param {*} [axiosOptions] Override http request option.
83637
+ * @throws {RequiredError}
83638
+ */
83639
+ createTag: (tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83640
+ /**
83641
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83642
+ * @summary Delete tag
83643
+ * @param {string} id The ID of the object reference to delete.
83644
+ * @param {*} [axiosOptions] Override http request option.
83645
+ * @throws {RequiredError}
83646
+ */
83647
+ deleteTagById: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83648
+ /**
83649
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83650
+ * @summary Get tag by id
83651
+ * @param {string} id The ID of the object reference to retrieve.
83652
+ * @param {*} [axiosOptions] Override http request option.
83653
+ * @throws {RequiredError}
83654
+ */
83655
+ getTagById: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83656
+ /**
83657
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83658
+ * @summary List tags
83659
+ * @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.
83660
+ * @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.
83661
+ * @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.
83662
+ * @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* **name**: *eq, in, sw*
83663
+ * @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: **id, name, created, modified**
83664
+ * @param {*} [axiosOptions] Override http request option.
83665
+ * @throws {RequiredError}
83666
+ */
83667
+ listTags: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83668
+ };
83669
+ /**
83670
+ * TagsV2024Api - functional programming interface
83671
+ * @export
83672
+ */
83673
+ export declare const TagsV2024ApiFp: (configuration?: Configuration) => {
83674
+ /**
83675
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83676
+ * @summary Create tag
83677
+ * @param {TagV2024} tagV2024
83678
+ * @param {*} [axiosOptions] Override http request option.
83679
+ * @throws {RequiredError}
83680
+ */
83681
+ createTag(tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>>;
83682
+ /**
83683
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83684
+ * @summary Delete tag
83685
+ * @param {string} id The ID of the object reference to delete.
83686
+ * @param {*} [axiosOptions] Override http request option.
83687
+ * @throws {RequiredError}
83688
+ */
83689
+ deleteTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
83690
+ /**
83691
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83692
+ * @summary Get tag by id
83693
+ * @param {string} id The ID of the object reference to retrieve.
83694
+ * @param {*} [axiosOptions] Override http request option.
83695
+ * @throws {RequiredError}
83696
+ */
83697
+ getTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>>;
83698
+ /**
83699
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83700
+ * @summary List tags
83701
+ * @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.
83702
+ * @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.
83703
+ * @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.
83704
+ * @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* **name**: *eq, in, sw*
83705
+ * @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: **id, name, created, modified**
83706
+ * @param {*} [axiosOptions] Override http request option.
83707
+ * @throws {RequiredError}
83708
+ */
83709
+ listTags(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TagV2024>>>;
83710
+ };
83711
+ /**
83712
+ * TagsV2024Api - factory interface
83713
+ * @export
83714
+ */
83715
+ export declare const TagsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
83716
+ /**
83717
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83718
+ * @summary Create tag
83719
+ * @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
83720
+ * @param {*} [axiosOptions] Override http request option.
83721
+ * @throws {RequiredError}
83722
+ */
83723
+ createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024>;
83724
+ /**
83725
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83726
+ * @summary Delete tag
83727
+ * @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
83728
+ * @param {*} [axiosOptions] Override http request option.
83729
+ * @throws {RequiredError}
83730
+ */
83731
+ deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
83732
+ /**
83733
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83734
+ * @summary Get tag by id
83735
+ * @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
83736
+ * @param {*} [axiosOptions] Override http request option.
83737
+ * @throws {RequiredError}
83738
+ */
83739
+ getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024>;
83740
+ /**
83741
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83742
+ * @summary List tags
83743
+ * @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
83744
+ * @param {*} [axiosOptions] Override http request option.
83745
+ * @throws {RequiredError}
83746
+ */
83747
+ listTags(requestParameters?: TagsV2024ApiListTagsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TagV2024>>;
83748
+ };
83749
+ /**
83750
+ * Request parameters for createTag operation in TagsV2024Api.
83751
+ * @export
83752
+ * @interface TagsV2024ApiCreateTagRequest
83753
+ */
83754
+ export interface TagsV2024ApiCreateTagRequest {
83755
+ /**
83756
+ *
83757
+ * @type {TagV2024}
83758
+ * @memberof TagsV2024ApiCreateTag
83759
+ */
83760
+ readonly tagV2024: TagV2024;
83761
+ }
83762
+ /**
83763
+ * Request parameters for deleteTagById operation in TagsV2024Api.
83764
+ * @export
83765
+ * @interface TagsV2024ApiDeleteTagByIdRequest
83766
+ */
83767
+ export interface TagsV2024ApiDeleteTagByIdRequest {
83768
+ /**
83769
+ * The ID of the object reference to delete.
83770
+ * @type {string}
83771
+ * @memberof TagsV2024ApiDeleteTagById
83772
+ */
83773
+ readonly id: string;
83774
+ }
83775
+ /**
83776
+ * Request parameters for getTagById operation in TagsV2024Api.
83777
+ * @export
83778
+ * @interface TagsV2024ApiGetTagByIdRequest
83779
+ */
83780
+ export interface TagsV2024ApiGetTagByIdRequest {
83781
+ /**
83782
+ * The ID of the object reference to retrieve.
83783
+ * @type {string}
83784
+ * @memberof TagsV2024ApiGetTagById
83785
+ */
83786
+ readonly id: string;
83787
+ }
83788
+ /**
83789
+ * Request parameters for listTags operation in TagsV2024Api.
83790
+ * @export
83791
+ * @interface TagsV2024ApiListTagsRequest
83792
+ */
83793
+ export interface TagsV2024ApiListTagsRequest {
83794
+ /**
83795
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
83796
+ * @type {number}
83797
+ * @memberof TagsV2024ApiListTags
83798
+ */
83799
+ readonly limit?: number;
83800
+ /**
83801
+ * 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.
83802
+ * @type {number}
83803
+ * @memberof TagsV2024ApiListTags
83804
+ */
83805
+ readonly offset?: number;
83806
+ /**
83807
+ * 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.
83808
+ * @type {boolean}
83809
+ * @memberof TagsV2024ApiListTags
83810
+ */
83811
+ readonly count?: boolean;
83812
+ /**
83813
+ * 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* **name**: *eq, in, sw*
83814
+ * @type {string}
83815
+ * @memberof TagsV2024ApiListTags
83816
+ */
83817
+ readonly filters?: string;
83818
+ /**
83819
+ * 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: **id, name, created, modified**
83820
+ * @type {string}
83821
+ * @memberof TagsV2024ApiListTags
83822
+ */
83823
+ readonly sorters?: string;
83824
+ }
83825
+ /**
83826
+ * TagsV2024Api - object-oriented interface
83827
+ * @export
83828
+ * @class TagsV2024Api
83829
+ * @extends {BaseAPI}
83830
+ */
83831
+ export declare class TagsV2024Api extends BaseAPI {
83832
+ /**
83833
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83834
+ * @summary Create tag
83835
+ * @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
83836
+ * @param {*} [axiosOptions] Override http request option.
83837
+ * @throws {RequiredError}
83838
+ * @memberof TagsV2024Api
83839
+ */
83840
+ createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024, any>>;
83841
+ /**
83842
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83843
+ * @summary Delete tag
83844
+ * @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
83845
+ * @param {*} [axiosOptions] Override http request option.
83846
+ * @throws {RequiredError}
83847
+ * @memberof TagsV2024Api
83848
+ */
83849
+ deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
83850
+ /**
83851
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83852
+ * @summary Get tag by id
83853
+ * @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
83854
+ * @param {*} [axiosOptions] Override http request option.
83855
+ * @throws {RequiredError}
83856
+ * @memberof TagsV2024Api
83857
+ */
83858
+ getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024, any>>;
83859
+ /**
83860
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
83861
+ * @summary List tags
83862
+ * @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
83863
+ * @param {*} [axiosOptions] Override http request option.
83864
+ * @throws {RequiredError}
83865
+ * @memberof TagsV2024Api
83866
+ */
83867
+ listTags(requestParameters?: TagsV2024ApiListTagsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024[], any>>;
83868
+ }
82697
83869
  /**
82698
83870
  * TaskManagementV2024Api - axios parameter creator
82699
83871
  * @export
@@ -84311,153 +85483,6 @@ export declare class UIMetadataV2024Api extends BaseAPI {
84311
85483
  */
84312
85484
  setTenantUiMetadata(requestParameters: UIMetadataV2024ApiSetTenantUiMetadataRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TenantUiMetadataItemResponseV2024, any>>;
84313
85485
  }
84314
- /**
84315
- * VendorConnectorMappingsV2024Api - axios parameter creator
84316
- * @export
84317
- */
84318
- export declare const VendorConnectorMappingsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
84319
- /**
84320
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
84321
- * @summary Create vendor connector mapping
84322
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
84323
- * @param {*} [axiosOptions] Override http request option.
84324
- * @throws {RequiredError}
84325
- */
84326
- createVendorConnectorMapping: (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84327
- /**
84328
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
84329
- * @summary Delete vendor connector mapping
84330
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
84331
- * @param {*} [axiosOptions] Override http request option.
84332
- * @throws {RequiredError}
84333
- */
84334
- deleteVendorConnectorMapping: (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84335
- /**
84336
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
84337
- * @summary List vendor connector mappings
84338
- * @param {*} [axiosOptions] Override http request option.
84339
- * @throws {RequiredError}
84340
- */
84341
- getVendorConnectorMappings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84342
- };
84343
- /**
84344
- * VendorConnectorMappingsV2024Api - functional programming interface
84345
- * @export
84346
- */
84347
- export declare const VendorConnectorMappingsV2024ApiFp: (configuration?: Configuration) => {
84348
- /**
84349
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
84350
- * @summary Create vendor connector mapping
84351
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
84352
- * @param {*} [axiosOptions] Override http request option.
84353
- * @throws {RequiredError}
84354
- */
84355
- createVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingV2024>>;
84356
- /**
84357
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
84358
- * @summary Delete vendor connector mapping
84359
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
84360
- * @param {*} [axiosOptions] Override http request option.
84361
- * @throws {RequiredError}
84362
- */
84363
- deleteVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024>>;
84364
- /**
84365
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
84366
- * @summary List vendor connector mappings
84367
- * @param {*} [axiosOptions] Override http request option.
84368
- * @throws {RequiredError}
84369
- */
84370
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingV2024>>>;
84371
- };
84372
- /**
84373
- * VendorConnectorMappingsV2024Api - factory interface
84374
- * @export
84375
- */
84376
- export declare const VendorConnectorMappingsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
84377
- /**
84378
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
84379
- * @summary Create vendor connector mapping
84380
- * @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
84381
- * @param {*} [axiosOptions] Override http request option.
84382
- * @throws {RequiredError}
84383
- */
84384
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingV2024>;
84385
- /**
84386
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
84387
- * @summary Delete vendor connector mapping
84388
- * @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
84389
- * @param {*} [axiosOptions] Override http request option.
84390
- * @throws {RequiredError}
84391
- */
84392
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024>;
84393
- /**
84394
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
84395
- * @summary List vendor connector mappings
84396
- * @param {*} [axiosOptions] Override http request option.
84397
- * @throws {RequiredError}
84398
- */
84399
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingV2024>>;
84400
- };
84401
- /**
84402
- * Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
84403
- * @export
84404
- * @interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest
84405
- */
84406
- export interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest {
84407
- /**
84408
- *
84409
- * @type {VendorConnectorMappingV2024}
84410
- * @memberof VendorConnectorMappingsV2024ApiCreateVendorConnectorMapping
84411
- */
84412
- readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024;
84413
- }
84414
- /**
84415
- * Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
84416
- * @export
84417
- * @interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest
84418
- */
84419
- export interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest {
84420
- /**
84421
- *
84422
- * @type {VendorConnectorMappingV2024}
84423
- * @memberof VendorConnectorMappingsV2024ApiDeleteVendorConnectorMapping
84424
- */
84425
- readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024;
84426
- }
84427
- /**
84428
- * VendorConnectorMappingsV2024Api - object-oriented interface
84429
- * @export
84430
- * @class VendorConnectorMappingsV2024Api
84431
- * @extends {BaseAPI}
84432
- */
84433
- export declare class VendorConnectorMappingsV2024Api extends BaseAPI {
84434
- /**
84435
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
84436
- * @summary Create vendor connector mapping
84437
- * @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
84438
- * @param {*} [axiosOptions] Override http request option.
84439
- * @throws {RequiredError}
84440
- * @memberof VendorConnectorMappingsV2024Api
84441
- */
84442
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingV2024, any>>;
84443
- /**
84444
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
84445
- * @summary Delete vendor connector mapping
84446
- * @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
84447
- * @param {*} [axiosOptions] Override http request option.
84448
- * @throws {RequiredError}
84449
- * @memberof VendorConnectorMappingsV2024Api
84450
- */
84451
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteVendorConnectorMapping200ResponseV2024, any>>;
84452
- /**
84453
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
84454
- * @summary List vendor connector mappings
84455
- * @param {*} [axiosOptions] Override http request option.
84456
- * @throws {RequiredError}
84457
- * @memberof VendorConnectorMappingsV2024Api
84458
- */
84459
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingV2024[], any>>;
84460
- }
84461
85486
  /**
84462
85487
  * WorkItemsV2024Api - axios parameter creator
84463
85488
  * @export
@@ -85864,7 +86889,7 @@ export declare const WorkflowsV2024ApiAxiosParamCreator: (configuration?: Config
85864
86889
  */
85865
86890
  testExternalExecuteWorkflow: (id: string, testExternalExecuteWorkflowRequestV2024?: TestExternalExecuteWorkflowRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
85866
86891
  /**
85867
- * :::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.**
86892
+ * :::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.**
85868
86893
  * @summary Test workflow by id
85869
86894
  * @param {string} id Id of the workflow
85870
86895
  * @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
@@ -86025,7 +87050,7 @@ export declare const WorkflowsV2024ApiFp: (configuration?: Configuration) => {
86025
87050
  */
86026
87051
  testExternalExecuteWorkflow(id: string, testExternalExecuteWorkflowRequestV2024?: TestExternalExecuteWorkflowRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestExternalExecuteWorkflow200ResponseV2024>>;
86027
87052
  /**
86028
- * :::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.**
87053
+ * :::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.**
86029
87054
  * @summary Test workflow by id
86030
87055
  * @param {string} id Id of the workflow
86031
87056
  * @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
@@ -86174,7 +87199,7 @@ export declare const WorkflowsV2024ApiFactory: (configuration?: Configuration, b
86174
87199
  */
86175
87200
  testExternalExecuteWorkflow(requestParameters: WorkflowsV2024ApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestExternalExecuteWorkflow200ResponseV2024>;
86176
87201
  /**
86177
- * :::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.**
87202
+ * :::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.**
86178
87203
  * @summary Test workflow by id
86179
87204
  * @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
86180
87205
  * @param {*} [axiosOptions] Override http request option.
@@ -86627,7 +87652,7 @@ export declare class WorkflowsV2024Api extends BaseAPI {
86627
87652
  */
86628
87653
  testExternalExecuteWorkflow(requestParameters: WorkflowsV2024ApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestExternalExecuteWorkflow200ResponseV2024, any>>;
86629
87654
  /**
86630
- * :::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.**
87655
+ * :::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.**
86631
87656
  * @summary Test workflow by id
86632
87657
  * @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
86633
87658
  * @param {*} [axiosOptions] Override http request option.