sailpoint-api-client 1.6.9 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +264 -550
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +248 -392
- package/dist/beta/api.js +104 -416
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.spec.js +18 -0
- package/dist/index.spec.js.map +1 -1
- package/dist/v2024/api.d.ts +123 -361
- package/dist/v2024/api.js +93 -410
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +1643 -412
- package/dist/v2025/api.js +2844 -1167
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/api.d.ts +810 -0
- package/dist/v2026/api.js +792 -0
- package/dist/v2026/api.js.map +1 -0
- package/dist/v2026/base.d.ts +66 -0
- package/dist/v2026/base.js +89 -0
- package/dist/v2026/base.js.map +1 -0
- package/dist/v2026/common.d.ts +65 -0
- package/dist/v2026/common.js +266 -0
- package/dist/v2026/common.js.map +1 -0
- package/dist/v2026/configuration.d.ts +91 -0
- package/dist/v2026/configuration.js +46 -0
- package/dist/v2026/configuration.js.map +1 -0
- package/dist/v2026/index.d.ts +13 -0
- package/dist/v2026/index.js +32 -0
- package/dist/v2026/index.js.map +1 -0
- package/dist/v3/api.d.ts +85 -365
- package/dist/v3/api.js +67 -383
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +11 -1
- package/index.ts +3 -0
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +134 -517
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +2816 -770
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/.openapi-generator/FILES +12 -0
- package/v2026/.openapi-generator/VERSION +1 -0
- package/v2026/.openapi-generator-ignore +23 -0
- package/v2026/README.md +46 -0
- package/v2026/api.ts +1180 -0
- package/v2026/base.ts +86 -0
- package/v2026/common.ts +165 -0
- package/v2026/configuration.ts +110 -0
- package/v2026/git_push.sh +57 -0
- package/v2026/index.ts +18 -0
- package/v2026/package.json +34 -0
- package/v2026/tsconfig.json +21 -0
- package/v3/README.md +2 -2
- package/v3/api.ts +93 -518
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -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
|
-
*
|
|
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
|
|
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
|
|
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
|
/**
|
|
@@ -16163,11 +16166,11 @@ export interface FieldDetailsDtoV2024 {
|
|
|
16163
16166
|
*/
|
|
16164
16167
|
'isRequired'?: boolean;
|
|
16165
16168
|
/**
|
|
16166
|
-
* 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.
|
|
16167
16170
|
* @type {string}
|
|
16168
16171
|
* @memberof FieldDetailsDtoV2024
|
|
16169
16172
|
*/
|
|
16170
|
-
'type'?:
|
|
16173
|
+
'type'?: FieldDetailsDtoV2024TypeV2024;
|
|
16171
16174
|
/**
|
|
16172
16175
|
* Flag indicating whether or not the attribute is multi-valued.
|
|
16173
16176
|
* @type {boolean}
|
|
@@ -16175,6 +16178,15 @@ export interface FieldDetailsDtoV2024 {
|
|
|
16175
16178
|
*/
|
|
16176
16179
|
'isMultiValued'?: boolean;
|
|
16177
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];
|
|
16178
16190
|
/**
|
|
16179
16191
|
* An additional filter to constrain the results of the search query.
|
|
16180
16192
|
* @export
|
|
@@ -17870,6 +17882,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
|
|
|
17870
17882
|
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
17871
17883
|
*/
|
|
17872
17884
|
'role'?: BaseReferenceDtoV2024;
|
|
17885
|
+
/**
|
|
17886
|
+
* Date that the assignment was added
|
|
17887
|
+
* @type {string}
|
|
17888
|
+
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
17889
|
+
*/
|
|
17890
|
+
'addedDate'?: string;
|
|
17873
17891
|
/**
|
|
17874
17892
|
* Comments added by the user when the assignment was made
|
|
17875
17893
|
* @type {string}
|
|
@@ -24660,6 +24678,7 @@ export declare const MultiHostIntegrationsV2024FeaturesV2024: {
|
|
|
24660
24678
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
24661
24679
|
readonly UsesUuid: "USES_UUID";
|
|
24662
24680
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
24681
|
+
readonly Delete: "DELETE";
|
|
24663
24682
|
};
|
|
24664
24683
|
export type MultiHostIntegrationsV2024FeaturesV2024 = typeof MultiHostIntegrationsV2024FeaturesV2024[keyof typeof MultiHostIntegrationsV2024FeaturesV2024];
|
|
24665
24684
|
export declare const MultiHostIntegrationsV2024StatusV2024: {
|
|
@@ -24909,6 +24928,7 @@ export declare const MultiHostSourcesV2024FeaturesV2024: {
|
|
|
24909
24928
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
24910
24929
|
readonly UsesUuid: "USES_UUID";
|
|
24911
24930
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
24931
|
+
readonly Delete: "DELETE";
|
|
24912
24932
|
};
|
|
24913
24933
|
export type MultiHostSourcesV2024FeaturesV2024 = typeof MultiHostSourcesV2024FeaturesV2024[keyof typeof MultiHostSourcesV2024FeaturesV2024];
|
|
24914
24934
|
export declare const MultiHostSourcesV2024StatusV2024: {
|
|
@@ -28024,6 +28044,12 @@ export interface PendingApprovalV2024 {
|
|
|
28024
28044
|
* @memberof PendingApprovalV2024
|
|
28025
28045
|
*/
|
|
28026
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;
|
|
28027
28053
|
}
|
|
28028
28054
|
/**
|
|
28029
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.
|
|
@@ -30692,6 +30718,12 @@ export interface RequestedItemStatusV2024 {
|
|
|
30692
30718
|
* @memberof RequestedItemStatusV2024
|
|
30693
30719
|
*/
|
|
30694
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;
|
|
30695
30727
|
}
|
|
30696
30728
|
export declare const RequestedItemStatusV2024TypeV2024: {
|
|
30697
30729
|
readonly AccessProfile: "ACCESS_PROFILE";
|
|
@@ -31530,6 +31562,12 @@ export interface RoleAssignmentDtoV2024 {
|
|
|
31530
31562
|
* @memberof RoleAssignmentDtoV2024
|
|
31531
31563
|
*/
|
|
31532
31564
|
'removeDate'?: string | null;
|
|
31565
|
+
/**
|
|
31566
|
+
* Date that the assignment was added
|
|
31567
|
+
* @type {string}
|
|
31568
|
+
* @memberof RoleAssignmentDtoV2024
|
|
31569
|
+
*/
|
|
31570
|
+
'addedDate'?: string;
|
|
31533
31571
|
}
|
|
31534
31572
|
/**
|
|
31535
31573
|
*
|
|
@@ -31549,6 +31587,12 @@ export interface RoleAssignmentRefV2024 {
|
|
|
31549
31587
|
* @memberof RoleAssignmentRefV2024
|
|
31550
31588
|
*/
|
|
31551
31589
|
'role'?: BaseReferenceDtoV2024;
|
|
31590
|
+
/**
|
|
31591
|
+
* Date that the assignment was added
|
|
31592
|
+
* @type {string}
|
|
31593
|
+
* @memberof RoleAssignmentRefV2024
|
|
31594
|
+
*/
|
|
31595
|
+
'addedDate'?: string;
|
|
31552
31596
|
}
|
|
31553
31597
|
/**
|
|
31554
31598
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -35305,6 +35349,7 @@ export declare const SchemaV2024FeaturesV2024: {
|
|
|
35305
35349
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
35306
35350
|
readonly UsesUuid: "USES_UUID";
|
|
35307
35351
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
35352
|
+
readonly Delete: "DELETE";
|
|
35308
35353
|
};
|
|
35309
35354
|
export type SchemaV2024FeaturesV2024 = typeof SchemaV2024FeaturesV2024[keyof typeof SchemaV2024FeaturesV2024];
|
|
35310
35355
|
/**
|
|
@@ -39309,6 +39354,7 @@ export declare const SourceV2024FeaturesV2024: {
|
|
|
39309
39354
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
39310
39355
|
readonly UsesUuid: "USES_UUID";
|
|
39311
39356
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
39357
|
+
readonly Delete: "DELETE";
|
|
39312
39358
|
};
|
|
39313
39359
|
export type SourceV2024FeaturesV2024 = typeof SourceV2024FeaturesV2024[keyof typeof SourceV2024FeaturesV2024];
|
|
39314
39360
|
export declare const SourceV2024StatusV2024: {
|
|
@@ -42799,143 +42845,6 @@ export interface ValueV2024 {
|
|
|
42799
42845
|
*/
|
|
42800
42846
|
'value'?: string;
|
|
42801
42847
|
}
|
|
42802
|
-
/**
|
|
42803
|
-
* An object representing the nullable timestamp of when the mapping was deleted.
|
|
42804
|
-
* @export
|
|
42805
|
-
* @interface VendorConnectorMappingDeletedAtV2024
|
|
42806
|
-
*/
|
|
42807
|
-
export interface VendorConnectorMappingDeletedAtV2024 {
|
|
42808
|
-
/**
|
|
42809
|
-
* The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
|
|
42810
|
-
* @type {string}
|
|
42811
|
-
* @memberof VendorConnectorMappingDeletedAtV2024
|
|
42812
|
-
*/
|
|
42813
|
-
'Time'?: string;
|
|
42814
|
-
/**
|
|
42815
|
-
* A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
|
|
42816
|
-
* @type {boolean}
|
|
42817
|
-
* @memberof VendorConnectorMappingDeletedAtV2024
|
|
42818
|
-
*/
|
|
42819
|
-
'Valid'?: boolean;
|
|
42820
|
-
}
|
|
42821
|
-
/**
|
|
42822
|
-
* An object representing the nullable identifier of the user who deleted the mapping.
|
|
42823
|
-
* @export
|
|
42824
|
-
* @interface VendorConnectorMappingDeletedByV2024
|
|
42825
|
-
*/
|
|
42826
|
-
export interface VendorConnectorMappingDeletedByV2024 {
|
|
42827
|
-
/**
|
|
42828
|
-
* The identifier of the user who deleted the mapping, if applicable.
|
|
42829
|
-
* @type {string}
|
|
42830
|
-
* @memberof VendorConnectorMappingDeletedByV2024
|
|
42831
|
-
*/
|
|
42832
|
-
'String'?: string;
|
|
42833
|
-
/**
|
|
42834
|
-
* A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
|
|
42835
|
-
* @type {boolean}
|
|
42836
|
-
* @memberof VendorConnectorMappingDeletedByV2024
|
|
42837
|
-
*/
|
|
42838
|
-
'Valid'?: boolean;
|
|
42839
|
-
}
|
|
42840
|
-
/**
|
|
42841
|
-
* An object representing the nullable timestamp of the last update.
|
|
42842
|
-
* @export
|
|
42843
|
-
* @interface VendorConnectorMappingUpdatedAtV2024
|
|
42844
|
-
*/
|
|
42845
|
-
export interface VendorConnectorMappingUpdatedAtV2024 {
|
|
42846
|
-
/**
|
|
42847
|
-
* The timestamp when the mapping was last updated, represented in ISO 8601 format.
|
|
42848
|
-
* @type {string}
|
|
42849
|
-
* @memberof VendorConnectorMappingUpdatedAtV2024
|
|
42850
|
-
*/
|
|
42851
|
-
'Time'?: string;
|
|
42852
|
-
/**
|
|
42853
|
-
* A flag indicating if the \'Time\' field is set and valid.
|
|
42854
|
-
* @type {boolean}
|
|
42855
|
-
* @memberof VendorConnectorMappingUpdatedAtV2024
|
|
42856
|
-
*/
|
|
42857
|
-
'Valid'?: boolean;
|
|
42858
|
-
}
|
|
42859
|
-
/**
|
|
42860
|
-
* An object representing the nullable identifier of the user who last updated the mapping.
|
|
42861
|
-
* @export
|
|
42862
|
-
* @interface VendorConnectorMappingUpdatedByV2024
|
|
42863
|
-
*/
|
|
42864
|
-
export interface VendorConnectorMappingUpdatedByV2024 {
|
|
42865
|
-
/**
|
|
42866
|
-
* The identifier of the user who last updated the mapping, if available.
|
|
42867
|
-
* @type {string}
|
|
42868
|
-
* @memberof VendorConnectorMappingUpdatedByV2024
|
|
42869
|
-
*/
|
|
42870
|
-
'String'?: string;
|
|
42871
|
-
/**
|
|
42872
|
-
* A flag indicating if the \'String\' field is set and valid.
|
|
42873
|
-
* @type {boolean}
|
|
42874
|
-
* @memberof VendorConnectorMappingUpdatedByV2024
|
|
42875
|
-
*/
|
|
42876
|
-
'Valid'?: boolean;
|
|
42877
|
-
}
|
|
42878
|
-
/**
|
|
42879
|
-
*
|
|
42880
|
-
* @export
|
|
42881
|
-
* @interface VendorConnectorMappingV2024
|
|
42882
|
-
*/
|
|
42883
|
-
export interface VendorConnectorMappingV2024 {
|
|
42884
|
-
/**
|
|
42885
|
-
* The unique identifier for the vendor-connector mapping.
|
|
42886
|
-
* @type {string}
|
|
42887
|
-
* @memberof VendorConnectorMappingV2024
|
|
42888
|
-
*/
|
|
42889
|
-
'id'?: string;
|
|
42890
|
-
/**
|
|
42891
|
-
* The name of the vendor.
|
|
42892
|
-
* @type {string}
|
|
42893
|
-
* @memberof VendorConnectorMappingV2024
|
|
42894
|
-
*/
|
|
42895
|
-
'vendor'?: string;
|
|
42896
|
-
/**
|
|
42897
|
-
* The name of the connector.
|
|
42898
|
-
* @type {string}
|
|
42899
|
-
* @memberof VendorConnectorMappingV2024
|
|
42900
|
-
*/
|
|
42901
|
-
'connector'?: string;
|
|
42902
|
-
/**
|
|
42903
|
-
* The creation timestamp of the mapping.
|
|
42904
|
-
* @type {string}
|
|
42905
|
-
* @memberof VendorConnectorMappingV2024
|
|
42906
|
-
*/
|
|
42907
|
-
'createdAt'?: string;
|
|
42908
|
-
/**
|
|
42909
|
-
* The identifier of the user who created the mapping.
|
|
42910
|
-
* @type {string}
|
|
42911
|
-
* @memberof VendorConnectorMappingV2024
|
|
42912
|
-
*/
|
|
42913
|
-
'createdBy'?: string;
|
|
42914
|
-
/**
|
|
42915
|
-
*
|
|
42916
|
-
* @type {VendorConnectorMappingUpdatedAtV2024}
|
|
42917
|
-
* @memberof VendorConnectorMappingV2024
|
|
42918
|
-
*/
|
|
42919
|
-
'updatedAt'?: VendorConnectorMappingUpdatedAtV2024 | null;
|
|
42920
|
-
/**
|
|
42921
|
-
*
|
|
42922
|
-
* @type {VendorConnectorMappingUpdatedByV2024}
|
|
42923
|
-
* @memberof VendorConnectorMappingV2024
|
|
42924
|
-
*/
|
|
42925
|
-
'updatedBy'?: VendorConnectorMappingUpdatedByV2024 | null;
|
|
42926
|
-
/**
|
|
42927
|
-
*
|
|
42928
|
-
* @type {VendorConnectorMappingDeletedAtV2024}
|
|
42929
|
-
* @memberof VendorConnectorMappingV2024
|
|
42930
|
-
*/
|
|
42931
|
-
'deletedAt'?: VendorConnectorMappingDeletedAtV2024 | null;
|
|
42932
|
-
/**
|
|
42933
|
-
*
|
|
42934
|
-
* @type {VendorConnectorMappingDeletedByV2024}
|
|
42935
|
-
* @memberof VendorConnectorMappingV2024
|
|
42936
|
-
*/
|
|
42937
|
-
'deletedBy'?: VendorConnectorMappingDeletedByV2024 | null;
|
|
42938
|
-
}
|
|
42939
42848
|
/**
|
|
42940
42849
|
* The types of objects supported for SOD violations
|
|
42941
42850
|
* @export
|
|
@@ -45743,7 +45652,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45743
45652
|
*/
|
|
45744
45653
|
cancelAccessRequestInBulk: (bulkCancelAccessRequestV2024: BulkCancelAccessRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45745
45654
|
/**
|
|
45746
|
-
* 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/
|
|
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.
|
|
45747
45656
|
* @summary Close access request
|
|
45748
45657
|
* @param {CloseAccessRequestV2024} closeAccessRequestV2024
|
|
45749
45658
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -45858,7 +45767,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45858
45767
|
*/
|
|
45859
45768
|
cancelAccessRequestInBulk(bulkCancelAccessRequestV2024: BulkCancelAccessRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
45860
45769
|
/**
|
|
45861
|
-
* 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/
|
|
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.
|
|
45862
45771
|
* @summary Close access request
|
|
45863
45772
|
* @param {CloseAccessRequestV2024} closeAccessRequestV2024
|
|
45864
45773
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -45973,7 +45882,7 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
|
|
|
45973
45882
|
*/
|
|
45974
45883
|
cancelAccessRequestInBulk(requestParameters: AccessRequestsV2024ApiCancelAccessRequestInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
45975
45884
|
/**
|
|
45976
|
-
* 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/
|
|
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.
|
|
45977
45886
|
* @summary Close access request
|
|
45978
45887
|
* @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
45979
45888
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46333,7 +46242,7 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
|
|
|
46333
46242
|
*/
|
|
46334
46243
|
cancelAccessRequestInBulk(requestParameters: AccessRequestsV2024ApiCancelAccessRequestInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
46335
46244
|
/**
|
|
46336
|
-
* 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/
|
|
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.
|
|
46337
46246
|
* @summary Close access request
|
|
46338
46247
|
* @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
46339
46248
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52224,7 +52133,7 @@ export declare const ConfigurationHubV2024ApiAxiosParamCreator: (configuration?:
|
|
|
52224
52133
|
*/
|
|
52225
52134
|
createScheduledAction: (scheduledActionPayloadV2024: ScheduledActionPayloadV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52226
52135
|
/**
|
|
52227
|
-
* 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/
|
|
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.
|
|
52228
52137
|
* @summary Upload a configuration
|
|
52229
52138
|
* @param {File} data JSON file containing the objects to be imported.
|
|
52230
52139
|
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
@@ -52394,7 +52303,7 @@ export declare const ConfigurationHubV2024ApiFp: (configuration?: Configuration)
|
|
|
52394
52303
|
*/
|
|
52395
52304
|
createScheduledAction(scheduledActionPayloadV2024: ScheduledActionPayloadV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduledActionResponseV2024>>;
|
|
52396
52305
|
/**
|
|
52397
|
-
* 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/
|
|
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.
|
|
52398
52307
|
* @summary Upload a configuration
|
|
52399
52308
|
* @param {File} data JSON file containing the objects to be imported.
|
|
52400
52309
|
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
@@ -52562,7 +52471,7 @@ export declare const ConfigurationHubV2024ApiFactory: (configuration?: Configura
|
|
|
52562
52471
|
*/
|
|
52563
52472
|
createScheduledAction(requestParameters: ConfigurationHubV2024ApiCreateScheduledActionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ScheduledActionResponseV2024>;
|
|
52564
52473
|
/**
|
|
52565
|
-
* 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/
|
|
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.
|
|
52566
52475
|
* @summary Upload a configuration
|
|
52567
52476
|
* @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
|
|
52568
52477
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53002,7 +52911,7 @@ export declare class ConfigurationHubV2024Api extends BaseAPI {
|
|
|
53002
52911
|
*/
|
|
53003
52912
|
createScheduledAction(requestParameters: ConfigurationHubV2024ApiCreateScheduledActionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScheduledActionResponseV2024, any>>;
|
|
53004
52913
|
/**
|
|
53005
|
-
* 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/
|
|
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.
|
|
53006
52915
|
* @summary Upload a configuration
|
|
53007
52916
|
* @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
|
|
53008
52917
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57052,7 +56961,7 @@ export declare const EntitlementsV2024ApiAxiosParamCreator: (configuration?: Con
|
|
|
57052
56961
|
*/
|
|
57053
56962
|
resetSourceEntitlements: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57054
56963
|
/**
|
|
57055
|
-
* 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 }**`
|
|
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.
|
|
57056
56965
|
* @summary Bulk update an entitlement list
|
|
57057
56966
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
57058
56967
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57180,7 +57089,7 @@ export declare const EntitlementsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
57180
57089
|
*/
|
|
57181
57090
|
resetSourceEntitlements(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>>;
|
|
57182
57091
|
/**
|
|
57183
|
-
* 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 }**`
|
|
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.
|
|
57184
57093
|
* @summary Bulk update an entitlement list
|
|
57185
57094
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
57186
57095
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57283,7 +57192,7 @@ export declare const EntitlementsV2024ApiFactory: (configuration?: Configuration
|
|
|
57283
57192
|
*/
|
|
57284
57193
|
resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>;
|
|
57285
57194
|
/**
|
|
57286
|
-
* 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 }**`
|
|
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.
|
|
57287
57196
|
* @summary Bulk update an entitlement list
|
|
57288
57197
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
57289
57198
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57705,7 +57614,7 @@ export declare class EntitlementsV2024Api extends BaseAPI {
|
|
|
57705
57614
|
*/
|
|
57706
57615
|
resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoV2024, any>>;
|
|
57707
57616
|
/**
|
|
57708
|
-
* 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 }**`
|
|
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.
|
|
57709
57618
|
* @summary Bulk update an entitlement list
|
|
57710
57619
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
57711
57620
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58167,7 +58076,7 @@ export declare const GovernanceGroupsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
58167
58076
|
* This API returns list of Governance Groups
|
|
58168
58077
|
* @summary List governance groups
|
|
58169
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.
|
|
58170
|
-
* @param {number} [limit]
|
|
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.
|
|
58171
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=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.
|
|
58172
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*
|
|
58173
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**
|
|
@@ -58278,7 +58187,7 @@ export declare const GovernanceGroupsV2024ApiFp: (configuration?: Configuration)
|
|
|
58278
58187
|
* This API returns list of Governance Groups
|
|
58279
58188
|
* @summary List governance groups
|
|
58280
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.
|
|
58281
|
-
* @param {number} [limit]
|
|
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.
|
|
58282
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=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.
|
|
58283
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*
|
|
58284
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**
|
|
@@ -58594,7 +58503,7 @@ export interface GovernanceGroupsV2024ApiListWorkgroupsRequest {
|
|
|
58594
58503
|
*/
|
|
58595
58504
|
readonly offset?: number;
|
|
58596
58505
|
/**
|
|
58597
|
-
*
|
|
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.
|
|
58598
58507
|
* @type {number}
|
|
58599
58508
|
* @memberof GovernanceGroupsV2024ApiListWorkgroups
|
|
58600
58509
|
*/
|
|
@@ -77359,7 +77268,7 @@ export declare class SODViolationsV2024Api extends BaseAPI {
|
|
|
77359
77268
|
*/
|
|
77360
77269
|
export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
77361
77270
|
/**
|
|
77362
|
-
* 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/
|
|
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).
|
|
77363
77272
|
* @summary Initiates configuration objects export job
|
|
77364
77273
|
* @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
|
|
77365
77274
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77391,7 +77300,7 @@ export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
77391
77300
|
*/
|
|
77392
77301
|
getSpConfigImport: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77393
77302
|
/**
|
|
77394
|
-
* \'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/
|
|
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).\'
|
|
77395
77304
|
* @summary Get import job status
|
|
77396
77305
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
77397
77306
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77399,7 +77308,7 @@ export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
77399
77308
|
*/
|
|
77400
77309
|
getSpConfigImportStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77401
77310
|
/**
|
|
77402
|
-
* 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/
|
|
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).
|
|
77403
77312
|
* @summary Initiates configuration objects import job
|
|
77404
77313
|
* @param {File} data JSON file containing the objects to be imported.
|
|
77405
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 \"true\", 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.
|
|
@@ -77422,7 +77331,7 @@ export declare const SPConfigV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
77422
77331
|
*/
|
|
77423
77332
|
export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
|
|
77424
77333
|
/**
|
|
77425
|
-
* 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/
|
|
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).
|
|
77426
77335
|
* @summary Initiates configuration objects export job
|
|
77427
77336
|
* @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
|
|
77428
77337
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77454,7 +77363,7 @@ export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
|
|
|
77454
77363
|
*/
|
|
77455
77364
|
getSpConfigImport(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportResultsV2024>>;
|
|
77456
77365
|
/**
|
|
77457
|
-
* \'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/
|
|
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).\'
|
|
77458
77367
|
* @summary Get import job status
|
|
77459
77368
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
77460
77369
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77462,7 +77371,7 @@ export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
|
|
|
77462
77371
|
*/
|
|
77463
77372
|
getSpConfigImportStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportJobStatusV2024>>;
|
|
77464
77373
|
/**
|
|
77465
|
-
* 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/
|
|
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).
|
|
77466
77375
|
* @summary Initiates configuration objects import job
|
|
77467
77376
|
* @param {File} data JSON file containing the objects to be imported.
|
|
77468
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 \"true\", 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.
|
|
@@ -77485,7 +77394,7 @@ export declare const SPConfigV2024ApiFp: (configuration?: Configuration) => {
|
|
|
77485
77394
|
*/
|
|
77486
77395
|
export declare const SPConfigV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
77487
77396
|
/**
|
|
77488
|
-
* 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/
|
|
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).
|
|
77489
77398
|
* @summary Initiates configuration objects export job
|
|
77490
77399
|
* @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
|
|
77491
77400
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77517,7 +77426,7 @@ export declare const SPConfigV2024ApiFactory: (configuration?: Configuration, ba
|
|
|
77517
77426
|
*/
|
|
77518
77427
|
getSpConfigImport(requestParameters: SPConfigV2024ApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportResultsV2024>;
|
|
77519
77428
|
/**
|
|
77520
|
-
* \'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/
|
|
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).\'
|
|
77521
77430
|
* @summary Get import job status
|
|
77522
77431
|
* @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
77523
77432
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77525,7 +77434,7 @@ export declare const SPConfigV2024ApiFactory: (configuration?: Configuration, ba
|
|
|
77525
77434
|
*/
|
|
77526
77435
|
getSpConfigImportStatus(requestParameters: SPConfigV2024ApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportJobStatusV2024>;
|
|
77527
77436
|
/**
|
|
77528
|
-
* 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/
|
|
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).
|
|
77529
77438
|
* @summary Initiates configuration objects import job
|
|
77530
77439
|
* @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
|
|
77531
77440
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77638,7 +77547,7 @@ export interface SPConfigV2024ApiImportSpConfigRequest {
|
|
|
77638
77547
|
*/
|
|
77639
77548
|
export declare class SPConfigV2024Api extends BaseAPI {
|
|
77640
77549
|
/**
|
|
77641
|
-
* 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/
|
|
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).
|
|
77642
77551
|
* @summary Initiates configuration objects export job
|
|
77643
77552
|
* @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
|
|
77644
77553
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77674,7 +77583,7 @@ export declare class SPConfigV2024Api extends BaseAPI {
|
|
|
77674
77583
|
*/
|
|
77675
77584
|
getSpConfigImport(requestParameters: SPConfigV2024ApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportResultsV2024, any>>;
|
|
77676
77585
|
/**
|
|
77677
|
-
* \'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/
|
|
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).\'
|
|
77678
77587
|
* @summary Get import job status
|
|
77679
77588
|
* @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
77680
77589
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77683,7 +77592,7 @@ export declare class SPConfigV2024Api extends BaseAPI {
|
|
|
77683
77592
|
*/
|
|
77684
77593
|
getSpConfigImportStatus(requestParameters: SPConfigV2024ApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportJobStatusV2024, any>>;
|
|
77685
77594
|
/**
|
|
77686
|
-
* 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/
|
|
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).
|
|
77687
77596
|
* @summary Initiates configuration objects import job
|
|
77688
77597
|
* @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
|
|
77689
77598
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79910,7 +79819,7 @@ export declare class SourceUsagesV2024Api extends BaseAPI {
|
|
|
79910
79819
|
*/
|
|
79911
79820
|
export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79912
79821
|
/**
|
|
79913
|
-
* 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/
|
|
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.
|
|
79914
79823
|
* @summary Create provisioning policy
|
|
79915
79824
|
* @param {string} sourceId The Source id
|
|
79916
79825
|
* @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
|
|
@@ -80229,7 +80138,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
80229
80138
|
*/
|
|
80230
80139
|
putNativeChangeDetectionConfig: (id: string, nativeChangeDetectionConfigV2024: NativeChangeDetectionConfigV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80231
80140
|
/**
|
|
80232
|
-
* 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/
|
|
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.
|
|
80233
80142
|
* @summary Update provisioning policy by usagetype
|
|
80234
80143
|
* @param {string} sourceId The Source ID.
|
|
80235
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 \'Create Account Profile\', 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 \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', 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.
|
|
@@ -80320,7 +80229,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
80320
80229
|
*/
|
|
80321
80230
|
updateProvisioningPoliciesInBulk: (sourceId: string, provisioningPolicyDtoV2024: Array<ProvisioningPolicyDtoV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80322
80231
|
/**
|
|
80323
|
-
* 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/
|
|
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.
|
|
80324
80233
|
* @summary Partial update of provisioning policy
|
|
80325
80234
|
* @param {string} sourceId The Source id.
|
|
80326
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 \'Create Account Profile\', 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 \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', 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.
|
|
@@ -80374,7 +80283,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
80374
80283
|
*/
|
|
80375
80284
|
export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
80376
80285
|
/**
|
|
80377
|
-
* 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/
|
|
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.
|
|
80378
80287
|
* @summary Create provisioning policy
|
|
80379
80288
|
* @param {string} sourceId The Source id
|
|
80380
80289
|
* @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
|
|
@@ -80693,7 +80602,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
80693
80602
|
*/
|
|
80694
80603
|
putNativeChangeDetectionConfig(id: string, nativeChangeDetectionConfigV2024: NativeChangeDetectionConfigV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigV2024>>;
|
|
80695
80604
|
/**
|
|
80696
|
-
* 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/
|
|
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.
|
|
80697
80606
|
* @summary Update provisioning policy by usagetype
|
|
80698
80607
|
* @param {string} sourceId The Source ID.
|
|
80699
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 \'Create Account Profile\', 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 \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', 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.
|
|
@@ -80784,7 +80693,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
80784
80693
|
*/
|
|
80785
80694
|
updateProvisioningPoliciesInBulk(sourceId: string, provisioningPolicyDtoV2024: Array<ProvisioningPolicyDtoV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoV2024>>>;
|
|
80786
80695
|
/**
|
|
80787
|
-
* 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/
|
|
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.
|
|
80788
80697
|
* @summary Partial update of provisioning policy
|
|
80789
80698
|
* @param {string} sourceId The Source id.
|
|
80790
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 \'Create Account Profile\', 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 \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', 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.
|
|
@@ -80838,7 +80747,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
80838
80747
|
*/
|
|
80839
80748
|
export declare const SourcesV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
80840
80749
|
/**
|
|
80841
|
-
* 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/
|
|
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.
|
|
80842
80751
|
* @summary Create provisioning policy
|
|
80843
80752
|
* @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
80844
80753
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -81126,7 +81035,7 @@ export declare const SourcesV2024ApiFactory: (configuration?: Configuration, bas
|
|
|
81126
81035
|
*/
|
|
81127
81036
|
putNativeChangeDetectionConfig(requestParameters: SourcesV2024ApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NativeChangeDetectionConfigV2024>;
|
|
81128
81037
|
/**
|
|
81129
|
-
* 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/
|
|
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.
|
|
81130
81039
|
* @summary Update provisioning policy by usagetype
|
|
81131
81040
|
* @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
81132
81041
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -81206,7 +81115,7 @@ export declare const SourcesV2024ApiFactory: (configuration?: Configuration, bas
|
|
|
81206
81115
|
*/
|
|
81207
81116
|
updateProvisioningPoliciesInBulk(requestParameters: SourcesV2024ApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDtoV2024>>;
|
|
81208
81117
|
/**
|
|
81209
|
-
* 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/
|
|
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.
|
|
81210
81119
|
* @summary Partial update of provisioning policy
|
|
81211
81120
|
* @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
81212
81121
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82217,7 +82126,7 @@ export interface SourcesV2024ApiUpdateSourceSchemaRequest {
|
|
|
82217
82126
|
*/
|
|
82218
82127
|
export declare class SourcesV2024Api extends BaseAPI {
|
|
82219
82128
|
/**
|
|
82220
|
-
* 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/
|
|
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.
|
|
82221
82130
|
* @summary Create provisioning policy
|
|
82222
82131
|
* @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
82223
82132
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82541,7 +82450,7 @@ export declare class SourcesV2024Api extends BaseAPI {
|
|
|
82541
82450
|
*/
|
|
82542
82451
|
putNativeChangeDetectionConfig(requestParameters: SourcesV2024ApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NativeChangeDetectionConfigV2024, any>>;
|
|
82543
82452
|
/**
|
|
82544
|
-
* 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/
|
|
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.
|
|
82545
82454
|
* @summary Update provisioning policy by usagetype
|
|
82546
82455
|
* @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
82547
82456
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82631,7 +82540,7 @@ export declare class SourcesV2024Api extends BaseAPI {
|
|
|
82631
82540
|
*/
|
|
82632
82541
|
updateProvisioningPoliciesInBulk(requestParameters: SourcesV2024ApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningPolicyDtoV2024[], any>>;
|
|
82633
82542
|
/**
|
|
82634
|
-
* 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/
|
|
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.
|
|
82635
82544
|
* @summary Partial update of provisioning policy
|
|
82636
82545
|
* @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
82637
82546
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83209,7 +83118,7 @@ export declare const TaggedObjectsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
83209
83118
|
*/
|
|
83210
83119
|
getTaggedObject: (type: GetTaggedObjectTypeV2024, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83211
83120
|
/**
|
|
83212
|
-
* This API returns a list of all tagged objects.
|
|
83121
|
+
* This API returns a list of all tagged objects.
|
|
83213
83122
|
* @summary List tagged objects
|
|
83214
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.
|
|
83215
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.
|
|
@@ -83220,7 +83129,7 @@ export declare const TaggedObjectsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
83220
83129
|
*/
|
|
83221
83130
|
listTaggedObjects: (limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83222
83131
|
/**
|
|
83223
|
-
* This API returns a list of all tagged objects by type.
|
|
83132
|
+
* This API returns a list of all tagged objects by type.
|
|
83224
83133
|
* @summary List tagged objects by type
|
|
83225
83134
|
* @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
|
|
83226
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.
|
|
@@ -83242,7 +83151,7 @@ export declare const TaggedObjectsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
83242
83151
|
*/
|
|
83243
83152
|
putTaggedObject: (type: PutTaggedObjectTypeV2024, id: string, taggedObjectV2024: TaggedObjectV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83244
83153
|
/**
|
|
83245
|
-
* This adds a tag to an object.
|
|
83154
|
+
* This adds a tag to an object.
|
|
83246
83155
|
* @summary Add tag to object
|
|
83247
83156
|
* @param {TaggedObjectV2024} taggedObjectV2024
|
|
83248
83157
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83290,7 +83199,7 @@ export declare const TaggedObjectsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
83290
83199
|
*/
|
|
83291
83200
|
getTaggedObject(type: GetTaggedObjectTypeV2024, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectV2024>>;
|
|
83292
83201
|
/**
|
|
83293
|
-
* This API returns a list of all tagged objects.
|
|
83202
|
+
* This API returns a list of all tagged objects.
|
|
83294
83203
|
* @summary List tagged objects
|
|
83295
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.
|
|
83296
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.
|
|
@@ -83301,7 +83210,7 @@ export declare const TaggedObjectsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
83301
83210
|
*/
|
|
83302
83211
|
listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObjectV2024>>>;
|
|
83303
83212
|
/**
|
|
83304
|
-
* This API returns a list of all tagged objects by type.
|
|
83213
|
+
* This API returns a list of all tagged objects by type.
|
|
83305
83214
|
* @summary List tagged objects by type
|
|
83306
83215
|
* @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
|
|
83307
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.
|
|
@@ -83323,7 +83232,7 @@ export declare const TaggedObjectsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
83323
83232
|
*/
|
|
83324
83233
|
putTaggedObject(type: PutTaggedObjectTypeV2024, id: string, taggedObjectV2024: TaggedObjectV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectV2024>>;
|
|
83325
83234
|
/**
|
|
83326
|
-
* This adds a tag to an object.
|
|
83235
|
+
* This adds a tag to an object.
|
|
83327
83236
|
* @summary Add tag to object
|
|
83328
83237
|
* @param {TaggedObjectV2024} taggedObjectV2024
|
|
83329
83238
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83369,7 +83278,7 @@ export declare const TaggedObjectsV2024ApiFactory: (configuration?: Configuratio
|
|
|
83369
83278
|
*/
|
|
83370
83279
|
getTaggedObject(requestParameters: TaggedObjectsV2024ApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectV2024>;
|
|
83371
83280
|
/**
|
|
83372
|
-
* This API returns a list of all tagged objects.
|
|
83281
|
+
* This API returns a list of all tagged objects.
|
|
83373
83282
|
* @summary List tagged objects
|
|
83374
83283
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
83375
83284
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83377,7 +83286,7 @@ export declare const TaggedObjectsV2024ApiFactory: (configuration?: Configuratio
|
|
|
83377
83286
|
*/
|
|
83378
83287
|
listTaggedObjects(requestParameters?: TaggedObjectsV2024ApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaggedObjectV2024>>;
|
|
83379
83288
|
/**
|
|
83380
|
-
* This API returns a list of all tagged objects by type.
|
|
83289
|
+
* This API returns a list of all tagged objects by type.
|
|
83381
83290
|
* @summary List tagged objects by type
|
|
83382
83291
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
83383
83292
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83393,7 +83302,7 @@ export declare const TaggedObjectsV2024ApiFactory: (configuration?: Configuratio
|
|
|
83393
83302
|
*/
|
|
83394
83303
|
putTaggedObject(requestParameters: TaggedObjectsV2024ApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectV2024>;
|
|
83395
83304
|
/**
|
|
83396
|
-
* This adds a tag to an object.
|
|
83305
|
+
* This adds a tag to an object.
|
|
83397
83306
|
* @summary Add tag to object
|
|
83398
83307
|
* @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
83399
83308
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83614,7 +83523,7 @@ export declare class TaggedObjectsV2024Api extends BaseAPI {
|
|
|
83614
83523
|
*/
|
|
83615
83524
|
getTaggedObject(requestParameters: TaggedObjectsV2024ApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectV2024, any>>;
|
|
83616
83525
|
/**
|
|
83617
|
-
* This API returns a list of all tagged objects.
|
|
83526
|
+
* This API returns a list of all tagged objects.
|
|
83618
83527
|
* @summary List tagged objects
|
|
83619
83528
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
83620
83529
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83623,7 +83532,7 @@ export declare class TaggedObjectsV2024Api extends BaseAPI {
|
|
|
83623
83532
|
*/
|
|
83624
83533
|
listTaggedObjects(requestParameters?: TaggedObjectsV2024ApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectV2024[], any>>;
|
|
83625
83534
|
/**
|
|
83626
|
-
* This API returns a list of all tagged objects by type.
|
|
83535
|
+
* This API returns a list of all tagged objects by type.
|
|
83627
83536
|
* @summary List tagged objects by type
|
|
83628
83537
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
83629
83538
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83641,7 +83550,7 @@ export declare class TaggedObjectsV2024Api extends BaseAPI {
|
|
|
83641
83550
|
*/
|
|
83642
83551
|
putTaggedObject(requestParameters: TaggedObjectsV2024ApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectV2024, any>>;
|
|
83643
83552
|
/**
|
|
83644
|
-
* This adds a tag to an object.
|
|
83553
|
+
* This adds a tag to an object.
|
|
83645
83554
|
* @summary Add tag to object
|
|
83646
83555
|
* @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
83647
83556
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -85574,153 +85483,6 @@ export declare class UIMetadataV2024Api extends BaseAPI {
|
|
|
85574
85483
|
*/
|
|
85575
85484
|
setTenantUiMetadata(requestParameters: UIMetadataV2024ApiSetTenantUiMetadataRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TenantUiMetadataItemResponseV2024, any>>;
|
|
85576
85485
|
}
|
|
85577
|
-
/**
|
|
85578
|
-
* VendorConnectorMappingsV2024Api - axios parameter creator
|
|
85579
|
-
* @export
|
|
85580
|
-
*/
|
|
85581
|
-
export declare const VendorConnectorMappingsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
85582
|
-
/**
|
|
85583
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
85584
|
-
* @summary Create vendor connector mapping
|
|
85585
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
85586
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85587
|
-
* @throws {RequiredError}
|
|
85588
|
-
*/
|
|
85589
|
-
createVendorConnectorMapping: (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85590
|
-
/**
|
|
85591
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
85592
|
-
* @summary Delete vendor connector mapping
|
|
85593
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
85594
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85595
|
-
* @throws {RequiredError}
|
|
85596
|
-
*/
|
|
85597
|
-
deleteVendorConnectorMapping: (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85598
|
-
/**
|
|
85599
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
85600
|
-
* @summary List vendor connector mappings
|
|
85601
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85602
|
-
* @throws {RequiredError}
|
|
85603
|
-
*/
|
|
85604
|
-
getVendorConnectorMappings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85605
|
-
};
|
|
85606
|
-
/**
|
|
85607
|
-
* VendorConnectorMappingsV2024Api - functional programming interface
|
|
85608
|
-
* @export
|
|
85609
|
-
*/
|
|
85610
|
-
export declare const VendorConnectorMappingsV2024ApiFp: (configuration?: Configuration) => {
|
|
85611
|
-
/**
|
|
85612
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
85613
|
-
* @summary Create vendor connector mapping
|
|
85614
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
85615
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85616
|
-
* @throws {RequiredError}
|
|
85617
|
-
*/
|
|
85618
|
-
createVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingV2024>>;
|
|
85619
|
-
/**
|
|
85620
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
85621
|
-
* @summary Delete vendor connector mapping
|
|
85622
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
85623
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85624
|
-
* @throws {RequiredError}
|
|
85625
|
-
*/
|
|
85626
|
-
deleteVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024>>;
|
|
85627
|
-
/**
|
|
85628
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
85629
|
-
* @summary List vendor connector mappings
|
|
85630
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85631
|
-
* @throws {RequiredError}
|
|
85632
|
-
*/
|
|
85633
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingV2024>>>;
|
|
85634
|
-
};
|
|
85635
|
-
/**
|
|
85636
|
-
* VendorConnectorMappingsV2024Api - factory interface
|
|
85637
|
-
* @export
|
|
85638
|
-
*/
|
|
85639
|
-
export declare const VendorConnectorMappingsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
85640
|
-
/**
|
|
85641
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
85642
|
-
* @summary Create vendor connector mapping
|
|
85643
|
-
* @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
85644
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85645
|
-
* @throws {RequiredError}
|
|
85646
|
-
*/
|
|
85647
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingV2024>;
|
|
85648
|
-
/**
|
|
85649
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
85650
|
-
* @summary Delete vendor connector mapping
|
|
85651
|
-
* @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
85652
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85653
|
-
* @throws {RequiredError}
|
|
85654
|
-
*/
|
|
85655
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024>;
|
|
85656
|
-
/**
|
|
85657
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
85658
|
-
* @summary List vendor connector mappings
|
|
85659
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85660
|
-
* @throws {RequiredError}
|
|
85661
|
-
*/
|
|
85662
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingV2024>>;
|
|
85663
|
-
};
|
|
85664
|
-
/**
|
|
85665
|
-
* Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
|
|
85666
|
-
* @export
|
|
85667
|
-
* @interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest
|
|
85668
|
-
*/
|
|
85669
|
-
export interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest {
|
|
85670
|
-
/**
|
|
85671
|
-
*
|
|
85672
|
-
* @type {VendorConnectorMappingV2024}
|
|
85673
|
-
* @memberof VendorConnectorMappingsV2024ApiCreateVendorConnectorMapping
|
|
85674
|
-
*/
|
|
85675
|
-
readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024;
|
|
85676
|
-
}
|
|
85677
|
-
/**
|
|
85678
|
-
* Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
|
|
85679
|
-
* @export
|
|
85680
|
-
* @interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest
|
|
85681
|
-
*/
|
|
85682
|
-
export interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest {
|
|
85683
|
-
/**
|
|
85684
|
-
*
|
|
85685
|
-
* @type {VendorConnectorMappingV2024}
|
|
85686
|
-
* @memberof VendorConnectorMappingsV2024ApiDeleteVendorConnectorMapping
|
|
85687
|
-
*/
|
|
85688
|
-
readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024;
|
|
85689
|
-
}
|
|
85690
|
-
/**
|
|
85691
|
-
* VendorConnectorMappingsV2024Api - object-oriented interface
|
|
85692
|
-
* @export
|
|
85693
|
-
* @class VendorConnectorMappingsV2024Api
|
|
85694
|
-
* @extends {BaseAPI}
|
|
85695
|
-
*/
|
|
85696
|
-
export declare class VendorConnectorMappingsV2024Api extends BaseAPI {
|
|
85697
|
-
/**
|
|
85698
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
85699
|
-
* @summary Create vendor connector mapping
|
|
85700
|
-
* @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
85701
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85702
|
-
* @throws {RequiredError}
|
|
85703
|
-
* @memberof VendorConnectorMappingsV2024Api
|
|
85704
|
-
*/
|
|
85705
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingV2024, any>>;
|
|
85706
|
-
/**
|
|
85707
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
85708
|
-
* @summary Delete vendor connector mapping
|
|
85709
|
-
* @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
85710
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85711
|
-
* @throws {RequiredError}
|
|
85712
|
-
* @memberof VendorConnectorMappingsV2024Api
|
|
85713
|
-
*/
|
|
85714
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteVendorConnectorMapping200ResponseV2024, any>>;
|
|
85715
|
-
/**
|
|
85716
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
85717
|
-
* @summary List vendor connector mappings
|
|
85718
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
85719
|
-
* @throws {RequiredError}
|
|
85720
|
-
* @memberof VendorConnectorMappingsV2024Api
|
|
85721
|
-
*/
|
|
85722
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingV2024[], any>>;
|
|
85723
|
-
}
|
|
85724
85486
|
/**
|
|
85725
85487
|
* WorkItemsV2024Api - axios parameter creator
|
|
85726
85488
|
* @export
|
|
@@ -87127,7 +86889,7 @@ export declare const WorkflowsV2024ApiAxiosParamCreator: (configuration?: Config
|
|
|
87127
86889
|
*/
|
|
87128
86890
|
testExternalExecuteWorkflow: (id: string, testExternalExecuteWorkflowRequestV2024?: TestExternalExecuteWorkflowRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87129
86891
|
/**
|
|
87130
|
-
* :::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/
|
|
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.**
|
|
87131
86893
|
* @summary Test workflow by id
|
|
87132
86894
|
* @param {string} id Id of the workflow
|
|
87133
86895
|
* @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
|
|
@@ -87288,7 +87050,7 @@ export declare const WorkflowsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
87288
87050
|
*/
|
|
87289
87051
|
testExternalExecuteWorkflow(id: string, testExternalExecuteWorkflowRequestV2024?: TestExternalExecuteWorkflowRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestExternalExecuteWorkflow200ResponseV2024>>;
|
|
87290
87052
|
/**
|
|
87291
|
-
* :::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/
|
|
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.**
|
|
87292
87054
|
* @summary Test workflow by id
|
|
87293
87055
|
* @param {string} id Id of the workflow
|
|
87294
87056
|
* @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
|
|
@@ -87437,7 +87199,7 @@ export declare const WorkflowsV2024ApiFactory: (configuration?: Configuration, b
|
|
|
87437
87199
|
*/
|
|
87438
87200
|
testExternalExecuteWorkflow(requestParameters: WorkflowsV2024ApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestExternalExecuteWorkflow200ResponseV2024>;
|
|
87439
87201
|
/**
|
|
87440
|
-
* :::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/
|
|
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.**
|
|
87441
87203
|
* @summary Test workflow by id
|
|
87442
87204
|
* @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
|
|
87443
87205
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -87890,7 +87652,7 @@ export declare class WorkflowsV2024Api extends BaseAPI {
|
|
|
87890
87652
|
*/
|
|
87891
87653
|
testExternalExecuteWorkflow(requestParameters: WorkflowsV2024ApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestExternalExecuteWorkflow200ResponseV2024, any>>;
|
|
87892
87654
|
/**
|
|
87893
|
-
* :::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/
|
|
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.**
|
|
87894
87656
|
* @summary Test workflow by id
|
|
87895
87657
|
* @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
|
|
87896
87658
|
* @param {*} [axiosOptions] Override http request option.
|