sailpoint-api-client 1.6.9 → 1.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +256 -546
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +240 -388
- package/dist/beta/api.js +96 -412
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/beta/common.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/v2024/common.js.map +1 -1
- package/dist/v2025/api.d.ts +1640 -409
- package/dist/v2025/api.js +2842 -1165
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2025/common.js.map +1 -1
- package/dist/v3/api.d.ts +77 -361
- package/dist/v3/api.js +59 -379
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- 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 +2813 -767
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +85 -514
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/api.d.ts
CHANGED
|
@@ -920,13 +920,13 @@ export interface AccessItemRoleResponseBeta {
|
|
|
920
920
|
*/
|
|
921
921
|
export interface AccessProfileApprovalSchemeBeta {
|
|
922
922
|
/**
|
|
923
|
-
* 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
|
|
923
|
+
* 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.
|
|
924
924
|
* @type {string}
|
|
925
925
|
* @memberof AccessProfileApprovalSchemeBeta
|
|
926
926
|
*/
|
|
927
927
|
'approverType'?: AccessProfileApprovalSchemeBetaApproverTypeBeta;
|
|
928
928
|
/**
|
|
929
|
-
*
|
|
929
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
930
930
|
* @type {string}
|
|
931
931
|
* @memberof AccessProfileApprovalSchemeBeta
|
|
932
932
|
*/
|
|
@@ -938,6 +938,7 @@ export declare const AccessProfileApprovalSchemeBetaApproverTypeBeta: {
|
|
|
938
938
|
readonly SourceOwner: "SOURCE_OWNER";
|
|
939
939
|
readonly Manager: "MANAGER";
|
|
940
940
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
941
|
+
readonly Workflow: "WORKFLOW";
|
|
941
942
|
};
|
|
942
943
|
export type AccessProfileApprovalSchemeBetaApproverTypeBeta = typeof AccessProfileApprovalSchemeBetaApproverTypeBeta[keyof typeof AccessProfileApprovalSchemeBetaApproverTypeBeta];
|
|
943
944
|
/**
|
|
@@ -2310,23 +2311,35 @@ export declare const AccessTypeBeta: {
|
|
|
2310
2311
|
};
|
|
2311
2312
|
export type AccessTypeBeta = typeof AccessTypeBeta[keyof typeof AccessTypeBeta];
|
|
2312
2313
|
/**
|
|
2313
|
-
*
|
|
2314
|
+
* Object for specifying Actions to be performed on a specified list of sources\' account.
|
|
2314
2315
|
* @export
|
|
2315
2316
|
* @interface AccountActionBeta
|
|
2316
2317
|
*/
|
|
2317
2318
|
export interface AccountActionBeta {
|
|
2318
2319
|
/**
|
|
2319
|
-
* Describes if action will be
|
|
2320
|
+
* Describes if action will be enable, disable or delete.
|
|
2320
2321
|
* @type {string}
|
|
2321
2322
|
* @memberof AccountActionBeta
|
|
2322
2323
|
*/
|
|
2323
2324
|
'action'?: AccountActionBetaActionBeta;
|
|
2324
2325
|
/**
|
|
2325
|
-
*
|
|
2326
|
-
* @type {
|
|
2326
|
+
* A unique list of specific source IDs to apply the action to. The sources must have the ENABLE feature or flat file source. Required if allSources is not true. Must not be provided if allSources is true. Cannot be used together with excludeSourceIds See \"/sources\" endpoint for source features.
|
|
2327
|
+
* @type {Set<string>}
|
|
2327
2328
|
* @memberof AccountActionBeta
|
|
2328
2329
|
*/
|
|
2329
|
-
'sourceIds'?:
|
|
2330
|
+
'sourceIds'?: Set<string> | null;
|
|
2331
|
+
/**
|
|
2332
|
+
* A list of source IDs to exclude from the action. Cannot be used together with sourceIds.
|
|
2333
|
+
* @type {Set<string>}
|
|
2334
|
+
* @memberof AccountActionBeta
|
|
2335
|
+
*/
|
|
2336
|
+
'excludeSourceIds'?: Set<string> | null;
|
|
2337
|
+
/**
|
|
2338
|
+
* If true, the action applies to all available sources. If true, sourceIds must not be provided. If false or not set, sourceIds is required.
|
|
2339
|
+
* @type {boolean}
|
|
2340
|
+
* @memberof AccountActionBeta
|
|
2341
|
+
*/
|
|
2342
|
+
'allSources'?: boolean;
|
|
2330
2343
|
}
|
|
2331
2344
|
export declare const AccountActionBetaActionBeta: {
|
|
2332
2345
|
readonly Enable: "ENABLE";
|
|
@@ -4116,13 +4129,13 @@ export type ApprovalSchemeBeta = typeof ApprovalSchemeBeta[keyof typeof Approval
|
|
|
4116
4129
|
*/
|
|
4117
4130
|
export interface ApprovalSchemeForRoleBeta {
|
|
4118
4131
|
/**
|
|
4119
|
-
* 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
|
|
4132
|
+
* 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.
|
|
4120
4133
|
* @type {string}
|
|
4121
4134
|
* @memberof ApprovalSchemeForRoleBeta
|
|
4122
4135
|
*/
|
|
4123
4136
|
'approverType'?: ApprovalSchemeForRoleBetaApproverTypeBeta;
|
|
4124
4137
|
/**
|
|
4125
|
-
* Id of the specific approver, used
|
|
4138
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
4126
4139
|
* @type {string}
|
|
4127
4140
|
* @memberof ApprovalSchemeForRoleBeta
|
|
4128
4141
|
*/
|
|
@@ -4132,6 +4145,7 @@ export declare const ApprovalSchemeForRoleBetaApproverTypeBeta: {
|
|
|
4132
4145
|
readonly Owner: "OWNER";
|
|
4133
4146
|
readonly Manager: "MANAGER";
|
|
4134
4147
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
4148
|
+
readonly Workflow: "WORKFLOW";
|
|
4135
4149
|
};
|
|
4136
4150
|
export type ApprovalSchemeForRoleBetaApproverTypeBeta = typeof ApprovalSchemeForRoleBetaApproverTypeBeta[keyof typeof ApprovalSchemeForRoleBetaApproverTypeBeta];
|
|
4137
4151
|
/**
|
|
@@ -4546,6 +4560,12 @@ export interface AttributeDefinitionBeta {
|
|
|
4546
4560
|
* @memberof AttributeDefinitionBeta
|
|
4547
4561
|
*/
|
|
4548
4562
|
'name'?: string;
|
|
4563
|
+
/**
|
|
4564
|
+
* Attribute name in the native system.
|
|
4565
|
+
* @type {string}
|
|
4566
|
+
* @memberof AttributeDefinitionBeta
|
|
4567
|
+
*/
|
|
4568
|
+
'nativeName'?: string | null;
|
|
4549
4569
|
/**
|
|
4550
4570
|
*
|
|
4551
4571
|
* @type {AttributeDefinitionTypeBeta}
|
|
@@ -4935,6 +4955,31 @@ export interface BaseReferenceDtoBeta {
|
|
|
4935
4955
|
*/
|
|
4936
4956
|
'name'?: string;
|
|
4937
4957
|
}
|
|
4958
|
+
/**
|
|
4959
|
+
*
|
|
4960
|
+
* @export
|
|
4961
|
+
* @interface BaseRoleReferenceDtoBeta
|
|
4962
|
+
*/
|
|
4963
|
+
export interface BaseRoleReferenceDtoBeta {
|
|
4964
|
+
/**
|
|
4965
|
+
* DTO type
|
|
4966
|
+
* @type {string}
|
|
4967
|
+
* @memberof BaseRoleReferenceDtoBeta
|
|
4968
|
+
*/
|
|
4969
|
+
'type'?: string;
|
|
4970
|
+
/**
|
|
4971
|
+
* ID of the object to which this reference applies
|
|
4972
|
+
* @type {string}
|
|
4973
|
+
* @memberof BaseRoleReferenceDtoBeta
|
|
4974
|
+
*/
|
|
4975
|
+
'id'?: string;
|
|
4976
|
+
/**
|
|
4977
|
+
* Human-readable display name of the object to which this reference applies
|
|
4978
|
+
* @type {string}
|
|
4979
|
+
* @memberof BaseRoleReferenceDtoBeta
|
|
4980
|
+
*/
|
|
4981
|
+
'name'?: string;
|
|
4982
|
+
}
|
|
4938
4983
|
/**
|
|
4939
4984
|
* Config required if BASIC_AUTH is used.
|
|
4940
4985
|
* @export
|
|
@@ -7025,6 +7070,12 @@ export interface CompletedApprovalBeta {
|
|
|
7025
7070
|
* @memberof CompletedApprovalBeta
|
|
7026
7071
|
*/
|
|
7027
7072
|
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
7073
|
+
/**
|
|
7074
|
+
* The privilege level of the requested access item, if applicable.
|
|
7075
|
+
* @type {string}
|
|
7076
|
+
* @memberof CompletedApprovalBeta
|
|
7077
|
+
*/
|
|
7078
|
+
'privilegeLevel'?: string | null;
|
|
7028
7079
|
}
|
|
7029
7080
|
/**
|
|
7030
7081
|
* If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
|
|
@@ -8833,19 +8884,6 @@ export interface DeleteNonEmployeeRecordInBulkRequestBeta {
|
|
|
8833
8884
|
*/
|
|
8834
8885
|
'ids': Array<string>;
|
|
8835
8886
|
}
|
|
8836
|
-
/**
|
|
8837
|
-
*
|
|
8838
|
-
* @export
|
|
8839
|
-
* @interface DeleteVendorConnectorMapping200ResponseBeta
|
|
8840
|
-
*/
|
|
8841
|
-
export interface DeleteVendorConnectorMapping200ResponseBeta {
|
|
8842
|
-
/**
|
|
8843
|
-
* The number of vendor connector mappings successfully deleted.
|
|
8844
|
-
* @type {number}
|
|
8845
|
-
* @memberof DeleteVendorConnectorMapping200ResponseBeta
|
|
8846
|
-
*/
|
|
8847
|
-
'count'?: number;
|
|
8848
|
-
}
|
|
8849
8887
|
/**
|
|
8850
8888
|
*
|
|
8851
8889
|
* @export
|
|
@@ -9164,13 +9202,13 @@ export interface EntitlementAccessRequestConfigBeta {
|
|
|
9164
9202
|
*/
|
|
9165
9203
|
export interface EntitlementApprovalSchemeBeta {
|
|
9166
9204
|
/**
|
|
9167
|
-
* 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
|
|
9205
|
+
* 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.
|
|
9168
9206
|
* @type {string}
|
|
9169
9207
|
* @memberof EntitlementApprovalSchemeBeta
|
|
9170
9208
|
*/
|
|
9171
9209
|
'approverType'?: EntitlementApprovalSchemeBetaApproverTypeBeta;
|
|
9172
9210
|
/**
|
|
9173
|
-
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
|
|
9211
|
+
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
|
|
9174
9212
|
* @type {string}
|
|
9175
9213
|
* @memberof EntitlementApprovalSchemeBeta
|
|
9176
9214
|
*/
|
|
@@ -9181,6 +9219,7 @@ export declare const EntitlementApprovalSchemeBetaApproverTypeBeta: {
|
|
|
9181
9219
|
readonly SourceOwner: "SOURCE_OWNER";
|
|
9182
9220
|
readonly Manager: "MANAGER";
|
|
9183
9221
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
9222
|
+
readonly Workflow: "WORKFLOW";
|
|
9184
9223
|
};
|
|
9185
9224
|
export type EntitlementApprovalSchemeBetaApproverTypeBeta = typeof EntitlementApprovalSchemeBetaApproverTypeBeta[keyof typeof EntitlementApprovalSchemeBetaApproverTypeBeta];
|
|
9186
9225
|
/**
|
|
@@ -10225,11 +10264,11 @@ export interface FieldDetailsDtoBeta {
|
|
|
10225
10264
|
*/
|
|
10226
10265
|
'isRequired'?: boolean;
|
|
10227
10266
|
/**
|
|
10228
|
-
* The type of the attribute.
|
|
10267
|
+
* 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.
|
|
10229
10268
|
* @type {string}
|
|
10230
10269
|
* @memberof FieldDetailsDtoBeta
|
|
10231
10270
|
*/
|
|
10232
|
-
'type'?:
|
|
10271
|
+
'type'?: FieldDetailsDtoBetaTypeBeta;
|
|
10233
10272
|
/**
|
|
10234
10273
|
* Flag indicating whether or not the attribute is multi-valued.
|
|
10235
10274
|
* @type {boolean}
|
|
@@ -10237,6 +10276,15 @@ export interface FieldDetailsDtoBeta {
|
|
|
10237
10276
|
*/
|
|
10238
10277
|
'isMultiValued'?: boolean;
|
|
10239
10278
|
}
|
|
10279
|
+
export declare const FieldDetailsDtoBetaTypeBeta: {
|
|
10280
|
+
readonly String: "string";
|
|
10281
|
+
readonly Int: "int";
|
|
10282
|
+
readonly Long: "long";
|
|
10283
|
+
readonly Date: "date";
|
|
10284
|
+
readonly Boolean: "boolean";
|
|
10285
|
+
readonly Secret: "secret";
|
|
10286
|
+
};
|
|
10287
|
+
export type FieldDetailsDtoBetaTypeBeta = typeof FieldDetailsDtoBetaTypeBeta[keyof typeof FieldDetailsDtoBetaTypeBeta];
|
|
10240
10288
|
/**
|
|
10241
10289
|
*
|
|
10242
10290
|
* @export
|
|
@@ -12186,16 +12234,22 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12186
12234
|
'id'?: string;
|
|
12187
12235
|
/**
|
|
12188
12236
|
*
|
|
12189
|
-
* @type {
|
|
12237
|
+
* @type {BaseRoleReferenceDtoBeta}
|
|
12190
12238
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12191
12239
|
*/
|
|
12192
|
-
'role'?:
|
|
12240
|
+
'role'?: BaseRoleReferenceDtoBeta;
|
|
12241
|
+
/**
|
|
12242
|
+
* Date that the assignment was added
|
|
12243
|
+
* @type {string}
|
|
12244
|
+
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12245
|
+
*/
|
|
12246
|
+
'addedDate'?: string;
|
|
12193
12247
|
/**
|
|
12194
12248
|
* Comments added by the user when the assignment was made
|
|
12195
12249
|
* @type {string}
|
|
12196
12250
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12197
12251
|
*/
|
|
12198
|
-
'comments'?: string;
|
|
12252
|
+
'comments'?: string | null;
|
|
12199
12253
|
/**
|
|
12200
12254
|
* Source describing how this assignment was made
|
|
12201
12255
|
* @type {string}
|
|
@@ -12204,10 +12258,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12204
12258
|
'assignmentSource'?: string;
|
|
12205
12259
|
/**
|
|
12206
12260
|
*
|
|
12207
|
-
* @type {
|
|
12261
|
+
* @type {RoleAssignmentDtoAssignerBeta}
|
|
12208
12262
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12209
12263
|
*/
|
|
12210
|
-
'assigner'?:
|
|
12264
|
+
'assigner'?: RoleAssignmentDtoAssignerBeta;
|
|
12211
12265
|
/**
|
|
12212
12266
|
* Dimensions assigned related to this role
|
|
12213
12267
|
* @type {Array<BaseReferenceDto1Beta>}
|
|
@@ -12216,10 +12270,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12216
12270
|
'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
|
|
12217
12271
|
/**
|
|
12218
12272
|
*
|
|
12219
|
-
* @type {
|
|
12273
|
+
* @type {RoleAssignmentDtoAssignmentContextBeta}
|
|
12220
12274
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12221
12275
|
*/
|
|
12222
|
-
'assignmentContext'?:
|
|
12276
|
+
'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
|
|
12223
12277
|
/**
|
|
12224
12278
|
*
|
|
12225
12279
|
* @type {Array<RoleTargetDtoBeta>}
|
|
@@ -12231,7 +12285,7 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12231
12285
|
* @type {string}
|
|
12232
12286
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12233
12287
|
*/
|
|
12234
|
-
'removeDate'?: string;
|
|
12288
|
+
'removeDate'?: string | null;
|
|
12235
12289
|
}
|
|
12236
12290
|
/**
|
|
12237
12291
|
* OAuth2 Grant Type
|
|
@@ -17449,6 +17503,7 @@ export declare const MultiHostSourcesBetaFeaturesBeta: {
|
|
|
17449
17503
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
17450
17504
|
readonly UsesUuid: "USES_UUID";
|
|
17451
17505
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
17506
|
+
readonly Delete: "DELETE";
|
|
17452
17507
|
};
|
|
17453
17508
|
export type MultiHostSourcesBetaFeaturesBeta = typeof MultiHostSourcesBetaFeaturesBeta[keyof typeof MultiHostSourcesBetaFeaturesBeta];
|
|
17454
17509
|
export declare const MultiHostSourcesBetaStatusBeta: {
|
|
@@ -20167,6 +20222,12 @@ export interface PendingApprovalBeta {
|
|
|
20167
20222
|
* @memberof PendingApprovalBeta
|
|
20168
20223
|
*/
|
|
20169
20224
|
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
20225
|
+
/**
|
|
20226
|
+
* The privilege level of the requested access item, if applicable.
|
|
20227
|
+
* @type {string}
|
|
20228
|
+
* @memberof PendingApprovalBeta
|
|
20229
|
+
*/
|
|
20230
|
+
'privilegeLevel'?: string | null;
|
|
20170
20231
|
}
|
|
20171
20232
|
/**
|
|
20172
20233
|
* 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.
|
|
@@ -22142,6 +22203,12 @@ export interface RequestedItemStatusBeta {
|
|
|
22142
22203
|
* @memberof RequestedItemStatusBeta
|
|
22143
22204
|
*/
|
|
22144
22205
|
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
22206
|
+
/**
|
|
22207
|
+
* The privilege level of the requested access item, if applicable.
|
|
22208
|
+
* @type {string}
|
|
22209
|
+
* @memberof RequestedItemStatusBeta
|
|
22210
|
+
*/
|
|
22211
|
+
'privilegeLevel'?: string | null;
|
|
22145
22212
|
}
|
|
22146
22213
|
export declare const RequestedItemStatusBetaTypeBeta: {
|
|
22147
22214
|
readonly AccessProfile: "ACCESS_PROFILE";
|
|
@@ -22610,6 +22677,61 @@ export interface RightPadBeta {
|
|
|
22610
22677
|
[key: string]: any;
|
|
22611
22678
|
};
|
|
22612
22679
|
}
|
|
22680
|
+
/**
|
|
22681
|
+
* The identity that performed the assignment. This could be blank or system
|
|
22682
|
+
* @export
|
|
22683
|
+
* @interface RoleAssignmentDtoAssignerBeta
|
|
22684
|
+
*/
|
|
22685
|
+
export interface RoleAssignmentDtoAssignerBeta {
|
|
22686
|
+
/**
|
|
22687
|
+
* Object type
|
|
22688
|
+
* @type {string}
|
|
22689
|
+
* @memberof RoleAssignmentDtoAssignerBeta
|
|
22690
|
+
*/
|
|
22691
|
+
'type'?: RoleAssignmentDtoAssignerBetaTypeBeta;
|
|
22692
|
+
/**
|
|
22693
|
+
* ID of the object to which this reference applies
|
|
22694
|
+
* @type {string}
|
|
22695
|
+
* @memberof RoleAssignmentDtoAssignerBeta
|
|
22696
|
+
*/
|
|
22697
|
+
'id'?: string;
|
|
22698
|
+
/**
|
|
22699
|
+
* Human-readable display name of the object to which this reference applies
|
|
22700
|
+
* @type {string}
|
|
22701
|
+
* @memberof RoleAssignmentDtoAssignerBeta
|
|
22702
|
+
*/
|
|
22703
|
+
'name'?: string | null;
|
|
22704
|
+
}
|
|
22705
|
+
export declare const RoleAssignmentDtoAssignerBetaTypeBeta: {
|
|
22706
|
+
readonly Identity: "IDENTITY";
|
|
22707
|
+
readonly Unknown: "UNKNOWN";
|
|
22708
|
+
};
|
|
22709
|
+
export type RoleAssignmentDtoAssignerBetaTypeBeta = typeof RoleAssignmentDtoAssignerBetaTypeBeta[keyof typeof RoleAssignmentDtoAssignerBetaTypeBeta];
|
|
22710
|
+
/**
|
|
22711
|
+
*
|
|
22712
|
+
* @export
|
|
22713
|
+
* @interface RoleAssignmentDtoAssignmentContextBeta
|
|
22714
|
+
*/
|
|
22715
|
+
export interface RoleAssignmentDtoAssignmentContextBeta {
|
|
22716
|
+
/**
|
|
22717
|
+
*
|
|
22718
|
+
* @type {AccessRequestContextBeta}
|
|
22719
|
+
* @memberof RoleAssignmentDtoAssignmentContextBeta
|
|
22720
|
+
*/
|
|
22721
|
+
'requested'?: AccessRequestContextBeta;
|
|
22722
|
+
/**
|
|
22723
|
+
*
|
|
22724
|
+
* @type {Array<RoleMatchDtoBeta>}
|
|
22725
|
+
* @memberof RoleAssignmentDtoAssignmentContextBeta
|
|
22726
|
+
*/
|
|
22727
|
+
'matched'?: Array<RoleMatchDtoBeta>;
|
|
22728
|
+
/**
|
|
22729
|
+
* Date that the assignment will was evaluated
|
|
22730
|
+
* @type {string}
|
|
22731
|
+
* @memberof RoleAssignmentDtoAssignmentContextBeta
|
|
22732
|
+
*/
|
|
22733
|
+
'computedDate'?: string;
|
|
22734
|
+
}
|
|
22613
22735
|
/**
|
|
22614
22736
|
*
|
|
22615
22737
|
* @export
|
|
@@ -22624,16 +22746,16 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22624
22746
|
'id'?: string;
|
|
22625
22747
|
/**
|
|
22626
22748
|
*
|
|
22627
|
-
* @type {
|
|
22749
|
+
* @type {BaseRoleReferenceDtoBeta}
|
|
22628
22750
|
* @memberof RoleAssignmentDtoBeta
|
|
22629
22751
|
*/
|
|
22630
|
-
'role'?:
|
|
22752
|
+
'role'?: BaseRoleReferenceDtoBeta;
|
|
22631
22753
|
/**
|
|
22632
22754
|
* Comments added by the user when the assignment was made
|
|
22633
22755
|
* @type {string}
|
|
22634
22756
|
* @memberof RoleAssignmentDtoBeta
|
|
22635
22757
|
*/
|
|
22636
|
-
'comments'?: string;
|
|
22758
|
+
'comments'?: string | null;
|
|
22637
22759
|
/**
|
|
22638
22760
|
* Source describing how this assignment was made
|
|
22639
22761
|
* @type {string}
|
|
@@ -22642,10 +22764,10 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22642
22764
|
'assignmentSource'?: string;
|
|
22643
22765
|
/**
|
|
22644
22766
|
*
|
|
22645
|
-
* @type {
|
|
22767
|
+
* @type {RoleAssignmentDtoAssignerBeta}
|
|
22646
22768
|
* @memberof RoleAssignmentDtoBeta
|
|
22647
22769
|
*/
|
|
22648
|
-
'assigner'?:
|
|
22770
|
+
'assigner'?: RoleAssignmentDtoAssignerBeta;
|
|
22649
22771
|
/**
|
|
22650
22772
|
* Dimensions assigned related to this role
|
|
22651
22773
|
* @type {Array<BaseReferenceDto1Beta>}
|
|
@@ -22654,10 +22776,10 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22654
22776
|
'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
|
|
22655
22777
|
/**
|
|
22656
22778
|
*
|
|
22657
|
-
* @type {
|
|
22779
|
+
* @type {RoleAssignmentDtoAssignmentContextBeta}
|
|
22658
22780
|
* @memberof RoleAssignmentDtoBeta
|
|
22659
22781
|
*/
|
|
22660
|
-
'assignmentContext'?:
|
|
22782
|
+
'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
|
|
22661
22783
|
/**
|
|
22662
22784
|
*
|
|
22663
22785
|
* @type {Array<RoleTargetDtoBeta>}
|
|
@@ -22669,7 +22791,13 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22669
22791
|
* @type {string}
|
|
22670
22792
|
* @memberof RoleAssignmentDtoBeta
|
|
22671
22793
|
*/
|
|
22672
|
-
'removeDate'?: string;
|
|
22794
|
+
'removeDate'?: string | null;
|
|
22795
|
+
/**
|
|
22796
|
+
* Date that the assignment was added
|
|
22797
|
+
* @type {string}
|
|
22798
|
+
* @memberof RoleAssignmentDtoBeta
|
|
22799
|
+
*/
|
|
22800
|
+
'addedDate'?: string;
|
|
22673
22801
|
}
|
|
22674
22802
|
/**
|
|
22675
22803
|
*
|
|
@@ -22689,6 +22817,12 @@ export interface RoleAssignmentRefBeta {
|
|
|
22689
22817
|
* @memberof RoleAssignmentRefBeta
|
|
22690
22818
|
*/
|
|
22691
22819
|
'role'?: BaseReferenceDto1Beta;
|
|
22820
|
+
/**
|
|
22821
|
+
* Date that the assignment was added
|
|
22822
|
+
* @type {string}
|
|
22823
|
+
* @memberof RoleAssignmentRefBeta
|
|
22824
|
+
*/
|
|
22825
|
+
'addedDate'?: string;
|
|
22692
22826
|
}
|
|
22693
22827
|
/**
|
|
22694
22828
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -25002,6 +25136,7 @@ export declare const SchemaBetaFeaturesBeta: {
|
|
|
25002
25136
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
25003
25137
|
readonly UsesUuid: "USES_UUID";
|
|
25004
25138
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
25139
|
+
readonly Delete: "DELETE";
|
|
25005
25140
|
};
|
|
25006
25141
|
export type SchemaBetaFeaturesBeta = typeof SchemaBetaFeaturesBeta[keyof typeof SchemaBetaFeaturesBeta];
|
|
25007
25142
|
/**
|
|
@@ -27666,6 +27801,7 @@ export declare const SourceBetaFeaturesBeta: {
|
|
|
27666
27801
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
27667
27802
|
readonly UsesUuid: "USES_UUID";
|
|
27668
27803
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
27804
|
+
readonly Delete: "DELETE";
|
|
27669
27805
|
};
|
|
27670
27806
|
export type SourceBetaFeaturesBeta = typeof SourceBetaFeaturesBeta[keyof typeof SourceBetaFeaturesBeta];
|
|
27671
27807
|
export declare const SourceBetaStatusBeta: {
|
|
@@ -31239,143 +31375,6 @@ export interface ValueBeta {
|
|
|
31239
31375
|
*/
|
|
31240
31376
|
'value'?: string;
|
|
31241
31377
|
}
|
|
31242
|
-
/**
|
|
31243
|
-
*
|
|
31244
|
-
* @export
|
|
31245
|
-
* @interface VendorConnectorMappingBeta
|
|
31246
|
-
*/
|
|
31247
|
-
export interface VendorConnectorMappingBeta {
|
|
31248
|
-
/**
|
|
31249
|
-
* The unique identifier for the vendor-connector mapping.
|
|
31250
|
-
* @type {string}
|
|
31251
|
-
* @memberof VendorConnectorMappingBeta
|
|
31252
|
-
*/
|
|
31253
|
-
'id'?: string;
|
|
31254
|
-
/**
|
|
31255
|
-
* The name of the vendor.
|
|
31256
|
-
* @type {string}
|
|
31257
|
-
* @memberof VendorConnectorMappingBeta
|
|
31258
|
-
*/
|
|
31259
|
-
'vendor'?: string;
|
|
31260
|
-
/**
|
|
31261
|
-
* The name of the connector.
|
|
31262
|
-
* @type {string}
|
|
31263
|
-
* @memberof VendorConnectorMappingBeta
|
|
31264
|
-
*/
|
|
31265
|
-
'connector'?: string;
|
|
31266
|
-
/**
|
|
31267
|
-
* The creation timestamp of the mapping.
|
|
31268
|
-
* @type {string}
|
|
31269
|
-
* @memberof VendorConnectorMappingBeta
|
|
31270
|
-
*/
|
|
31271
|
-
'createdAt'?: string;
|
|
31272
|
-
/**
|
|
31273
|
-
* The identifier of the user who created the mapping.
|
|
31274
|
-
* @type {string}
|
|
31275
|
-
* @memberof VendorConnectorMappingBeta
|
|
31276
|
-
*/
|
|
31277
|
-
'createdBy'?: string;
|
|
31278
|
-
/**
|
|
31279
|
-
*
|
|
31280
|
-
* @type {VendorConnectorMappingUpdatedAtBeta}
|
|
31281
|
-
* @memberof VendorConnectorMappingBeta
|
|
31282
|
-
*/
|
|
31283
|
-
'updatedAt'?: VendorConnectorMappingUpdatedAtBeta | null;
|
|
31284
|
-
/**
|
|
31285
|
-
*
|
|
31286
|
-
* @type {VendorConnectorMappingUpdatedByBeta}
|
|
31287
|
-
* @memberof VendorConnectorMappingBeta
|
|
31288
|
-
*/
|
|
31289
|
-
'updatedBy'?: VendorConnectorMappingUpdatedByBeta | null;
|
|
31290
|
-
/**
|
|
31291
|
-
*
|
|
31292
|
-
* @type {VendorConnectorMappingDeletedAtBeta}
|
|
31293
|
-
* @memberof VendorConnectorMappingBeta
|
|
31294
|
-
*/
|
|
31295
|
-
'deletedAt'?: VendorConnectorMappingDeletedAtBeta | null;
|
|
31296
|
-
/**
|
|
31297
|
-
*
|
|
31298
|
-
* @type {VendorConnectorMappingDeletedByBeta}
|
|
31299
|
-
* @memberof VendorConnectorMappingBeta
|
|
31300
|
-
*/
|
|
31301
|
-
'deletedBy'?: VendorConnectorMappingDeletedByBeta | null;
|
|
31302
|
-
}
|
|
31303
|
-
/**
|
|
31304
|
-
* An object representing the nullable timestamp of when the mapping was deleted.
|
|
31305
|
-
* @export
|
|
31306
|
-
* @interface VendorConnectorMappingDeletedAtBeta
|
|
31307
|
-
*/
|
|
31308
|
-
export interface VendorConnectorMappingDeletedAtBeta {
|
|
31309
|
-
/**
|
|
31310
|
-
* The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
|
|
31311
|
-
* @type {string}
|
|
31312
|
-
* @memberof VendorConnectorMappingDeletedAtBeta
|
|
31313
|
-
*/
|
|
31314
|
-
'Time'?: string;
|
|
31315
|
-
/**
|
|
31316
|
-
* A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
|
|
31317
|
-
* @type {boolean}
|
|
31318
|
-
* @memberof VendorConnectorMappingDeletedAtBeta
|
|
31319
|
-
*/
|
|
31320
|
-
'Valid'?: boolean;
|
|
31321
|
-
}
|
|
31322
|
-
/**
|
|
31323
|
-
* An object representing the nullable identifier of the user who deleted the mapping.
|
|
31324
|
-
* @export
|
|
31325
|
-
* @interface VendorConnectorMappingDeletedByBeta
|
|
31326
|
-
*/
|
|
31327
|
-
export interface VendorConnectorMappingDeletedByBeta {
|
|
31328
|
-
/**
|
|
31329
|
-
* The identifier of the user who deleted the mapping, if applicable.
|
|
31330
|
-
* @type {string}
|
|
31331
|
-
* @memberof VendorConnectorMappingDeletedByBeta
|
|
31332
|
-
*/
|
|
31333
|
-
'String'?: string;
|
|
31334
|
-
/**
|
|
31335
|
-
* A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
|
|
31336
|
-
* @type {boolean}
|
|
31337
|
-
* @memberof VendorConnectorMappingDeletedByBeta
|
|
31338
|
-
*/
|
|
31339
|
-
'Valid'?: boolean;
|
|
31340
|
-
}
|
|
31341
|
-
/**
|
|
31342
|
-
* An object representing the nullable timestamp of the last update.
|
|
31343
|
-
* @export
|
|
31344
|
-
* @interface VendorConnectorMappingUpdatedAtBeta
|
|
31345
|
-
*/
|
|
31346
|
-
export interface VendorConnectorMappingUpdatedAtBeta {
|
|
31347
|
-
/**
|
|
31348
|
-
* The timestamp when the mapping was last updated, represented in ISO 8601 format.
|
|
31349
|
-
* @type {string}
|
|
31350
|
-
* @memberof VendorConnectorMappingUpdatedAtBeta
|
|
31351
|
-
*/
|
|
31352
|
-
'Time'?: string;
|
|
31353
|
-
/**
|
|
31354
|
-
* A flag indicating if the \'Time\' field is set and valid.
|
|
31355
|
-
* @type {boolean}
|
|
31356
|
-
* @memberof VendorConnectorMappingUpdatedAtBeta
|
|
31357
|
-
*/
|
|
31358
|
-
'Valid'?: boolean;
|
|
31359
|
-
}
|
|
31360
|
-
/**
|
|
31361
|
-
* An object representing the nullable identifier of the user who last updated the mapping.
|
|
31362
|
-
* @export
|
|
31363
|
-
* @interface VendorConnectorMappingUpdatedByBeta
|
|
31364
|
-
*/
|
|
31365
|
-
export interface VendorConnectorMappingUpdatedByBeta {
|
|
31366
|
-
/**
|
|
31367
|
-
* The identifier of the user who last updated the mapping, if available.
|
|
31368
|
-
* @type {string}
|
|
31369
|
-
* @memberof VendorConnectorMappingUpdatedByBeta
|
|
31370
|
-
*/
|
|
31371
|
-
'String'?: string;
|
|
31372
|
-
/**
|
|
31373
|
-
* A flag indicating if the \'String\' field is set and valid.
|
|
31374
|
-
* @type {boolean}
|
|
31375
|
-
* @memberof VendorConnectorMappingUpdatedByBeta
|
|
31376
|
-
*/
|
|
31377
|
-
'Valid'?: boolean;
|
|
31378
|
-
}
|
|
31379
31378
|
/**
|
|
31380
31379
|
*
|
|
31381
31380
|
* @export
|
|
@@ -34044,7 +34043,7 @@ export declare const AccessRequestsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
34044
34043
|
*/
|
|
34045
34044
|
cancelAccessRequest: (cancelAccessRequestBeta: CancelAccessRequestBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34046
34045
|
/**
|
|
34047
|
-
* 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/
|
|
34046
|
+
* 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.
|
|
34048
34047
|
* @summary Close access request
|
|
34049
34048
|
* @param {CloseAccessRequestBeta} closeAccessRequestBeta
|
|
34050
34049
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34106,7 +34105,7 @@ export declare const AccessRequestsBetaApiFp: (configuration?: Configuration) =>
|
|
|
34106
34105
|
*/
|
|
34107
34106
|
cancelAccessRequest(cancelAccessRequestBeta: CancelAccessRequestBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
34108
34107
|
/**
|
|
34109
|
-
* 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/
|
|
34108
|
+
* 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.
|
|
34110
34109
|
* @summary Close access request
|
|
34111
34110
|
* @param {CloseAccessRequestBeta} closeAccessRequestBeta
|
|
34112
34111
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34168,7 +34167,7 @@ export declare const AccessRequestsBetaApiFactory: (configuration?: Configuratio
|
|
|
34168
34167
|
*/
|
|
34169
34168
|
cancelAccessRequest(requestParameters: AccessRequestsBetaApiCancelAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
34170
34169
|
/**
|
|
34171
|
-
* 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/
|
|
34170
|
+
* 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.
|
|
34172
34171
|
* @summary Close access request
|
|
34173
34172
|
* @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
34174
34173
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34343,7 +34342,7 @@ export declare class AccessRequestsBetaApi extends BaseAPI {
|
|
|
34343
34342
|
*/
|
|
34344
34343
|
cancelAccessRequest(requestParameters: AccessRequestsBetaApiCancelAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
34345
34344
|
/**
|
|
34346
|
-
* 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/
|
|
34345
|
+
* 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.
|
|
34347
34346
|
* @summary Close access request
|
|
34348
34347
|
* @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
34349
34348
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -37134,7 +37133,7 @@ export declare const CertificationCampaignsBetaApiAxiosParamCreator: (configurat
|
|
|
37134
37133
|
*/
|
|
37135
37134
|
getCampaignTemplateSchedule: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37136
37135
|
/**
|
|
37137
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
37136
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
37138
37137
|
* @summary List campaign templates
|
|
37139
37138
|
* @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.
|
|
37140
37139
|
* @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.
|
|
@@ -37353,7 +37352,7 @@ export declare const CertificationCampaignsBetaApiFp: (configuration?: Configura
|
|
|
37353
37352
|
*/
|
|
37354
37353
|
getCampaignTemplateSchedule(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduleBeta>>;
|
|
37355
37354
|
/**
|
|
37356
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
37355
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
37357
37356
|
* @summary List campaign templates
|
|
37358
37357
|
* @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.
|
|
37359
37358
|
* @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.
|
|
@@ -37566,7 +37565,7 @@ export declare const CertificationCampaignsBetaApiFactory: (configuration?: Conf
|
|
|
37566
37565
|
*/
|
|
37567
37566
|
getCampaignTemplateSchedule(requestParameters: CertificationCampaignsBetaApiGetCampaignTemplateScheduleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ScheduleBeta>;
|
|
37568
37567
|
/**
|
|
37569
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
37568
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
37570
37569
|
* @summary List campaign templates
|
|
37571
37570
|
* @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
|
|
37572
37571
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -38152,7 +38151,7 @@ export declare class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
38152
38151
|
*/
|
|
38153
38152
|
getCampaignTemplateSchedule(requestParameters: CertificationCampaignsBetaApiGetCampaignTemplateScheduleRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScheduleBeta, any>>;
|
|
38154
38153
|
/**
|
|
38155
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
38154
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
38156
38155
|
* @summary List campaign templates
|
|
38157
38156
|
* @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
|
|
38158
38157
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40458,7 +40457,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40458
40457
|
/**
|
|
40459
40458
|
* This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
|
|
40460
40459
|
* @summary Gets a list of entitlements.
|
|
40461
|
-
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/
|
|
40460
|
+
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
|
|
40462
40461
|
* @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\'s Identity.
|
|
40463
40462
|
* @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
|
|
40464
40463
|
* @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented=false** results in an error.
|
|
@@ -40472,7 +40471,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40472
40471
|
*/
|
|
40473
40472
|
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40474
40473
|
/**
|
|
40475
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
40474
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40476
40475
|
* @summary Patch an entitlement
|
|
40477
40476
|
* @param {string} id ID of the entitlement to patch
|
|
40478
40477
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40498,7 +40497,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40498
40497
|
*/
|
|
40499
40498
|
resetSourceEntitlements: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40500
40499
|
/**
|
|
40501
|
-
* 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 }**`
|
|
40500
|
+
* 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.
|
|
40502
40501
|
* @summary Bulk update an entitlement list
|
|
40503
40502
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40504
40503
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40586,7 +40585,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40586
40585
|
/**
|
|
40587
40586
|
* This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
|
|
40588
40587
|
* @summary Gets a list of entitlements.
|
|
40589
|
-
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/
|
|
40588
|
+
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
|
|
40590
40589
|
* @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\'s Identity.
|
|
40591
40590
|
* @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
|
|
40592
40591
|
* @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented=false** results in an error.
|
|
@@ -40600,7 +40599,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40600
40599
|
*/
|
|
40601
40600
|
listEntitlements(accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementBeta>>>;
|
|
40602
40601
|
/**
|
|
40603
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
40602
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40604
40603
|
* @summary Patch an entitlement
|
|
40605
40604
|
* @param {string} id ID of the entitlement to patch
|
|
40606
40605
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40626,7 +40625,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40626
40625
|
*/
|
|
40627
40626
|
resetSourceEntitlements(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>>;
|
|
40628
40627
|
/**
|
|
40629
|
-
* 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 }**`
|
|
40628
|
+
* 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.
|
|
40630
40629
|
* @summary Bulk update an entitlement list
|
|
40631
40630
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40632
40631
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40705,7 +40704,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
40705
40704
|
*/
|
|
40706
40705
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementBeta>>;
|
|
40707
40706
|
/**
|
|
40708
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
40707
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40709
40708
|
* @summary Patch an entitlement
|
|
40710
40709
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
40711
40710
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40729,7 +40728,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
40729
40728
|
*/
|
|
40730
40729
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>;
|
|
40731
40730
|
/**
|
|
40732
|
-
* 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 }**`
|
|
40731
|
+
* 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.
|
|
40733
40732
|
* @summary Bulk update an entitlement list
|
|
40734
40733
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
40735
40734
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40925,7 +40924,7 @@ export interface EntitlementsBetaApiListEntitlementParentsRequest {
|
|
|
40925
40924
|
*/
|
|
40926
40925
|
export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
40927
40926
|
/**
|
|
40928
|
-
* The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/
|
|
40927
|
+
* The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
|
|
40929
40928
|
* @type {string}
|
|
40930
40929
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
40931
40930
|
*/
|
|
@@ -41124,7 +41123,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41124
41123
|
*/
|
|
41125
41124
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementBeta[], any>>;
|
|
41126
41125
|
/**
|
|
41127
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
41126
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
41128
41127
|
* @summary Patch an entitlement
|
|
41129
41128
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
41130
41129
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41151,7 +41150,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41151
41150
|
*/
|
|
41152
41151
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoBeta, any>>;
|
|
41153
41152
|
/**
|
|
41154
|
-
* 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 }**`
|
|
41153
|
+
* 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.
|
|
41155
41154
|
* @summary Bulk update an entitlement list
|
|
41156
41155
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
41157
41156
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41234,7 +41233,7 @@ export declare const GovernanceGroupsBetaApiAxiosParamCreator: (configuration?:
|
|
|
41234
41233
|
* This API returns list of Governance Groups
|
|
41235
41234
|
* @summary List governance groups
|
|
41236
41235
|
* @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.
|
|
41237
|
-
* @param {number} [limit]
|
|
41236
|
+
* @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.
|
|
41238
41237
|
* @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.
|
|
41239
41238
|
* @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*
|
|
41240
41239
|
* @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**
|
|
@@ -41335,7 +41334,7 @@ export declare const GovernanceGroupsBetaApiFp: (configuration?: Configuration)
|
|
|
41335
41334
|
* This API returns list of Governance Groups
|
|
41336
41335
|
* @summary List governance groups
|
|
41337
41336
|
* @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.
|
|
41338
|
-
* @param {number} [limit]
|
|
41337
|
+
* @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.
|
|
41339
41338
|
* @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.
|
|
41340
41339
|
* @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*
|
|
41341
41340
|
* @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**
|
|
@@ -41606,7 +41605,7 @@ export interface GovernanceGroupsBetaApiListWorkgroupsRequest {
|
|
|
41606
41605
|
*/
|
|
41607
41606
|
readonly offset?: number;
|
|
41608
41607
|
/**
|
|
41609
|
-
*
|
|
41608
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
41610
41609
|
* @type {number}
|
|
41611
41610
|
* @memberof GovernanceGroupsBetaApiListWorkgroups
|
|
41612
41611
|
*/
|
|
@@ -57068,7 +57067,7 @@ export declare class SODViolationsBetaApi extends BaseAPI {
|
|
|
57068
57067
|
*/
|
|
57069
57068
|
export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
57070
57069
|
/**
|
|
57071
|
-
* 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/
|
|
57070
|
+
* 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).
|
|
57072
57071
|
* @summary Initiates configuration objects export job
|
|
57073
57072
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
57074
57073
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57100,7 +57099,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
57100
57099
|
*/
|
|
57101
57100
|
getSpConfigImport: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57102
57101
|
/**
|
|
57103
|
-
* 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/
|
|
57102
|
+
* 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).
|
|
57104
57103
|
* @summary Get import job status
|
|
57105
57104
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
57106
57105
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57108,7 +57107,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
57108
57107
|
*/
|
|
57109
57108
|
getSpConfigImportStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57110
57109
|
/**
|
|
57111
|
-
* 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/
|
|
57110
|
+
* 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).
|
|
57112
57111
|
* @summary Initiates configuration objects import job
|
|
57113
57112
|
* @param {File} data JSON file containing the objects to be imported.
|
|
57114
57113
|
* @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.
|
|
@@ -57131,7 +57130,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
57131
57130
|
*/
|
|
57132
57131
|
export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
57133
57132
|
/**
|
|
57134
|
-
* 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/
|
|
57133
|
+
* 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).
|
|
57135
57134
|
* @summary Initiates configuration objects export job
|
|
57136
57135
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
57137
57136
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57163,7 +57162,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
57163
57162
|
*/
|
|
57164
57163
|
getSpConfigImport(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportResultsBeta>>;
|
|
57165
57164
|
/**
|
|
57166
|
-
* 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/
|
|
57165
|
+
* 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).
|
|
57167
57166
|
* @summary Get import job status
|
|
57168
57167
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
57169
57168
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57171,7 +57170,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
57171
57170
|
*/
|
|
57172
57171
|
getSpConfigImportStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportJobStatusBeta>>;
|
|
57173
57172
|
/**
|
|
57174
|
-
* 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/
|
|
57173
|
+
* 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).
|
|
57175
57174
|
* @summary Initiates configuration objects import job
|
|
57176
57175
|
* @param {File} data JSON file containing the objects to be imported.
|
|
57177
57176
|
* @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.
|
|
@@ -57194,7 +57193,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
57194
57193
|
*/
|
|
57195
57194
|
export declare const SPConfigBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
57196
57195
|
/**
|
|
57197
|
-
* 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/
|
|
57196
|
+
* 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).
|
|
57198
57197
|
* @summary Initiates configuration objects export job
|
|
57199
57198
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
57200
57199
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57226,7 +57225,7 @@ export declare const SPConfigBetaApiFactory: (configuration?: Configuration, bas
|
|
|
57226
57225
|
*/
|
|
57227
57226
|
getSpConfigImport(requestParameters: SPConfigBetaApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportResultsBeta>;
|
|
57228
57227
|
/**
|
|
57229
|
-
* 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/
|
|
57228
|
+
* 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).
|
|
57230
57229
|
* @summary Get import job status
|
|
57231
57230
|
* @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
57232
57231
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57234,7 +57233,7 @@ export declare const SPConfigBetaApiFactory: (configuration?: Configuration, bas
|
|
|
57234
57233
|
*/
|
|
57235
57234
|
getSpConfigImportStatus(requestParameters: SPConfigBetaApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportJobStatusBeta>;
|
|
57236
57235
|
/**
|
|
57237
|
-
* 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/
|
|
57236
|
+
* 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).
|
|
57238
57237
|
* @summary Initiates configuration objects import job
|
|
57239
57238
|
* @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
|
|
57240
57239
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57347,7 +57346,7 @@ export interface SPConfigBetaApiImportSpConfigRequest {
|
|
|
57347
57346
|
*/
|
|
57348
57347
|
export declare class SPConfigBetaApi extends BaseAPI {
|
|
57349
57348
|
/**
|
|
57350
|
-
* 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/
|
|
57349
|
+
* 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).
|
|
57351
57350
|
* @summary Initiates configuration objects export job
|
|
57352
57351
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
57353
57352
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57383,7 +57382,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
57383
57382
|
*/
|
|
57384
57383
|
getSpConfigImport(requestParameters: SPConfigBetaApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportResultsBeta, any>>;
|
|
57385
57384
|
/**
|
|
57386
|
-
* 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/
|
|
57385
|
+
* 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).
|
|
57387
57386
|
* @summary Get import job status
|
|
57388
57387
|
* @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
57389
57388
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57392,7 +57391,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
57392
57391
|
*/
|
|
57393
57392
|
getSpConfigImportStatus(requestParameters: SPConfigBetaApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportJobStatusBeta, any>>;
|
|
57394
57393
|
/**
|
|
57395
|
-
* 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/
|
|
57394
|
+
* 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).
|
|
57396
57395
|
* @summary Initiates configuration objects import job
|
|
57397
57396
|
* @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
|
|
57398
57397
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58625,7 +58624,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
58625
58624
|
*/
|
|
58626
58625
|
_delete: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58627
58626
|
/**
|
|
58628
|
-
* 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/
|
|
58627
|
+
* 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.
|
|
58629
58628
|
* @summary Create provisioning policy
|
|
58630
58629
|
* @param {string} sourceId The Source id
|
|
58631
58630
|
* @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
|
|
@@ -58893,7 +58892,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
58893
58892
|
*/
|
|
58894
58893
|
putNativeChangeDetectionConfig: (sourceId: string, nativeChangeDetectionConfigBeta: NativeChangeDetectionConfigBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58895
58894
|
/**
|
|
58896
|
-
* 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/
|
|
58895
|
+
* 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.
|
|
58897
58896
|
* @summary Update provisioning policy by usagetype
|
|
58898
58897
|
* @param {string} sourceId The Source ID.
|
|
58899
58898
|
* @param {UsageTypeBeta} 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.
|
|
@@ -58964,7 +58963,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
58964
58963
|
*/
|
|
58965
58964
|
updateProvisioningPoliciesInBulk: (sourceId: string, provisioningPolicyDtoBeta: Array<ProvisioningPolicyDtoBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58966
58965
|
/**
|
|
58967
|
-
* 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/
|
|
58966
|
+
* 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.
|
|
58968
58967
|
* @summary Partial update of provisioning policy
|
|
58969
58968
|
* @param {string} sourceId The Source id.
|
|
58970
58969
|
* @param {UsageTypeBeta} 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.
|
|
@@ -59016,7 +59015,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
59016
59015
|
*/
|
|
59017
59016
|
_delete(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Delete202ResponseBeta>>;
|
|
59018
59017
|
/**
|
|
59019
|
-
* 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/
|
|
59018
|
+
* 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.
|
|
59020
59019
|
* @summary Create provisioning policy
|
|
59021
59020
|
* @param {string} sourceId The Source id
|
|
59022
59021
|
* @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
|
|
@@ -59284,7 +59283,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
59284
59283
|
*/
|
|
59285
59284
|
putNativeChangeDetectionConfig(sourceId: string, nativeChangeDetectionConfigBeta: NativeChangeDetectionConfigBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigBeta>>;
|
|
59286
59285
|
/**
|
|
59287
|
-
* 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/
|
|
59286
|
+
* 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.
|
|
59288
59287
|
* @summary Update provisioning policy by usagetype
|
|
59289
59288
|
* @param {string} sourceId The Source ID.
|
|
59290
59289
|
* @param {UsageTypeBeta} 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.
|
|
@@ -59355,7 +59354,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
59355
59354
|
*/
|
|
59356
59355
|
updateProvisioningPoliciesInBulk(sourceId: string, provisioningPolicyDtoBeta: Array<ProvisioningPolicyDtoBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoBeta>>>;
|
|
59357
59356
|
/**
|
|
59358
|
-
* 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/
|
|
59357
|
+
* 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.
|
|
59359
59358
|
* @summary Partial update of provisioning policy
|
|
59360
59359
|
* @param {string} sourceId The Source id.
|
|
59361
59360
|
* @param {UsageTypeBeta} 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.
|
|
@@ -59407,7 +59406,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
59407
59406
|
*/
|
|
59408
59407
|
_delete(requestParameters: SourcesBetaApiDeleteRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Delete202ResponseBeta>;
|
|
59409
59408
|
/**
|
|
59410
|
-
* 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/
|
|
59409
|
+
* 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.
|
|
59411
59410
|
* @summary Create provisioning policy
|
|
59412
59411
|
* @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59413
59412
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59647,7 +59646,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
59647
59646
|
*/
|
|
59648
59647
|
putNativeChangeDetectionConfig(requestParameters: SourcesBetaApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NativeChangeDetectionConfigBeta>;
|
|
59649
59648
|
/**
|
|
59650
|
-
* 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/
|
|
59649
|
+
* 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.
|
|
59651
59650
|
* @summary Update provisioning policy by usagetype
|
|
59652
59651
|
* @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59653
59652
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59711,7 +59710,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
59711
59710
|
*/
|
|
59712
59711
|
updateProvisioningPoliciesInBulk(requestParameters: SourcesBetaApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDtoBeta>>;
|
|
59713
59712
|
/**
|
|
59714
|
-
* 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/
|
|
59713
|
+
* 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.
|
|
59715
59714
|
* @summary Partial update of provisioning policy
|
|
59716
59715
|
* @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59717
59716
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60565,7 +60564,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
60565
60564
|
*/
|
|
60566
60565
|
_delete(requestParameters: SourcesBetaApiDeleteRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Delete202ResponseBeta, any>>;
|
|
60567
60566
|
/**
|
|
60568
|
-
* 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/
|
|
60567
|
+
* 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.
|
|
60569
60568
|
* @summary Create provisioning policy
|
|
60570
60569
|
* @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60571
60570
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60835,7 +60834,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
60835
60834
|
*/
|
|
60836
60835
|
putNativeChangeDetectionConfig(requestParameters: SourcesBetaApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NativeChangeDetectionConfigBeta, any>>;
|
|
60837
60836
|
/**
|
|
60838
|
-
* 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/
|
|
60837
|
+
* 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.
|
|
60839
60838
|
* @summary Update provisioning policy by usagetype
|
|
60840
60839
|
* @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60841
60840
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60907,7 +60906,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
60907
60906
|
*/
|
|
60908
60907
|
updateProvisioningPoliciesInBulk(requestParameters: SourcesBetaApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningPolicyDtoBeta[], any>>;
|
|
60909
60908
|
/**
|
|
60910
|
-
* 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/
|
|
60909
|
+
* 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.
|
|
60911
60910
|
* @summary Partial update of provisioning policy
|
|
60912
60911
|
* @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60913
60912
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61452,7 +61451,7 @@ export declare const TaggedObjectsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
61452
61451
|
*/
|
|
61453
61452
|
getTaggedObject: (type: GetTaggedObjectTypeBeta, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61454
61453
|
/**
|
|
61455
|
-
* This API returns a list of all tagged objects.
|
|
61454
|
+
* This API returns a list of all tagged objects.
|
|
61456
61455
|
* @summary List tagged objects
|
|
61457
61456
|
* @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.
|
|
61458
61457
|
* @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.
|
|
@@ -61463,7 +61462,7 @@ export declare const TaggedObjectsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
61463
61462
|
*/
|
|
61464
61463
|
listTaggedObjects: (limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61465
61464
|
/**
|
|
61466
|
-
* This API returns a list of all tagged objects by type.
|
|
61465
|
+
* This API returns a list of all tagged objects by type.
|
|
61467
61466
|
* @summary List tagged objects by type
|
|
61468
61467
|
* @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
|
|
61469
61468
|
* @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.
|
|
@@ -61485,7 +61484,7 @@ export declare const TaggedObjectsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
61485
61484
|
*/
|
|
61486
61485
|
putTaggedObject: (type: PutTaggedObjectTypeBeta, id: string, taggedObjectBeta: TaggedObjectBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61487
61486
|
/**
|
|
61488
|
-
* This adds a tag to an object.
|
|
61487
|
+
* This adds a tag to an object.
|
|
61489
61488
|
* @summary Add tag to object
|
|
61490
61489
|
* @param {TaggedObjectBeta} taggedObjectBeta
|
|
61491
61490
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61533,7 +61532,7 @@ export declare const TaggedObjectsBetaApiFp: (configuration?: Configuration) =>
|
|
|
61533
61532
|
*/
|
|
61534
61533
|
getTaggedObject(type: GetTaggedObjectTypeBeta, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectBeta>>;
|
|
61535
61534
|
/**
|
|
61536
|
-
* This API returns a list of all tagged objects.
|
|
61535
|
+
* This API returns a list of all tagged objects.
|
|
61537
61536
|
* @summary List tagged objects
|
|
61538
61537
|
* @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.
|
|
61539
61538
|
* @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.
|
|
@@ -61544,7 +61543,7 @@ export declare const TaggedObjectsBetaApiFp: (configuration?: Configuration) =>
|
|
|
61544
61543
|
*/
|
|
61545
61544
|
listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObjectBeta>>>;
|
|
61546
61545
|
/**
|
|
61547
|
-
* This API returns a list of all tagged objects by type.
|
|
61546
|
+
* This API returns a list of all tagged objects by type.
|
|
61548
61547
|
* @summary List tagged objects by type
|
|
61549
61548
|
* @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
|
|
61550
61549
|
* @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.
|
|
@@ -61566,7 +61565,7 @@ export declare const TaggedObjectsBetaApiFp: (configuration?: Configuration) =>
|
|
|
61566
61565
|
*/
|
|
61567
61566
|
putTaggedObject(type: PutTaggedObjectTypeBeta, id: string, taggedObjectBeta: TaggedObjectBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectBeta>>;
|
|
61568
61567
|
/**
|
|
61569
|
-
* This adds a tag to an object.
|
|
61568
|
+
* This adds a tag to an object.
|
|
61570
61569
|
* @summary Add tag to object
|
|
61571
61570
|
* @param {TaggedObjectBeta} taggedObjectBeta
|
|
61572
61571
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61612,7 +61611,7 @@ export declare const TaggedObjectsBetaApiFactory: (configuration?: Configuration
|
|
|
61612
61611
|
*/
|
|
61613
61612
|
getTaggedObject(requestParameters: TaggedObjectsBetaApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectBeta>;
|
|
61614
61613
|
/**
|
|
61615
|
-
* This API returns a list of all tagged objects.
|
|
61614
|
+
* This API returns a list of all tagged objects.
|
|
61616
61615
|
* @summary List tagged objects
|
|
61617
61616
|
* @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
61618
61617
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61620,7 +61619,7 @@ export declare const TaggedObjectsBetaApiFactory: (configuration?: Configuration
|
|
|
61620
61619
|
*/
|
|
61621
61620
|
listTaggedObjects(requestParameters?: TaggedObjectsBetaApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaggedObjectBeta>>;
|
|
61622
61621
|
/**
|
|
61623
|
-
* This API returns a list of all tagged objects by type.
|
|
61622
|
+
* This API returns a list of all tagged objects by type.
|
|
61624
61623
|
* @summary List tagged objects by type
|
|
61625
61624
|
* @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
61626
61625
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61636,7 +61635,7 @@ export declare const TaggedObjectsBetaApiFactory: (configuration?: Configuration
|
|
|
61636
61635
|
*/
|
|
61637
61636
|
putTaggedObject(requestParameters: TaggedObjectsBetaApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectBeta>;
|
|
61638
61637
|
/**
|
|
61639
|
-
* This adds a tag to an object.
|
|
61638
|
+
* This adds a tag to an object.
|
|
61640
61639
|
* @summary Add tag to object
|
|
61641
61640
|
* @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
61642
61641
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61857,7 +61856,7 @@ export declare class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
61857
61856
|
*/
|
|
61858
61857
|
getTaggedObject(requestParameters: TaggedObjectsBetaApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectBeta, any>>;
|
|
61859
61858
|
/**
|
|
61860
|
-
* This API returns a list of all tagged objects.
|
|
61859
|
+
* This API returns a list of all tagged objects.
|
|
61861
61860
|
* @summary List tagged objects
|
|
61862
61861
|
* @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
61863
61862
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61866,7 +61865,7 @@ export declare class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
61866
61865
|
*/
|
|
61867
61866
|
listTaggedObjects(requestParameters?: TaggedObjectsBetaApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectBeta[], any>>;
|
|
61868
61867
|
/**
|
|
61869
|
-
* This API returns a list of all tagged objects by type.
|
|
61868
|
+
* This API returns a list of all tagged objects by type.
|
|
61870
61869
|
* @summary List tagged objects by type
|
|
61871
61870
|
* @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
61872
61871
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61884,7 +61883,7 @@ export declare class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
61884
61883
|
*/
|
|
61885
61884
|
putTaggedObject(requestParameters: TaggedObjectsBetaApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectBeta, any>>;
|
|
61886
61885
|
/**
|
|
61887
|
-
* This adds a tag to an object.
|
|
61886
|
+
* This adds a tag to an object.
|
|
61888
61887
|
* @summary Add tag to object
|
|
61889
61888
|
* @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
61890
61889
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -63586,153 +63585,6 @@ export declare class UIMetadataBetaApi extends BaseAPI {
|
|
|
63586
63585
|
*/
|
|
63587
63586
|
setTenantUiMetadata(requestParameters: UIMetadataBetaApiSetTenantUiMetadataRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TenantUiMetadataItemResponseBeta, any>>;
|
|
63588
63587
|
}
|
|
63589
|
-
/**
|
|
63590
|
-
* VendorConnectorMappingsBetaApi - axios parameter creator
|
|
63591
|
-
* @export
|
|
63592
|
-
*/
|
|
63593
|
-
export declare const VendorConnectorMappingsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
63594
|
-
/**
|
|
63595
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
63596
|
-
* @summary Create vendor connector mapping
|
|
63597
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63598
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63599
|
-
* @throws {RequiredError}
|
|
63600
|
-
*/
|
|
63601
|
-
createVendorConnectorMapping: (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63602
|
-
/**
|
|
63603
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
63604
|
-
* @summary Delete vendor connector mapping
|
|
63605
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63606
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63607
|
-
* @throws {RequiredError}
|
|
63608
|
-
*/
|
|
63609
|
-
deleteVendorConnectorMapping: (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63610
|
-
/**
|
|
63611
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
63612
|
-
* @summary List vendor connector mappings
|
|
63613
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63614
|
-
* @throws {RequiredError}
|
|
63615
|
-
*/
|
|
63616
|
-
getVendorConnectorMappings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63617
|
-
};
|
|
63618
|
-
/**
|
|
63619
|
-
* VendorConnectorMappingsBetaApi - functional programming interface
|
|
63620
|
-
* @export
|
|
63621
|
-
*/
|
|
63622
|
-
export declare const VendorConnectorMappingsBetaApiFp: (configuration?: Configuration) => {
|
|
63623
|
-
/**
|
|
63624
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
63625
|
-
* @summary Create vendor connector mapping
|
|
63626
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63627
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63628
|
-
* @throws {RequiredError}
|
|
63629
|
-
*/
|
|
63630
|
-
createVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingBeta>>;
|
|
63631
|
-
/**
|
|
63632
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
63633
|
-
* @summary Delete vendor connector mapping
|
|
63634
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63635
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63636
|
-
* @throws {RequiredError}
|
|
63637
|
-
*/
|
|
63638
|
-
deleteVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta>>;
|
|
63639
|
-
/**
|
|
63640
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
63641
|
-
* @summary List vendor connector mappings
|
|
63642
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63643
|
-
* @throws {RequiredError}
|
|
63644
|
-
*/
|
|
63645
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingBeta>>>;
|
|
63646
|
-
};
|
|
63647
|
-
/**
|
|
63648
|
-
* VendorConnectorMappingsBetaApi - factory interface
|
|
63649
|
-
* @export
|
|
63650
|
-
*/
|
|
63651
|
-
export declare const VendorConnectorMappingsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
63652
|
-
/**
|
|
63653
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
63654
|
-
* @summary Create vendor connector mapping
|
|
63655
|
-
* @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
63656
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63657
|
-
* @throws {RequiredError}
|
|
63658
|
-
*/
|
|
63659
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingBeta>;
|
|
63660
|
-
/**
|
|
63661
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
63662
|
-
* @summary Delete vendor connector mapping
|
|
63663
|
-
* @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
63664
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63665
|
-
* @throws {RequiredError}
|
|
63666
|
-
*/
|
|
63667
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta>;
|
|
63668
|
-
/**
|
|
63669
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
63670
|
-
* @summary List vendor connector mappings
|
|
63671
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63672
|
-
* @throws {RequiredError}
|
|
63673
|
-
*/
|
|
63674
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingBeta>>;
|
|
63675
|
-
};
|
|
63676
|
-
/**
|
|
63677
|
-
* Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
|
|
63678
|
-
* @export
|
|
63679
|
-
* @interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest
|
|
63680
|
-
*/
|
|
63681
|
-
export interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest {
|
|
63682
|
-
/**
|
|
63683
|
-
*
|
|
63684
|
-
* @type {VendorConnectorMappingBeta}
|
|
63685
|
-
* @memberof VendorConnectorMappingsBetaApiCreateVendorConnectorMapping
|
|
63686
|
-
*/
|
|
63687
|
-
readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta;
|
|
63688
|
-
}
|
|
63689
|
-
/**
|
|
63690
|
-
* Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
|
|
63691
|
-
* @export
|
|
63692
|
-
* @interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest
|
|
63693
|
-
*/
|
|
63694
|
-
export interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest {
|
|
63695
|
-
/**
|
|
63696
|
-
*
|
|
63697
|
-
* @type {VendorConnectorMappingBeta}
|
|
63698
|
-
* @memberof VendorConnectorMappingsBetaApiDeleteVendorConnectorMapping
|
|
63699
|
-
*/
|
|
63700
|
-
readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta;
|
|
63701
|
-
}
|
|
63702
|
-
/**
|
|
63703
|
-
* VendorConnectorMappingsBetaApi - object-oriented interface
|
|
63704
|
-
* @export
|
|
63705
|
-
* @class VendorConnectorMappingsBetaApi
|
|
63706
|
-
* @extends {BaseAPI}
|
|
63707
|
-
*/
|
|
63708
|
-
export declare class VendorConnectorMappingsBetaApi extends BaseAPI {
|
|
63709
|
-
/**
|
|
63710
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
63711
|
-
* @summary Create vendor connector mapping
|
|
63712
|
-
* @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
63713
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63714
|
-
* @throws {RequiredError}
|
|
63715
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
63716
|
-
*/
|
|
63717
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingBeta, any>>;
|
|
63718
|
-
/**
|
|
63719
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
63720
|
-
* @summary Delete vendor connector mapping
|
|
63721
|
-
* @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
63722
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63723
|
-
* @throws {RequiredError}
|
|
63724
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
63725
|
-
*/
|
|
63726
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteVendorConnectorMapping200ResponseBeta, any>>;
|
|
63727
|
-
/**
|
|
63728
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
63729
|
-
* @summary List vendor connector mappings
|
|
63730
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63731
|
-
* @throws {RequiredError}
|
|
63732
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
63733
|
-
*/
|
|
63734
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingBeta[], any>>;
|
|
63735
|
-
}
|
|
63736
63588
|
/**
|
|
63737
63589
|
* WorkItemsBetaApi - axios parameter creator
|
|
63738
63590
|
* @export
|
|
@@ -65130,7 +64982,7 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
65130
64982
|
*/
|
|
65131
64983
|
testExternalExecuteWorkflow: (id: string, testExternalExecuteWorkflowRequestBeta?: TestExternalExecuteWorkflowRequestBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65132
64984
|
/**
|
|
65133
|
-
* 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/
|
|
64985
|
+
* 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.**
|
|
65134
64986
|
* @summary Test workflow by id
|
|
65135
64987
|
* @param {string} id Id of the workflow
|
|
65136
64988
|
* @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
|
|
@@ -65296,7 +65148,7 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
|
|
|
65296
65148
|
*/
|
|
65297
65149
|
testExternalExecuteWorkflow(id: string, testExternalExecuteWorkflowRequestBeta?: TestExternalExecuteWorkflowRequestBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestExternalExecuteWorkflow200ResponseBeta>>;
|
|
65298
65150
|
/**
|
|
65299
|
-
* 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/
|
|
65151
|
+
* 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.**
|
|
65300
65152
|
* @summary Test workflow by id
|
|
65301
65153
|
* @param {string} id Id of the workflow
|
|
65302
65154
|
* @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
|
|
@@ -65446,7 +65298,7 @@ export declare const WorkflowsBetaApiFactory: (configuration?: Configuration, ba
|
|
|
65446
65298
|
*/
|
|
65447
65299
|
testExternalExecuteWorkflow(requestParameters: WorkflowsBetaApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestExternalExecuteWorkflow200ResponseBeta>;
|
|
65448
65300
|
/**
|
|
65449
|
-
* 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/
|
|
65301
|
+
* 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.**
|
|
65450
65302
|
* @summary Test workflow by id
|
|
65451
65303
|
* @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
|
|
65452
65304
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65937,7 +65789,7 @@ export declare class WorkflowsBetaApi extends BaseAPI {
|
|
|
65937
65789
|
*/
|
|
65938
65790
|
testExternalExecuteWorkflow(requestParameters: WorkflowsBetaApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestExternalExecuteWorkflow200ResponseBeta, any>>;
|
|
65939
65791
|
/**
|
|
65940
|
-
* 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/
|
|
65792
|
+
* 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.**
|
|
65941
65793
|
* @summary Test workflow by id
|
|
65942
65794
|
* @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
|
|
65943
65795
|
* @param {*} [axiosOptions] Override http request option.
|