sailpoint-api-client 1.6.8 → 1.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +343 -1123
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +321 -840
- package/dist/beta/api.js +113 -699
- 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/generic/api.d.ts +386 -0
- package/dist/generic/api.js +689 -0
- package/dist/generic/api.js.map +1 -0
- package/dist/generic/base.d.ts +66 -0
- package/dist/generic/base.js +89 -0
- package/dist/generic/base.js.map +1 -0
- package/dist/generic/common.d.ts +65 -0
- package/dist/generic/common.js +260 -0
- package/dist/generic/common.js.map +1 -0
- package/dist/generic/configuration.d.ts +91 -0
- package/dist/generic/configuration.js +46 -0
- package/dist/generic/configuration.js.map +1 -0
- package/dist/generic/index.d.ts +13 -0
- package/dist/generic/index.js +32 -0
- package/dist/generic/index.js.map +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/paginator.d.ts +3 -1
- package/dist/paginator.js +146 -0
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +1536 -511
- package/dist/v2024/api.js +5111 -4045
- 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 +5099 -632
- package/dist/v2025/api.js +11068 -7033
- 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 +122 -444
- package/dist/v3/api.js +88 -407
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- package/generic/.openapi-generator/FILES +11 -0
- package/generic/.openapi-generator/VERSION +1 -0
- package/generic/.openapi-generator-ignore +23 -0
- package/generic/README.md +46 -0
- package/generic/api.ts +681 -0
- package/generic/base.ts +86 -0
- package/generic/common.ts +159 -0
- package/generic/configuration.ts +110 -0
- package/generic/git_push.sh +57 -0
- package/generic/index.ts +18 -0
- package/generic/package.json +34 -0
- package/generic/tsconfig.json +21 -0
- package/index.ts +9 -7
- package/package.json +1 -1
- package/paginator.ts +137 -11
- package/v2024/README.md +2 -2
- package/v2024/api.ts +2323 -771
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +7689 -1221
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +146 -611
- 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";
|
|
@@ -3897,199 +3910,6 @@ export interface AppAccountDetailsSourceAccountBeta {
|
|
|
3897
3910
|
*/
|
|
3898
3911
|
'sourceDisplayName'?: string;
|
|
3899
3912
|
}
|
|
3900
|
-
/**
|
|
3901
|
-
* Batch properties if an approval is sent via batching.
|
|
3902
|
-
* @export
|
|
3903
|
-
* @interface ApprovalBatchBeta
|
|
3904
|
-
*/
|
|
3905
|
-
export interface ApprovalBatchBeta {
|
|
3906
|
-
/**
|
|
3907
|
-
* ID of the batch
|
|
3908
|
-
* @type {string}
|
|
3909
|
-
* @memberof ApprovalBatchBeta
|
|
3910
|
-
*/
|
|
3911
|
-
'batchId'?: string;
|
|
3912
|
-
/**
|
|
3913
|
-
* How many approvals are going to be in this batch. Defaults to 1 if not provided.
|
|
3914
|
-
* @type {number}
|
|
3915
|
-
* @memberof ApprovalBatchBeta
|
|
3916
|
-
*/
|
|
3917
|
-
'batchSize'?: number;
|
|
3918
|
-
}
|
|
3919
|
-
/**
|
|
3920
|
-
* Approval Object
|
|
3921
|
-
* @export
|
|
3922
|
-
* @interface ApprovalBeta
|
|
3923
|
-
*/
|
|
3924
|
-
export interface ApprovalBeta {
|
|
3925
|
-
/**
|
|
3926
|
-
* The Approval ID
|
|
3927
|
-
* @type {string}
|
|
3928
|
-
* @memberof ApprovalBeta
|
|
3929
|
-
*/
|
|
3930
|
-
'approvalId'?: string;
|
|
3931
|
-
/**
|
|
3932
|
-
* Object representation of an approver of an approval
|
|
3933
|
-
* @type {Array<ApprovalIdentityBeta>}
|
|
3934
|
-
* @memberof ApprovalBeta
|
|
3935
|
-
*/
|
|
3936
|
-
'approvers'?: Array<ApprovalIdentityBeta>;
|
|
3937
|
-
/**
|
|
3938
|
-
* Date the approval was created
|
|
3939
|
-
* @type {string}
|
|
3940
|
-
* @memberof ApprovalBeta
|
|
3941
|
-
*/
|
|
3942
|
-
'createdDate'?: string;
|
|
3943
|
-
/**
|
|
3944
|
-
* Type of approval
|
|
3945
|
-
* @type {string}
|
|
3946
|
-
* @memberof ApprovalBeta
|
|
3947
|
-
*/
|
|
3948
|
-
'type'?: string;
|
|
3949
|
-
/**
|
|
3950
|
-
* The name of the approval for a given locale
|
|
3951
|
-
* @type {Array<ApprovalNameBeta>}
|
|
3952
|
-
* @memberof ApprovalBeta
|
|
3953
|
-
*/
|
|
3954
|
-
'name'?: Array<ApprovalNameBeta>;
|
|
3955
|
-
/**
|
|
3956
|
-
* The name of the approval for a given locale
|
|
3957
|
-
* @type {ApprovalBatchBeta}
|
|
3958
|
-
* @memberof ApprovalBeta
|
|
3959
|
-
*/
|
|
3960
|
-
'batchRequest'?: ApprovalBatchBeta;
|
|
3961
|
-
/**
|
|
3962
|
-
* The description of the approval for a given locale
|
|
3963
|
-
* @type {Array<ApprovalDescriptionBeta>}
|
|
3964
|
-
* @memberof ApprovalBeta
|
|
3965
|
-
*/
|
|
3966
|
-
'description'?: Array<ApprovalDescriptionBeta>;
|
|
3967
|
-
/**
|
|
3968
|
-
* The priority of the approval
|
|
3969
|
-
* @type {string}
|
|
3970
|
-
* @memberof ApprovalBeta
|
|
3971
|
-
*/
|
|
3972
|
-
'priority'?: ApprovalBetaPriorityBeta;
|
|
3973
|
-
/**
|
|
3974
|
-
* Object representation of the requester of the approval
|
|
3975
|
-
* @type {ApprovalIdentityBeta}
|
|
3976
|
-
* @memberof ApprovalBeta
|
|
3977
|
-
*/
|
|
3978
|
-
'requester'?: ApprovalIdentityBeta;
|
|
3979
|
-
/**
|
|
3980
|
-
* Object representation of a comment on the approval
|
|
3981
|
-
* @type {Array<ApprovalCommentBeta>}
|
|
3982
|
-
* @memberof ApprovalBeta
|
|
3983
|
-
*/
|
|
3984
|
-
'comments'?: Array<ApprovalCommentBeta>;
|
|
3985
|
-
/**
|
|
3986
|
-
* Array of approvers who have approved the approval
|
|
3987
|
-
* @type {Array<ApprovalIdentityBeta>}
|
|
3988
|
-
* @memberof ApprovalBeta
|
|
3989
|
-
*/
|
|
3990
|
-
'approvedBy'?: Array<ApprovalIdentityBeta>;
|
|
3991
|
-
/**
|
|
3992
|
-
* Array of approvers who have rejected the approval
|
|
3993
|
-
* @type {Array<ApprovalIdentityBeta>}
|
|
3994
|
-
* @memberof ApprovalBeta
|
|
3995
|
-
*/
|
|
3996
|
-
'rejectedBy'?: Array<ApprovalIdentityBeta>;
|
|
3997
|
-
/**
|
|
3998
|
-
* Date the approval was completed
|
|
3999
|
-
* @type {string}
|
|
4000
|
-
* @memberof ApprovalBeta
|
|
4001
|
-
*/
|
|
4002
|
-
'completedDate'?: string;
|
|
4003
|
-
/**
|
|
4004
|
-
* Criteria that needs to be met for an approval to be marked as approved
|
|
4005
|
-
* @type {string}
|
|
4006
|
-
* @memberof ApprovalBeta
|
|
4007
|
-
*/
|
|
4008
|
-
'approvalCriteria'?: ApprovalBetaApprovalCriteriaBeta;
|
|
4009
|
-
/**
|
|
4010
|
-
* The current status of the approval
|
|
4011
|
-
* @type {string}
|
|
4012
|
-
* @memberof ApprovalBeta
|
|
4013
|
-
*/
|
|
4014
|
-
'status'?: ApprovalBetaStatusBeta;
|
|
4015
|
-
/**
|
|
4016
|
-
* Json string representing additional attributes known about the object to be approved.
|
|
4017
|
-
* @type {string}
|
|
4018
|
-
* @memberof ApprovalBeta
|
|
4019
|
-
*/
|
|
4020
|
-
'additionalAttributes'?: string;
|
|
4021
|
-
/**
|
|
4022
|
-
* Reference data related to the approval
|
|
4023
|
-
* @type {Array<ApprovalReferenceBeta>}
|
|
4024
|
-
* @memberof ApprovalBeta
|
|
4025
|
-
*/
|
|
4026
|
-
'referenceData'?: Array<ApprovalReferenceBeta>;
|
|
4027
|
-
}
|
|
4028
|
-
export declare const ApprovalBetaPriorityBeta: {
|
|
4029
|
-
readonly High: "HIGH";
|
|
4030
|
-
readonly Medium: "MEDIUM";
|
|
4031
|
-
readonly Low: "LOW";
|
|
4032
|
-
};
|
|
4033
|
-
export type ApprovalBetaPriorityBeta = typeof ApprovalBetaPriorityBeta[keyof typeof ApprovalBetaPriorityBeta];
|
|
4034
|
-
export declare const ApprovalBetaApprovalCriteriaBeta: {
|
|
4035
|
-
readonly Single: "SINGLE";
|
|
4036
|
-
readonly Double: "DOUBLE";
|
|
4037
|
-
readonly Triple: "TRIPLE";
|
|
4038
|
-
readonly Quarter: "QUARTER";
|
|
4039
|
-
readonly Half: "HALF";
|
|
4040
|
-
readonly All: "ALL";
|
|
4041
|
-
};
|
|
4042
|
-
export type ApprovalBetaApprovalCriteriaBeta = typeof ApprovalBetaApprovalCriteriaBeta[keyof typeof ApprovalBetaApprovalCriteriaBeta];
|
|
4043
|
-
export declare const ApprovalBetaStatusBeta: {
|
|
4044
|
-
readonly Pending: "PENDING";
|
|
4045
|
-
readonly Approved: "APPROVED";
|
|
4046
|
-
readonly Rejected: "REJECTED";
|
|
4047
|
-
};
|
|
4048
|
-
export type ApprovalBetaStatusBeta = typeof ApprovalBetaStatusBeta[keyof typeof ApprovalBetaStatusBeta];
|
|
4049
|
-
/**
|
|
4050
|
-
* Comments Object
|
|
4051
|
-
* @export
|
|
4052
|
-
* @interface ApprovalCommentBeta
|
|
4053
|
-
*/
|
|
4054
|
-
export interface ApprovalCommentBeta {
|
|
4055
|
-
/**
|
|
4056
|
-
*
|
|
4057
|
-
* @type {ApprovalIdentityBeta}
|
|
4058
|
-
* @memberof ApprovalCommentBeta
|
|
4059
|
-
*/
|
|
4060
|
-
'author'?: ApprovalIdentityBeta;
|
|
4061
|
-
/**
|
|
4062
|
-
* Comment to be left on an approval
|
|
4063
|
-
* @type {string}
|
|
4064
|
-
* @memberof ApprovalCommentBeta
|
|
4065
|
-
*/
|
|
4066
|
-
'comment'?: string;
|
|
4067
|
-
/**
|
|
4068
|
-
* Date the comment was created
|
|
4069
|
-
* @type {string}
|
|
4070
|
-
* @memberof ApprovalCommentBeta
|
|
4071
|
-
*/
|
|
4072
|
-
'createdDate'?: string;
|
|
4073
|
-
}
|
|
4074
|
-
/**
|
|
4075
|
-
* The description of what the approval is asking for
|
|
4076
|
-
* @export
|
|
4077
|
-
* @interface ApprovalDescriptionBeta
|
|
4078
|
-
*/
|
|
4079
|
-
export interface ApprovalDescriptionBeta {
|
|
4080
|
-
/**
|
|
4081
|
-
* The description of what the approval is asking for
|
|
4082
|
-
* @type {string}
|
|
4083
|
-
* @memberof ApprovalDescriptionBeta
|
|
4084
|
-
*/
|
|
4085
|
-
'value'?: string;
|
|
4086
|
-
/**
|
|
4087
|
-
* What locale the description of the approval is using
|
|
4088
|
-
* @type {string}
|
|
4089
|
-
* @memberof ApprovalDescriptionBeta
|
|
4090
|
-
*/
|
|
4091
|
-
'locale'?: string;
|
|
4092
|
-
}
|
|
4093
3913
|
/**
|
|
4094
3914
|
*
|
|
4095
3915
|
* @export
|
|
@@ -4133,35 +3953,6 @@ export interface ApprovalForwardHistoryBeta {
|
|
|
4133
3953
|
*/
|
|
4134
3954
|
'reassignmentType'?: ReassignmentTypeBeta;
|
|
4135
3955
|
}
|
|
4136
|
-
/**
|
|
4137
|
-
* Identity Object
|
|
4138
|
-
* @export
|
|
4139
|
-
* @interface ApprovalIdentityBeta
|
|
4140
|
-
*/
|
|
4141
|
-
export interface ApprovalIdentityBeta {
|
|
4142
|
-
/**
|
|
4143
|
-
* The identity ID
|
|
4144
|
-
* @type {string}
|
|
4145
|
-
* @memberof ApprovalIdentityBeta
|
|
4146
|
-
*/
|
|
4147
|
-
'id'?: string;
|
|
4148
|
-
/**
|
|
4149
|
-
* Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc
|
|
4150
|
-
* @type {string}
|
|
4151
|
-
* @memberof ApprovalIdentityBeta
|
|
4152
|
-
*/
|
|
4153
|
-
'type'?: ApprovalIdentityBetaTypeBeta;
|
|
4154
|
-
/**
|
|
4155
|
-
* Name of the identity
|
|
4156
|
-
* @type {string}
|
|
4157
|
-
* @memberof ApprovalIdentityBeta
|
|
4158
|
-
*/
|
|
4159
|
-
'name'?: string;
|
|
4160
|
-
}
|
|
4161
|
-
export declare const ApprovalIdentityBetaTypeBeta: {
|
|
4162
|
-
readonly Identity: "IDENTITY";
|
|
4163
|
-
};
|
|
4164
|
-
export type ApprovalIdentityBetaTypeBeta = typeof ApprovalIdentityBetaTypeBeta[keyof typeof ApprovalIdentityBetaTypeBeta];
|
|
4165
3956
|
/**
|
|
4166
3957
|
*
|
|
4167
3958
|
* @export
|
|
@@ -4285,44 +4076,6 @@ export interface ApprovalItemsBeta {
|
|
|
4285
4076
|
*/
|
|
4286
4077
|
'state'?: WorkItemStateBeta | null;
|
|
4287
4078
|
}
|
|
4288
|
-
/**
|
|
4289
|
-
* Approval Name Object
|
|
4290
|
-
* @export
|
|
4291
|
-
* @interface ApprovalNameBeta
|
|
4292
|
-
*/
|
|
4293
|
-
export interface ApprovalNameBeta {
|
|
4294
|
-
/**
|
|
4295
|
-
* Name of the approval
|
|
4296
|
-
* @type {string}
|
|
4297
|
-
* @memberof ApprovalNameBeta
|
|
4298
|
-
*/
|
|
4299
|
-
'value'?: string;
|
|
4300
|
-
/**
|
|
4301
|
-
* What locale the name of the approval is using
|
|
4302
|
-
* @type {string}
|
|
4303
|
-
* @memberof ApprovalNameBeta
|
|
4304
|
-
*/
|
|
4305
|
-
'locale'?: string;
|
|
4306
|
-
}
|
|
4307
|
-
/**
|
|
4308
|
-
* Reference objects related to the approval
|
|
4309
|
-
* @export
|
|
4310
|
-
* @interface ApprovalReferenceBeta
|
|
4311
|
-
*/
|
|
4312
|
-
export interface ApprovalReferenceBeta {
|
|
4313
|
-
/**
|
|
4314
|
-
* Id of the reference object
|
|
4315
|
-
* @type {string}
|
|
4316
|
-
* @memberof ApprovalReferenceBeta
|
|
4317
|
-
*/
|
|
4318
|
-
'id'?: string;
|
|
4319
|
-
/**
|
|
4320
|
-
* What reference object does this ID correspond to
|
|
4321
|
-
* @type {string}
|
|
4322
|
-
* @memberof ApprovalReferenceBeta
|
|
4323
|
-
*/
|
|
4324
|
-
'type'?: string;
|
|
4325
|
-
}
|
|
4326
4079
|
/**
|
|
4327
4080
|
*
|
|
4328
4081
|
* @export
|
|
@@ -4376,13 +4129,13 @@ export type ApprovalSchemeBeta = typeof ApprovalSchemeBeta[keyof typeof Approval
|
|
|
4376
4129
|
*/
|
|
4377
4130
|
export interface ApprovalSchemeForRoleBeta {
|
|
4378
4131
|
/**
|
|
4379
|
-
* 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.
|
|
4380
4133
|
* @type {string}
|
|
4381
4134
|
* @memberof ApprovalSchemeForRoleBeta
|
|
4382
4135
|
*/
|
|
4383
4136
|
'approverType'?: ApprovalSchemeForRoleBetaApproverTypeBeta;
|
|
4384
4137
|
/**
|
|
4385
|
-
* Id of the specific approver, used
|
|
4138
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
4386
4139
|
* @type {string}
|
|
4387
4140
|
* @memberof ApprovalSchemeForRoleBeta
|
|
4388
4141
|
*/
|
|
@@ -4392,6 +4145,7 @@ export declare const ApprovalSchemeForRoleBetaApproverTypeBeta: {
|
|
|
4392
4145
|
readonly Owner: "OWNER";
|
|
4393
4146
|
readonly Manager: "MANAGER";
|
|
4394
4147
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
4148
|
+
readonly Workflow: "WORKFLOW";
|
|
4395
4149
|
};
|
|
4396
4150
|
export type ApprovalSchemeForRoleBetaApproverTypeBeta = typeof ApprovalSchemeForRoleBetaApproverTypeBeta[keyof typeof ApprovalSchemeForRoleBetaApproverTypeBeta];
|
|
4397
4151
|
/**
|
|
@@ -4806,6 +4560,12 @@ export interface AttributeDefinitionBeta {
|
|
|
4806
4560
|
* @memberof AttributeDefinitionBeta
|
|
4807
4561
|
*/
|
|
4808
4562
|
'name'?: string;
|
|
4563
|
+
/**
|
|
4564
|
+
* Attribute name in the native system.
|
|
4565
|
+
* @type {string}
|
|
4566
|
+
* @memberof AttributeDefinitionBeta
|
|
4567
|
+
*/
|
|
4568
|
+
'nativeName'?: string | null;
|
|
4809
4569
|
/**
|
|
4810
4570
|
*
|
|
4811
4571
|
* @type {AttributeDefinitionTypeBeta}
|
|
@@ -5195,6 +4955,31 @@ export interface BaseReferenceDtoBeta {
|
|
|
5195
4955
|
*/
|
|
5196
4956
|
'name'?: string;
|
|
5197
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
|
+
}
|
|
5198
4983
|
/**
|
|
5199
4984
|
* Config required if BASIC_AUTH is used.
|
|
5200
4985
|
* @export
|
|
@@ -7285,6 +7070,12 @@ export interface CompletedApprovalBeta {
|
|
|
7285
7070
|
* @memberof CompletedApprovalBeta
|
|
7286
7071
|
*/
|
|
7287
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;
|
|
7288
7079
|
}
|
|
7289
7080
|
/**
|
|
7290
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.
|
|
@@ -9093,19 +8884,6 @@ export interface DeleteNonEmployeeRecordInBulkRequestBeta {
|
|
|
9093
8884
|
*/
|
|
9094
8885
|
'ids': Array<string>;
|
|
9095
8886
|
}
|
|
9096
|
-
/**
|
|
9097
|
-
*
|
|
9098
|
-
* @export
|
|
9099
|
-
* @interface DeleteVendorConnectorMapping200ResponseBeta
|
|
9100
|
-
*/
|
|
9101
|
-
export interface DeleteVendorConnectorMapping200ResponseBeta {
|
|
9102
|
-
/**
|
|
9103
|
-
* The number of vendor connector mappings successfully deleted.
|
|
9104
|
-
* @type {number}
|
|
9105
|
-
* @memberof DeleteVendorConnectorMapping200ResponseBeta
|
|
9106
|
-
*/
|
|
9107
|
-
'count'?: number;
|
|
9108
|
-
}
|
|
9109
8887
|
/**
|
|
9110
8888
|
*
|
|
9111
8889
|
* @export
|
|
@@ -9424,13 +9202,13 @@ export interface EntitlementAccessRequestConfigBeta {
|
|
|
9424
9202
|
*/
|
|
9425
9203
|
export interface EntitlementApprovalSchemeBeta {
|
|
9426
9204
|
/**
|
|
9427
|
-
* 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.
|
|
9428
9206
|
* @type {string}
|
|
9429
9207
|
* @memberof EntitlementApprovalSchemeBeta
|
|
9430
9208
|
*/
|
|
9431
9209
|
'approverType'?: EntitlementApprovalSchemeBetaApproverTypeBeta;
|
|
9432
9210
|
/**
|
|
9433
|
-
* 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
|
|
9434
9212
|
* @type {string}
|
|
9435
9213
|
* @memberof EntitlementApprovalSchemeBeta
|
|
9436
9214
|
*/
|
|
@@ -9441,6 +9219,7 @@ export declare const EntitlementApprovalSchemeBetaApproverTypeBeta: {
|
|
|
9441
9219
|
readonly SourceOwner: "SOURCE_OWNER";
|
|
9442
9220
|
readonly Manager: "MANAGER";
|
|
9443
9221
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
9222
|
+
readonly Workflow: "WORKFLOW";
|
|
9444
9223
|
};
|
|
9445
9224
|
export type EntitlementApprovalSchemeBetaApproverTypeBeta = typeof EntitlementApprovalSchemeBetaApproverTypeBeta[keyof typeof EntitlementApprovalSchemeBetaApproverTypeBeta];
|
|
9446
9225
|
/**
|
|
@@ -10485,11 +10264,11 @@ export interface FieldDetailsDtoBeta {
|
|
|
10485
10264
|
*/
|
|
10486
10265
|
'isRequired'?: boolean;
|
|
10487
10266
|
/**
|
|
10488
|
-
* 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.
|
|
10489
10268
|
* @type {string}
|
|
10490
10269
|
* @memberof FieldDetailsDtoBeta
|
|
10491
10270
|
*/
|
|
10492
|
-
'type'?:
|
|
10271
|
+
'type'?: FieldDetailsDtoBetaTypeBeta;
|
|
10493
10272
|
/**
|
|
10494
10273
|
* Flag indicating whether or not the attribute is multi-valued.
|
|
10495
10274
|
* @type {boolean}
|
|
@@ -10497,6 +10276,15 @@ export interface FieldDetailsDtoBeta {
|
|
|
10497
10276
|
*/
|
|
10498
10277
|
'isMultiValued'?: boolean;
|
|
10499
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];
|
|
10500
10288
|
/**
|
|
10501
10289
|
*
|
|
10502
10290
|
* @export
|
|
@@ -11134,17 +10922,11 @@ export type FormInstanceRecipientBetaTypeBeta = typeof FormInstanceRecipientBeta
|
|
|
11134
10922
|
*/
|
|
11135
10923
|
export interface FormInstanceResponseBeta {
|
|
11136
10924
|
/**
|
|
11137
|
-
*
|
|
10925
|
+
* Unique guid identifying this form instance
|
|
11138
10926
|
* @type {string}
|
|
11139
10927
|
* @memberof FormInstanceResponseBeta
|
|
11140
10928
|
*/
|
|
11141
|
-
'
|
|
11142
|
-
/**
|
|
11143
|
-
*
|
|
11144
|
-
* @type {FormInstanceCreatedByBeta}
|
|
11145
|
-
* @memberof FormInstanceResponseBeta
|
|
11146
|
-
*/
|
|
11147
|
-
'createdBy'?: FormInstanceCreatedByBeta;
|
|
10929
|
+
'id'?: string;
|
|
11148
10930
|
/**
|
|
11149
10931
|
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
11150
10932
|
* @type {string}
|
|
@@ -11152,37 +10934,35 @@ export interface FormInstanceResponseBeta {
|
|
|
11152
10934
|
*/
|
|
11153
10935
|
'expire'?: string;
|
|
11154
10936
|
/**
|
|
11155
|
-
*
|
|
11156
|
-
* @type {
|
|
10937
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
10938
|
+
* @type {string}
|
|
11157
10939
|
* @memberof FormInstanceResponseBeta
|
|
11158
10940
|
*/
|
|
11159
|
-
'
|
|
10941
|
+
'state'?: FormInstanceResponseBetaStateBeta;
|
|
11160
10942
|
/**
|
|
11161
|
-
*
|
|
11162
|
-
* @type {
|
|
10943
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
10944
|
+
* @type {boolean}
|
|
11163
10945
|
* @memberof FormInstanceResponseBeta
|
|
11164
10946
|
*/
|
|
11165
|
-
'
|
|
11166
|
-
[key: string]: any;
|
|
11167
|
-
} | null;
|
|
10947
|
+
'standAloneForm'?: boolean;
|
|
11168
10948
|
/**
|
|
11169
|
-
*
|
|
10949
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
11170
10950
|
* @type {string}
|
|
11171
10951
|
* @memberof FormInstanceResponseBeta
|
|
11172
10952
|
*/
|
|
11173
|
-
'
|
|
10953
|
+
'standAloneFormUrl'?: string;
|
|
11174
10954
|
/**
|
|
11175
|
-
*
|
|
11176
|
-
* @type {
|
|
10955
|
+
*
|
|
10956
|
+
* @type {FormInstanceCreatedByBeta}
|
|
11177
10957
|
* @memberof FormInstanceResponseBeta
|
|
11178
10958
|
*/
|
|
11179
|
-
'
|
|
10959
|
+
'createdBy'?: FormInstanceCreatedByBeta;
|
|
11180
10960
|
/**
|
|
11181
|
-
*
|
|
11182
|
-
* @type {
|
|
10961
|
+
* FormDefinitionID is the id of the form definition that created this form
|
|
10962
|
+
* @type {string}
|
|
11183
10963
|
* @memberof FormInstanceResponseBeta
|
|
11184
10964
|
*/
|
|
11185
|
-
'
|
|
10965
|
+
'formDefinitionId'?: string;
|
|
11186
10966
|
/**
|
|
11187
10967
|
* FormInput is an object of form input labels to value
|
|
11188
10968
|
* @type {{ [key: string]: object; }}
|
|
@@ -11192,41 +10972,49 @@ export interface FormInstanceResponseBeta {
|
|
|
11192
10972
|
[key: string]: object;
|
|
11193
10973
|
} | null;
|
|
11194
10974
|
/**
|
|
11195
|
-
*
|
|
11196
|
-
* @type {
|
|
10975
|
+
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
10976
|
+
* @type {Array<FormElementBeta>}
|
|
11197
10977
|
* @memberof FormInstanceResponseBeta
|
|
11198
10978
|
*/
|
|
11199
|
-
'
|
|
10979
|
+
'formElements'?: Array<FormElementBeta>;
|
|
11200
10980
|
/**
|
|
11201
|
-
*
|
|
11202
|
-
* @type {string}
|
|
10981
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
10982
|
+
* @type {{ [key: string]: any; }}
|
|
11203
10983
|
* @memberof FormInstanceResponseBeta
|
|
11204
10984
|
*/
|
|
11205
|
-
'
|
|
10985
|
+
'formData'?: {
|
|
10986
|
+
[key: string]: any;
|
|
10987
|
+
} | null;
|
|
11206
10988
|
/**
|
|
11207
|
-
*
|
|
11208
|
-
* @type {Array<
|
|
10989
|
+
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
10990
|
+
* @type {Array<FormErrorBeta>}
|
|
11209
10991
|
* @memberof FormInstanceResponseBeta
|
|
11210
10992
|
*/
|
|
11211
|
-
'
|
|
10993
|
+
'formErrors'?: Array<FormErrorBeta>;
|
|
11212
10994
|
/**
|
|
11213
|
-
*
|
|
11214
|
-
* @type {
|
|
10995
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
10996
|
+
* @type {Array<FormConditionBeta>}
|
|
11215
10997
|
* @memberof FormInstanceResponseBeta
|
|
11216
10998
|
*/
|
|
11217
|
-
'
|
|
10999
|
+
'formConditions'?: Array<FormConditionBeta>;
|
|
11218
11000
|
/**
|
|
11219
|
-
*
|
|
11001
|
+
* Created is the date the form instance was assigned
|
|
11220
11002
|
* @type {string}
|
|
11221
11003
|
* @memberof FormInstanceResponseBeta
|
|
11222
11004
|
*/
|
|
11223
|
-
'
|
|
11005
|
+
'created'?: string;
|
|
11224
11006
|
/**
|
|
11225
|
-
*
|
|
11007
|
+
* Modified is the last date the form instance was modified
|
|
11226
11008
|
* @type {string}
|
|
11227
11009
|
* @memberof FormInstanceResponseBeta
|
|
11228
11010
|
*/
|
|
11229
|
-
'
|
|
11011
|
+
'modified'?: string;
|
|
11012
|
+
/**
|
|
11013
|
+
* Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
|
|
11014
|
+
* @type {Array<FormInstanceRecipientBeta>}
|
|
11015
|
+
* @memberof FormInstanceResponseBeta
|
|
11016
|
+
*/
|
|
11017
|
+
'recipients'?: Array<FormInstanceRecipientBeta>;
|
|
11230
11018
|
}
|
|
11231
11019
|
export declare const FormInstanceResponseBetaStateBeta: {
|
|
11232
11020
|
readonly Assigned: "ASSIGNED";
|
|
@@ -12446,16 +12234,22 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12446
12234
|
'id'?: string;
|
|
12447
12235
|
/**
|
|
12448
12236
|
*
|
|
12449
|
-
* @type {
|
|
12237
|
+
* @type {BaseRoleReferenceDtoBeta}
|
|
12450
12238
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12451
12239
|
*/
|
|
12452
|
-
'role'?:
|
|
12240
|
+
'role'?: BaseRoleReferenceDtoBeta;
|
|
12241
|
+
/**
|
|
12242
|
+
* Date that the assignment was added
|
|
12243
|
+
* @type {string}
|
|
12244
|
+
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12245
|
+
*/
|
|
12246
|
+
'addedDate'?: string;
|
|
12453
12247
|
/**
|
|
12454
12248
|
* Comments added by the user when the assignment was made
|
|
12455
12249
|
* @type {string}
|
|
12456
12250
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12457
12251
|
*/
|
|
12458
|
-
'comments'?: string;
|
|
12252
|
+
'comments'?: string | null;
|
|
12459
12253
|
/**
|
|
12460
12254
|
* Source describing how this assignment was made
|
|
12461
12255
|
* @type {string}
|
|
@@ -12464,10 +12258,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12464
12258
|
'assignmentSource'?: string;
|
|
12465
12259
|
/**
|
|
12466
12260
|
*
|
|
12467
|
-
* @type {
|
|
12261
|
+
* @type {RoleAssignmentDtoAssignerBeta}
|
|
12468
12262
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12469
12263
|
*/
|
|
12470
|
-
'assigner'?:
|
|
12264
|
+
'assigner'?: RoleAssignmentDtoAssignerBeta;
|
|
12471
12265
|
/**
|
|
12472
12266
|
* Dimensions assigned related to this role
|
|
12473
12267
|
* @type {Array<BaseReferenceDto1Beta>}
|
|
@@ -12476,10 +12270,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12476
12270
|
'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
|
|
12477
12271
|
/**
|
|
12478
12272
|
*
|
|
12479
|
-
* @type {
|
|
12273
|
+
* @type {RoleAssignmentDtoAssignmentContextBeta}
|
|
12480
12274
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12481
12275
|
*/
|
|
12482
|
-
'assignmentContext'?:
|
|
12276
|
+
'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
|
|
12483
12277
|
/**
|
|
12484
12278
|
*
|
|
12485
12279
|
* @type {Array<RoleTargetDtoBeta>}
|
|
@@ -12491,7 +12285,7 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12491
12285
|
* @type {string}
|
|
12492
12286
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12493
12287
|
*/
|
|
12494
|
-
'removeDate'?: string;
|
|
12288
|
+
'removeDate'?: string | null;
|
|
12495
12289
|
}
|
|
12496
12290
|
/**
|
|
12497
12291
|
* OAuth2 Grant Type
|
|
@@ -14060,12 +13854,6 @@ export interface IdentityWithNewAccessAccessRefsInnerBeta {
|
|
|
14060
13854
|
* @memberof IdentityWithNewAccessAccessRefsInnerBeta
|
|
14061
13855
|
*/
|
|
14062
13856
|
'id'?: string;
|
|
14063
|
-
/**
|
|
14064
|
-
* Entitlement\'s display name.
|
|
14065
|
-
* @type {string}
|
|
14066
|
-
* @memberof IdentityWithNewAccessAccessRefsInnerBeta
|
|
14067
|
-
*/
|
|
14068
|
-
'name'?: string;
|
|
14069
13857
|
}
|
|
14070
13858
|
export declare const IdentityWithNewAccessAccessRefsInnerBetaTypeBeta: {
|
|
14071
13859
|
readonly Entitlement: "ENTITLEMENT";
|
|
@@ -17715,6 +17503,7 @@ export declare const MultiHostSourcesBetaFeaturesBeta: {
|
|
|
17715
17503
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
17716
17504
|
readonly UsesUuid: "USES_UUID";
|
|
17717
17505
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
17506
|
+
readonly Delete: "DELETE";
|
|
17718
17507
|
};
|
|
17719
17508
|
export type MultiHostSourcesBetaFeaturesBeta = typeof MultiHostSourcesBetaFeaturesBeta[keyof typeof MultiHostSourcesBetaFeaturesBeta];
|
|
17720
17509
|
export declare const MultiHostSourcesBetaStatusBeta: {
|
|
@@ -20433,6 +20222,12 @@ export interface PendingApprovalBeta {
|
|
|
20433
20222
|
* @memberof PendingApprovalBeta
|
|
20434
20223
|
*/
|
|
20435
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;
|
|
20436
20231
|
}
|
|
20437
20232
|
/**
|
|
20438
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.
|
|
@@ -22408,6 +22203,12 @@ export interface RequestedItemStatusBeta {
|
|
|
22408
22203
|
* @memberof RequestedItemStatusBeta
|
|
22409
22204
|
*/
|
|
22410
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;
|
|
22411
22212
|
}
|
|
22412
22213
|
export declare const RequestedItemStatusBetaTypeBeta: {
|
|
22413
22214
|
readonly AccessProfile: "ACCESS_PROFILE";
|
|
@@ -22876,6 +22677,61 @@ export interface RightPadBeta {
|
|
|
22876
22677
|
[key: string]: any;
|
|
22877
22678
|
};
|
|
22878
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
|
+
}
|
|
22879
22735
|
/**
|
|
22880
22736
|
*
|
|
22881
22737
|
* @export
|
|
@@ -22890,16 +22746,16 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22890
22746
|
'id'?: string;
|
|
22891
22747
|
/**
|
|
22892
22748
|
*
|
|
22893
|
-
* @type {
|
|
22749
|
+
* @type {BaseRoleReferenceDtoBeta}
|
|
22894
22750
|
* @memberof RoleAssignmentDtoBeta
|
|
22895
22751
|
*/
|
|
22896
|
-
'role'?:
|
|
22752
|
+
'role'?: BaseRoleReferenceDtoBeta;
|
|
22897
22753
|
/**
|
|
22898
22754
|
* Comments added by the user when the assignment was made
|
|
22899
22755
|
* @type {string}
|
|
22900
22756
|
* @memberof RoleAssignmentDtoBeta
|
|
22901
22757
|
*/
|
|
22902
|
-
'comments'?: string;
|
|
22758
|
+
'comments'?: string | null;
|
|
22903
22759
|
/**
|
|
22904
22760
|
* Source describing how this assignment was made
|
|
22905
22761
|
* @type {string}
|
|
@@ -22908,10 +22764,10 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22908
22764
|
'assignmentSource'?: string;
|
|
22909
22765
|
/**
|
|
22910
22766
|
*
|
|
22911
|
-
* @type {
|
|
22767
|
+
* @type {RoleAssignmentDtoAssignerBeta}
|
|
22912
22768
|
* @memberof RoleAssignmentDtoBeta
|
|
22913
22769
|
*/
|
|
22914
|
-
'assigner'?:
|
|
22770
|
+
'assigner'?: RoleAssignmentDtoAssignerBeta;
|
|
22915
22771
|
/**
|
|
22916
22772
|
* Dimensions assigned related to this role
|
|
22917
22773
|
* @type {Array<BaseReferenceDto1Beta>}
|
|
@@ -22920,10 +22776,10 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22920
22776
|
'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
|
|
22921
22777
|
/**
|
|
22922
22778
|
*
|
|
22923
|
-
* @type {
|
|
22779
|
+
* @type {RoleAssignmentDtoAssignmentContextBeta}
|
|
22924
22780
|
* @memberof RoleAssignmentDtoBeta
|
|
22925
22781
|
*/
|
|
22926
|
-
'assignmentContext'?:
|
|
22782
|
+
'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
|
|
22927
22783
|
/**
|
|
22928
22784
|
*
|
|
22929
22785
|
* @type {Array<RoleTargetDtoBeta>}
|
|
@@ -22935,7 +22791,13 @@ export interface RoleAssignmentDtoBeta {
|
|
|
22935
22791
|
* @type {string}
|
|
22936
22792
|
* @memberof RoleAssignmentDtoBeta
|
|
22937
22793
|
*/
|
|
22938
|
-
'removeDate'?: string;
|
|
22794
|
+
'removeDate'?: string | null;
|
|
22795
|
+
/**
|
|
22796
|
+
* Date that the assignment was added
|
|
22797
|
+
* @type {string}
|
|
22798
|
+
* @memberof RoleAssignmentDtoBeta
|
|
22799
|
+
*/
|
|
22800
|
+
'addedDate'?: string;
|
|
22939
22801
|
}
|
|
22940
22802
|
/**
|
|
22941
22803
|
*
|
|
@@ -22955,6 +22817,12 @@ export interface RoleAssignmentRefBeta {
|
|
|
22955
22817
|
* @memberof RoleAssignmentRefBeta
|
|
22956
22818
|
*/
|
|
22957
22819
|
'role'?: BaseReferenceDto1Beta;
|
|
22820
|
+
/**
|
|
22821
|
+
* Date that the assignment was added
|
|
22822
|
+
* @type {string}
|
|
22823
|
+
* @memberof RoleAssignmentRefBeta
|
|
22824
|
+
*/
|
|
22825
|
+
'addedDate'?: string;
|
|
22958
22826
|
}
|
|
22959
22827
|
/**
|
|
22960
22828
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -25268,6 +25136,7 @@ export declare const SchemaBetaFeaturesBeta: {
|
|
|
25268
25136
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
25269
25137
|
readonly UsesUuid: "USES_UUID";
|
|
25270
25138
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
25139
|
+
readonly Delete: "DELETE";
|
|
25271
25140
|
};
|
|
25272
25141
|
export type SchemaBetaFeaturesBeta = typeof SchemaBetaFeaturesBeta[keyof typeof SchemaBetaFeaturesBeta];
|
|
25273
25142
|
/**
|
|
@@ -27732,10 +27601,10 @@ export interface SourceBeta {
|
|
|
27732
27601
|
'description'?: string;
|
|
27733
27602
|
/**
|
|
27734
27603
|
*
|
|
27735
|
-
* @type {
|
|
27604
|
+
* @type {SourceOwnerBeta}
|
|
27736
27605
|
* @memberof SourceBeta
|
|
27737
27606
|
*/
|
|
27738
|
-
'owner':
|
|
27607
|
+
'owner': SourceOwnerBeta | null;
|
|
27739
27608
|
/**
|
|
27740
27609
|
*
|
|
27741
27610
|
* @type {MultiHostIntegrationsClusterBeta}
|
|
@@ -27932,6 +27801,7 @@ export declare const SourceBetaFeaturesBeta: {
|
|
|
27932
27801
|
readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
|
|
27933
27802
|
readonly UsesUuid: "USES_UUID";
|
|
27934
27803
|
readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
|
|
27804
|
+
readonly Delete: "DELETE";
|
|
27935
27805
|
};
|
|
27936
27806
|
export type SourceBetaFeaturesBeta = typeof SourceBetaFeaturesBeta[keyof typeof SourceBetaFeaturesBeta];
|
|
27937
27807
|
export declare const SourceBetaStatusBeta: {
|
|
@@ -28221,6 +28091,35 @@ export interface SourceItemRefBeta {
|
|
|
28221
28091
|
*/
|
|
28222
28092
|
'accounts'?: Array<AccountItemRefBeta> | null;
|
|
28223
28093
|
}
|
|
28094
|
+
/**
|
|
28095
|
+
* Reference to identity object who owns the source.
|
|
28096
|
+
* @export
|
|
28097
|
+
* @interface SourceOwnerBeta
|
|
28098
|
+
*/
|
|
28099
|
+
export interface SourceOwnerBeta {
|
|
28100
|
+
/**
|
|
28101
|
+
* Type of object being referenced.
|
|
28102
|
+
* @type {string}
|
|
28103
|
+
* @memberof SourceOwnerBeta
|
|
28104
|
+
*/
|
|
28105
|
+
'type'?: SourceOwnerBetaTypeBeta;
|
|
28106
|
+
/**
|
|
28107
|
+
* Owner identity\'s ID.
|
|
28108
|
+
* @type {string}
|
|
28109
|
+
* @memberof SourceOwnerBeta
|
|
28110
|
+
*/
|
|
28111
|
+
'id'?: string;
|
|
28112
|
+
/**
|
|
28113
|
+
* Owner identity\'s human-readable display name.
|
|
28114
|
+
* @type {string}
|
|
28115
|
+
* @memberof SourceOwnerBeta
|
|
28116
|
+
*/
|
|
28117
|
+
'name'?: string;
|
|
28118
|
+
}
|
|
28119
|
+
export declare const SourceOwnerBetaTypeBeta: {
|
|
28120
|
+
readonly Identity: "IDENTITY";
|
|
28121
|
+
};
|
|
28122
|
+
export type SourceOwnerBetaTypeBeta = typeof SourceOwnerBetaTypeBeta[keyof typeof SourceOwnerBetaTypeBeta];
|
|
28224
28123
|
/**
|
|
28225
28124
|
*
|
|
28226
28125
|
* @export
|
|
@@ -31476,143 +31375,6 @@ export interface ValueBeta {
|
|
|
31476
31375
|
*/
|
|
31477
31376
|
'value'?: string;
|
|
31478
31377
|
}
|
|
31479
|
-
/**
|
|
31480
|
-
*
|
|
31481
|
-
* @export
|
|
31482
|
-
* @interface VendorConnectorMappingBeta
|
|
31483
|
-
*/
|
|
31484
|
-
export interface VendorConnectorMappingBeta {
|
|
31485
|
-
/**
|
|
31486
|
-
* The unique identifier for the vendor-connector mapping.
|
|
31487
|
-
* @type {string}
|
|
31488
|
-
* @memberof VendorConnectorMappingBeta
|
|
31489
|
-
*/
|
|
31490
|
-
'id'?: string;
|
|
31491
|
-
/**
|
|
31492
|
-
* The name of the vendor.
|
|
31493
|
-
* @type {string}
|
|
31494
|
-
* @memberof VendorConnectorMappingBeta
|
|
31495
|
-
*/
|
|
31496
|
-
'vendor'?: string;
|
|
31497
|
-
/**
|
|
31498
|
-
* The name of the connector.
|
|
31499
|
-
* @type {string}
|
|
31500
|
-
* @memberof VendorConnectorMappingBeta
|
|
31501
|
-
*/
|
|
31502
|
-
'connector'?: string;
|
|
31503
|
-
/**
|
|
31504
|
-
* The creation timestamp of the mapping.
|
|
31505
|
-
* @type {string}
|
|
31506
|
-
* @memberof VendorConnectorMappingBeta
|
|
31507
|
-
*/
|
|
31508
|
-
'createdAt'?: string;
|
|
31509
|
-
/**
|
|
31510
|
-
* The identifier of the user who created the mapping.
|
|
31511
|
-
* @type {string}
|
|
31512
|
-
* @memberof VendorConnectorMappingBeta
|
|
31513
|
-
*/
|
|
31514
|
-
'createdBy'?: string;
|
|
31515
|
-
/**
|
|
31516
|
-
*
|
|
31517
|
-
* @type {VendorConnectorMappingUpdatedAtBeta}
|
|
31518
|
-
* @memberof VendorConnectorMappingBeta
|
|
31519
|
-
*/
|
|
31520
|
-
'updatedAt'?: VendorConnectorMappingUpdatedAtBeta | null;
|
|
31521
|
-
/**
|
|
31522
|
-
*
|
|
31523
|
-
* @type {VendorConnectorMappingUpdatedByBeta}
|
|
31524
|
-
* @memberof VendorConnectorMappingBeta
|
|
31525
|
-
*/
|
|
31526
|
-
'updatedBy'?: VendorConnectorMappingUpdatedByBeta | null;
|
|
31527
|
-
/**
|
|
31528
|
-
*
|
|
31529
|
-
* @type {VendorConnectorMappingDeletedAtBeta}
|
|
31530
|
-
* @memberof VendorConnectorMappingBeta
|
|
31531
|
-
*/
|
|
31532
|
-
'deletedAt'?: VendorConnectorMappingDeletedAtBeta | null;
|
|
31533
|
-
/**
|
|
31534
|
-
*
|
|
31535
|
-
* @type {VendorConnectorMappingDeletedByBeta}
|
|
31536
|
-
* @memberof VendorConnectorMappingBeta
|
|
31537
|
-
*/
|
|
31538
|
-
'deletedBy'?: VendorConnectorMappingDeletedByBeta | null;
|
|
31539
|
-
}
|
|
31540
|
-
/**
|
|
31541
|
-
* An object representing the nullable timestamp of when the mapping was deleted.
|
|
31542
|
-
* @export
|
|
31543
|
-
* @interface VendorConnectorMappingDeletedAtBeta
|
|
31544
|
-
*/
|
|
31545
|
-
export interface VendorConnectorMappingDeletedAtBeta {
|
|
31546
|
-
/**
|
|
31547
|
-
* The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
|
|
31548
|
-
* @type {string}
|
|
31549
|
-
* @memberof VendorConnectorMappingDeletedAtBeta
|
|
31550
|
-
*/
|
|
31551
|
-
'Time'?: string;
|
|
31552
|
-
/**
|
|
31553
|
-
* A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
|
|
31554
|
-
* @type {boolean}
|
|
31555
|
-
* @memberof VendorConnectorMappingDeletedAtBeta
|
|
31556
|
-
*/
|
|
31557
|
-
'Valid'?: boolean;
|
|
31558
|
-
}
|
|
31559
|
-
/**
|
|
31560
|
-
* An object representing the nullable identifier of the user who deleted the mapping.
|
|
31561
|
-
* @export
|
|
31562
|
-
* @interface VendorConnectorMappingDeletedByBeta
|
|
31563
|
-
*/
|
|
31564
|
-
export interface VendorConnectorMappingDeletedByBeta {
|
|
31565
|
-
/**
|
|
31566
|
-
* The identifier of the user who deleted the mapping, if applicable.
|
|
31567
|
-
* @type {string}
|
|
31568
|
-
* @memberof VendorConnectorMappingDeletedByBeta
|
|
31569
|
-
*/
|
|
31570
|
-
'String'?: string;
|
|
31571
|
-
/**
|
|
31572
|
-
* A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
|
|
31573
|
-
* @type {boolean}
|
|
31574
|
-
* @memberof VendorConnectorMappingDeletedByBeta
|
|
31575
|
-
*/
|
|
31576
|
-
'Valid'?: boolean;
|
|
31577
|
-
}
|
|
31578
|
-
/**
|
|
31579
|
-
* An object representing the nullable timestamp of the last update.
|
|
31580
|
-
* @export
|
|
31581
|
-
* @interface VendorConnectorMappingUpdatedAtBeta
|
|
31582
|
-
*/
|
|
31583
|
-
export interface VendorConnectorMappingUpdatedAtBeta {
|
|
31584
|
-
/**
|
|
31585
|
-
* The timestamp when the mapping was last updated, represented in ISO 8601 format.
|
|
31586
|
-
* @type {string}
|
|
31587
|
-
* @memberof VendorConnectorMappingUpdatedAtBeta
|
|
31588
|
-
*/
|
|
31589
|
-
'Time'?: string;
|
|
31590
|
-
/**
|
|
31591
|
-
* A flag indicating if the \'Time\' field is set and valid.
|
|
31592
|
-
* @type {boolean}
|
|
31593
|
-
* @memberof VendorConnectorMappingUpdatedAtBeta
|
|
31594
|
-
*/
|
|
31595
|
-
'Valid'?: boolean;
|
|
31596
|
-
}
|
|
31597
|
-
/**
|
|
31598
|
-
* An object representing the nullable identifier of the user who last updated the mapping.
|
|
31599
|
-
* @export
|
|
31600
|
-
* @interface VendorConnectorMappingUpdatedByBeta
|
|
31601
|
-
*/
|
|
31602
|
-
export interface VendorConnectorMappingUpdatedByBeta {
|
|
31603
|
-
/**
|
|
31604
|
-
* The identifier of the user who last updated the mapping, if available.
|
|
31605
|
-
* @type {string}
|
|
31606
|
-
* @memberof VendorConnectorMappingUpdatedByBeta
|
|
31607
|
-
*/
|
|
31608
|
-
'String'?: string;
|
|
31609
|
-
/**
|
|
31610
|
-
* A flag indicating if the \'String\' field is set and valid.
|
|
31611
|
-
* @type {boolean}
|
|
31612
|
-
* @memberof VendorConnectorMappingUpdatedByBeta
|
|
31613
|
-
*/
|
|
31614
|
-
'Valid'?: boolean;
|
|
31615
|
-
}
|
|
31616
31378
|
/**
|
|
31617
31379
|
*
|
|
31618
31380
|
* @export
|
|
@@ -34281,7 +34043,7 @@ export declare const AccessRequestsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
34281
34043
|
*/
|
|
34282
34044
|
cancelAccessRequest: (cancelAccessRequestBeta: CancelAccessRequestBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34283
34045
|
/**
|
|
34284
|
-
* 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.
|
|
34285
34047
|
* @summary Close access request
|
|
34286
34048
|
* @param {CloseAccessRequestBeta} closeAccessRequestBeta
|
|
34287
34049
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34343,7 +34105,7 @@ export declare const AccessRequestsBetaApiFp: (configuration?: Configuration) =>
|
|
|
34343
34105
|
*/
|
|
34344
34106
|
cancelAccessRequest(cancelAccessRequestBeta: CancelAccessRequestBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
34345
34107
|
/**
|
|
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/
|
|
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.
|
|
34347
34109
|
* @summary Close access request
|
|
34348
34110
|
* @param {CloseAccessRequestBeta} closeAccessRequestBeta
|
|
34349
34111
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34405,7 +34167,7 @@ export declare const AccessRequestsBetaApiFactory: (configuration?: Configuratio
|
|
|
34405
34167
|
*/
|
|
34406
34168
|
cancelAccessRequest(requestParameters: AccessRequestsBetaApiCancelAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
34407
34169
|
/**
|
|
34408
|
-
* 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.
|
|
34409
34171
|
* @summary Close access request
|
|
34410
34172
|
* @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
34411
34173
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34580,7 +34342,7 @@ export declare class AccessRequestsBetaApi extends BaseAPI {
|
|
|
34580
34342
|
*/
|
|
34581
34343
|
cancelAccessRequest(requestParameters: AccessRequestsBetaApiCancelAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
34582
34344
|
/**
|
|
34583
|
-
* 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.
|
|
34584
34346
|
* @summary Close access request
|
|
34585
34347
|
* @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
34586
34348
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36203,140 +35965,6 @@ export declare const GetDiscoveredApplicationsDetailBeta: {
|
|
|
36203
35965
|
readonly Full: "FULL";
|
|
36204
35966
|
};
|
|
36205
35967
|
export type GetDiscoveredApplicationsDetailBeta = typeof GetDiscoveredApplicationsDetailBeta[keyof typeof GetDiscoveredApplicationsDetailBeta];
|
|
36206
|
-
/**
|
|
36207
|
-
* ApprovalsBetaApi - axios parameter creator
|
|
36208
|
-
* @export
|
|
36209
|
-
*/
|
|
36210
|
-
export declare const ApprovalsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
36211
|
-
/**
|
|
36212
|
-
* Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
|
|
36213
|
-
* @summary Get approval
|
|
36214
|
-
* @param {string} id ID of the approval that to be returned.
|
|
36215
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36216
|
-
* @throws {RequiredError}
|
|
36217
|
-
*/
|
|
36218
|
-
getApproval: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
36219
|
-
/**
|
|
36220
|
-
* Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
|
|
36221
|
-
* @summary Get approvals
|
|
36222
|
-
* @param {boolean} [mine] Returns the list of approvals for the current caller.
|
|
36223
|
-
* @param {string} [requesterId] Returns the list of approvals for a given requester ID.
|
|
36224
|
-
* @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: **status**: *eq* **referenceType**: *eq*
|
|
36225
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36226
|
-
* @throws {RequiredError}
|
|
36227
|
-
*/
|
|
36228
|
-
getApprovals: (mine?: boolean, requesterId?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
36229
|
-
};
|
|
36230
|
-
/**
|
|
36231
|
-
* ApprovalsBetaApi - functional programming interface
|
|
36232
|
-
* @export
|
|
36233
|
-
*/
|
|
36234
|
-
export declare const ApprovalsBetaApiFp: (configuration?: Configuration) => {
|
|
36235
|
-
/**
|
|
36236
|
-
* Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
|
|
36237
|
-
* @summary Get approval
|
|
36238
|
-
* @param {string} id ID of the approval that to be returned.
|
|
36239
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36240
|
-
* @throws {RequiredError}
|
|
36241
|
-
*/
|
|
36242
|
-
getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalBeta>>;
|
|
36243
|
-
/**
|
|
36244
|
-
* Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
|
|
36245
|
-
* @summary Get approvals
|
|
36246
|
-
* @param {boolean} [mine] Returns the list of approvals for the current caller.
|
|
36247
|
-
* @param {string} [requesterId] Returns the list of approvals for a given requester ID.
|
|
36248
|
-
* @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: **status**: *eq* **referenceType**: *eq*
|
|
36249
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36250
|
-
* @throws {RequiredError}
|
|
36251
|
-
*/
|
|
36252
|
-
getApprovals(mine?: boolean, requesterId?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ApprovalBeta>>>;
|
|
36253
|
-
};
|
|
36254
|
-
/**
|
|
36255
|
-
* ApprovalsBetaApi - factory interface
|
|
36256
|
-
* @export
|
|
36257
|
-
*/
|
|
36258
|
-
export declare const ApprovalsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
36259
|
-
/**
|
|
36260
|
-
* Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
|
|
36261
|
-
* @summary Get approval
|
|
36262
|
-
* @param {ApprovalsBetaApiGetApprovalRequest} requestParameters Request parameters.
|
|
36263
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36264
|
-
* @throws {RequiredError}
|
|
36265
|
-
*/
|
|
36266
|
-
getApproval(requestParameters: ApprovalsBetaApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalBeta>;
|
|
36267
|
-
/**
|
|
36268
|
-
* Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
|
|
36269
|
-
* @summary Get approvals
|
|
36270
|
-
* @param {ApprovalsBetaApiGetApprovalsRequest} requestParameters Request parameters.
|
|
36271
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36272
|
-
* @throws {RequiredError}
|
|
36273
|
-
*/
|
|
36274
|
-
getApprovals(requestParameters?: ApprovalsBetaApiGetApprovalsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ApprovalBeta>>;
|
|
36275
|
-
};
|
|
36276
|
-
/**
|
|
36277
|
-
* Request parameters for getApproval operation in ApprovalsBetaApi.
|
|
36278
|
-
* @export
|
|
36279
|
-
* @interface ApprovalsBetaApiGetApprovalRequest
|
|
36280
|
-
*/
|
|
36281
|
-
export interface ApprovalsBetaApiGetApprovalRequest {
|
|
36282
|
-
/**
|
|
36283
|
-
* ID of the approval that to be returned.
|
|
36284
|
-
* @type {string}
|
|
36285
|
-
* @memberof ApprovalsBetaApiGetApproval
|
|
36286
|
-
*/
|
|
36287
|
-
readonly id: string;
|
|
36288
|
-
}
|
|
36289
|
-
/**
|
|
36290
|
-
* Request parameters for getApprovals operation in ApprovalsBetaApi.
|
|
36291
|
-
* @export
|
|
36292
|
-
* @interface ApprovalsBetaApiGetApprovalsRequest
|
|
36293
|
-
*/
|
|
36294
|
-
export interface ApprovalsBetaApiGetApprovalsRequest {
|
|
36295
|
-
/**
|
|
36296
|
-
* Returns the list of approvals for the current caller.
|
|
36297
|
-
* @type {boolean}
|
|
36298
|
-
* @memberof ApprovalsBetaApiGetApprovals
|
|
36299
|
-
*/
|
|
36300
|
-
readonly mine?: boolean;
|
|
36301
|
-
/**
|
|
36302
|
-
* Returns the list of approvals for a given requester ID.
|
|
36303
|
-
* @type {string}
|
|
36304
|
-
* @memberof ApprovalsBetaApiGetApprovals
|
|
36305
|
-
*/
|
|
36306
|
-
readonly requesterId?: string;
|
|
36307
|
-
/**
|
|
36308
|
-
* 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: **status**: *eq* **referenceType**: *eq*
|
|
36309
|
-
* @type {string}
|
|
36310
|
-
* @memberof ApprovalsBetaApiGetApprovals
|
|
36311
|
-
*/
|
|
36312
|
-
readonly filters?: string;
|
|
36313
|
-
}
|
|
36314
|
-
/**
|
|
36315
|
-
* ApprovalsBetaApi - object-oriented interface
|
|
36316
|
-
* @export
|
|
36317
|
-
* @class ApprovalsBetaApi
|
|
36318
|
-
* @extends {BaseAPI}
|
|
36319
|
-
*/
|
|
36320
|
-
export declare class ApprovalsBetaApi extends BaseAPI {
|
|
36321
|
-
/**
|
|
36322
|
-
* Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
|
|
36323
|
-
* @summary Get approval
|
|
36324
|
-
* @param {ApprovalsBetaApiGetApprovalRequest} requestParameters Request parameters.
|
|
36325
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36326
|
-
* @throws {RequiredError}
|
|
36327
|
-
* @memberof ApprovalsBetaApi
|
|
36328
|
-
*/
|
|
36329
|
-
getApproval(requestParameters: ApprovalsBetaApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApprovalBeta, any>>;
|
|
36330
|
-
/**
|
|
36331
|
-
* Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
|
|
36332
|
-
* @summary Get approvals
|
|
36333
|
-
* @param {ApprovalsBetaApiGetApprovalsRequest} requestParameters Request parameters.
|
|
36334
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
36335
|
-
* @throws {RequiredError}
|
|
36336
|
-
* @memberof ApprovalsBetaApi
|
|
36337
|
-
*/
|
|
36338
|
-
getApprovals(requestParameters?: ApprovalsBetaApiGetApprovalsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApprovalBeta[], any>>;
|
|
36339
|
-
}
|
|
36340
35968
|
/**
|
|
36341
35969
|
* AppsBetaApi - axios parameter creator
|
|
36342
35970
|
* @export
|
|
@@ -37505,7 +37133,7 @@ export declare const CertificationCampaignsBetaApiAxiosParamCreator: (configurat
|
|
|
37505
37133
|
*/
|
|
37506
37134
|
getCampaignTemplateSchedule: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37507
37135
|
/**
|
|
37508
|
-
* 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.
|
|
37509
37137
|
* @summary List campaign templates
|
|
37510
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.
|
|
37511
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.
|
|
@@ -37724,7 +37352,7 @@ export declare const CertificationCampaignsBetaApiFp: (configuration?: Configura
|
|
|
37724
37352
|
*/
|
|
37725
37353
|
getCampaignTemplateSchedule(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduleBeta>>;
|
|
37726
37354
|
/**
|
|
37727
|
-
* 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.
|
|
37728
37356
|
* @summary List campaign templates
|
|
37729
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.
|
|
37730
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.
|
|
@@ -37937,7 +37565,7 @@ export declare const CertificationCampaignsBetaApiFactory: (configuration?: Conf
|
|
|
37937
37565
|
*/
|
|
37938
37566
|
getCampaignTemplateSchedule(requestParameters: CertificationCampaignsBetaApiGetCampaignTemplateScheduleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ScheduleBeta>;
|
|
37939
37567
|
/**
|
|
37940
|
-
* 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.
|
|
37941
37569
|
* @summary List campaign templates
|
|
37942
37570
|
* @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
|
|
37943
37571
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -38523,7 +38151,7 @@ export declare class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
38523
38151
|
*/
|
|
38524
38152
|
getCampaignTemplateSchedule(requestParameters: CertificationCampaignsBetaApiGetCampaignTemplateScheduleRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScheduleBeta, any>>;
|
|
38525
38153
|
/**
|
|
38526
|
-
* 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.
|
|
38527
38155
|
* @summary List campaign templates
|
|
38528
38156
|
* @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
|
|
38529
38157
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40829,7 +40457,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40829
40457
|
/**
|
|
40830
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.
|
|
40831
40459
|
* @summary Gets a list of entitlements.
|
|
40832
|
-
* @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.
|
|
40833
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.
|
|
40834
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).
|
|
40835
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.
|
|
@@ -40843,7 +40471,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40843
40471
|
*/
|
|
40844
40472
|
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40845
40473
|
/**
|
|
40846
|
-
* 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.
|
|
40847
40475
|
* @summary Patch an entitlement
|
|
40848
40476
|
* @param {string} id ID of the entitlement to patch
|
|
40849
40477
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40869,7 +40497,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40869
40497
|
*/
|
|
40870
40498
|
resetSourceEntitlements: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40871
40499
|
/**
|
|
40872
|
-
* 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.
|
|
40873
40501
|
* @summary Bulk update an entitlement list
|
|
40874
40502
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40875
40503
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40957,7 +40585,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40957
40585
|
/**
|
|
40958
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.
|
|
40959
40587
|
* @summary Gets a list of entitlements.
|
|
40960
|
-
* @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.
|
|
40961
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.
|
|
40962
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).
|
|
40963
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.
|
|
@@ -40971,7 +40599,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40971
40599
|
*/
|
|
40972
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>>>;
|
|
40973
40601
|
/**
|
|
40974
|
-
* 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.
|
|
40975
40603
|
* @summary Patch an entitlement
|
|
40976
40604
|
* @param {string} id ID of the entitlement to patch
|
|
40977
40605
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40997,7 +40625,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40997
40625
|
*/
|
|
40998
40626
|
resetSourceEntitlements(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>>;
|
|
40999
40627
|
/**
|
|
41000
|
-
* 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.
|
|
41001
40629
|
* @summary Bulk update an entitlement list
|
|
41002
40630
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
41003
40631
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41076,7 +40704,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
41076
40704
|
*/
|
|
41077
40705
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementBeta>>;
|
|
41078
40706
|
/**
|
|
41079
|
-
* 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.
|
|
41080
40708
|
* @summary Patch an entitlement
|
|
41081
40709
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
41082
40710
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41100,7 +40728,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
41100
40728
|
*/
|
|
41101
40729
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>;
|
|
41102
40730
|
/**
|
|
41103
|
-
* 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.
|
|
41104
40732
|
* @summary Bulk update an entitlement list
|
|
41105
40733
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
41106
40734
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41296,7 +40924,7 @@ export interface EntitlementsBetaApiListEntitlementParentsRequest {
|
|
|
41296
40924
|
*/
|
|
41297
40925
|
export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
41298
40926
|
/**
|
|
41299
|
-
* 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.
|
|
41300
40928
|
* @type {string}
|
|
41301
40929
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
41302
40930
|
*/
|
|
@@ -41495,7 +41123,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41495
41123
|
*/
|
|
41496
41124
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementBeta[], any>>;
|
|
41497
41125
|
/**
|
|
41498
|
-
* 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.
|
|
41499
41127
|
* @summary Patch an entitlement
|
|
41500
41128
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
41501
41129
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41522,7 +41150,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41522
41150
|
*/
|
|
41523
41151
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoBeta, any>>;
|
|
41524
41152
|
/**
|
|
41525
|
-
* 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.
|
|
41526
41154
|
* @summary Bulk update an entitlement list
|
|
41527
41155
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
41528
41156
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41605,7 +41233,7 @@ export declare const GovernanceGroupsBetaApiAxiosParamCreator: (configuration?:
|
|
|
41605
41233
|
* This API returns list of Governance Groups
|
|
41606
41234
|
* @summary List governance groups
|
|
41607
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.
|
|
41608
|
-
* @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.
|
|
41609
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.
|
|
41610
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*
|
|
41611
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**
|
|
@@ -41706,7 +41334,7 @@ export declare const GovernanceGroupsBetaApiFp: (configuration?: Configuration)
|
|
|
41706
41334
|
* This API returns list of Governance Groups
|
|
41707
41335
|
* @summary List governance groups
|
|
41708
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.
|
|
41709
|
-
* @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.
|
|
41710
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.
|
|
41711
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*
|
|
41712
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**
|
|
@@ -41977,7 +41605,7 @@ export interface GovernanceGroupsBetaApiListWorkgroupsRequest {
|
|
|
41977
41605
|
*/
|
|
41978
41606
|
readonly offset?: number;
|
|
41979
41607
|
/**
|
|
41980
|
-
*
|
|
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.
|
|
41981
41609
|
* @type {number}
|
|
41982
41610
|
* @memberof GovernanceGroupsBetaApiListWorkgroups
|
|
41983
41611
|
*/
|
|
@@ -57439,7 +57067,7 @@ export declare class SODViolationsBetaApi extends BaseAPI {
|
|
|
57439
57067
|
*/
|
|
57440
57068
|
export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
57441
57069
|
/**
|
|
57442
|
-
* 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).
|
|
57443
57071
|
* @summary Initiates configuration objects export job
|
|
57444
57072
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
57445
57073
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57471,7 +57099,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
57471
57099
|
*/
|
|
57472
57100
|
getSpConfigImport: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57473
57101
|
/**
|
|
57474
|
-
* 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).
|
|
57475
57103
|
* @summary Get import job status
|
|
57476
57104
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
57477
57105
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57479,7 +57107,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
57479
57107
|
*/
|
|
57480
57108
|
getSpConfigImportStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57481
57109
|
/**
|
|
57482
|
-
* 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).
|
|
57483
57111
|
* @summary Initiates configuration objects import job
|
|
57484
57112
|
* @param {File} data JSON file containing the objects to be imported.
|
|
57485
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.
|
|
@@ -57502,7 +57130,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
57502
57130
|
*/
|
|
57503
57131
|
export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
57504
57132
|
/**
|
|
57505
|
-
* 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).
|
|
57506
57134
|
* @summary Initiates configuration objects export job
|
|
57507
57135
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
57508
57136
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57534,7 +57162,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
57534
57162
|
*/
|
|
57535
57163
|
getSpConfigImport(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportResultsBeta>>;
|
|
57536
57164
|
/**
|
|
57537
|
-
* 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).
|
|
57538
57166
|
* @summary Get import job status
|
|
57539
57167
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
57540
57168
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57542,7 +57170,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
57542
57170
|
*/
|
|
57543
57171
|
getSpConfigImportStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigImportJobStatusBeta>>;
|
|
57544
57172
|
/**
|
|
57545
|
-
* 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).
|
|
57546
57174
|
* @summary Initiates configuration objects import job
|
|
57547
57175
|
* @param {File} data JSON file containing the objects to be imported.
|
|
57548
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.
|
|
@@ -57565,7 +57193,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
57565
57193
|
*/
|
|
57566
57194
|
export declare const SPConfigBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
57567
57195
|
/**
|
|
57568
|
-
* 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).
|
|
57569
57197
|
* @summary Initiates configuration objects export job
|
|
57570
57198
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
57571
57199
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57597,7 +57225,7 @@ export declare const SPConfigBetaApiFactory: (configuration?: Configuration, bas
|
|
|
57597
57225
|
*/
|
|
57598
57226
|
getSpConfigImport(requestParameters: SPConfigBetaApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportResultsBeta>;
|
|
57599
57227
|
/**
|
|
57600
|
-
* 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).
|
|
57601
57229
|
* @summary Get import job status
|
|
57602
57230
|
* @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
57603
57231
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57605,7 +57233,7 @@ export declare const SPConfigBetaApiFactory: (configuration?: Configuration, bas
|
|
|
57605
57233
|
*/
|
|
57606
57234
|
getSpConfigImportStatus(requestParameters: SPConfigBetaApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SpConfigImportJobStatusBeta>;
|
|
57607
57235
|
/**
|
|
57608
|
-
* 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).
|
|
57609
57237
|
* @summary Initiates configuration objects import job
|
|
57610
57238
|
* @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
|
|
57611
57239
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57718,7 +57346,7 @@ export interface SPConfigBetaApiImportSpConfigRequest {
|
|
|
57718
57346
|
*/
|
|
57719
57347
|
export declare class SPConfigBetaApi extends BaseAPI {
|
|
57720
57348
|
/**
|
|
57721
|
-
* 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).
|
|
57722
57350
|
* @summary Initiates configuration objects export job
|
|
57723
57351
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
57724
57352
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57754,7 +57382,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
57754
57382
|
*/
|
|
57755
57383
|
getSpConfigImport(requestParameters: SPConfigBetaApiGetSpConfigImportRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportResultsBeta, any>>;
|
|
57756
57384
|
/**
|
|
57757
|
-
* 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).
|
|
57758
57386
|
* @summary Get import job status
|
|
57759
57387
|
* @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
57760
57388
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57763,7 +57391,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
57763
57391
|
*/
|
|
57764
57392
|
getSpConfigImportStatus(requestParameters: SPConfigBetaApiGetSpConfigImportStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigImportJobStatusBeta, any>>;
|
|
57765
57393
|
/**
|
|
57766
|
-
* 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).
|
|
57767
57395
|
* @summary Initiates configuration objects import job
|
|
57768
57396
|
* @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
|
|
57769
57397
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58996,7 +58624,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
58996
58624
|
*/
|
|
58997
58625
|
_delete: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58998
58626
|
/**
|
|
58999
|
-
* 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.
|
|
59000
58628
|
* @summary Create provisioning policy
|
|
59001
58629
|
* @param {string} sourceId The Source id
|
|
59002
58630
|
* @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
|
|
@@ -59264,7 +58892,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
59264
58892
|
*/
|
|
59265
58893
|
putNativeChangeDetectionConfig: (sourceId: string, nativeChangeDetectionConfigBeta: NativeChangeDetectionConfigBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59266
58894
|
/**
|
|
59267
|
-
* 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.
|
|
59268
58896
|
* @summary Update provisioning policy by usagetype
|
|
59269
58897
|
* @param {string} sourceId The Source ID.
|
|
59270
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.
|
|
@@ -59335,7 +58963,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
59335
58963
|
*/
|
|
59336
58964
|
updateProvisioningPoliciesInBulk: (sourceId: string, provisioningPolicyDtoBeta: Array<ProvisioningPolicyDtoBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59337
58965
|
/**
|
|
59338
|
-
* 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.
|
|
59339
58967
|
* @summary Partial update of provisioning policy
|
|
59340
58968
|
* @param {string} sourceId The Source id.
|
|
59341
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.
|
|
@@ -59387,7 +59015,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
59387
59015
|
*/
|
|
59388
59016
|
_delete(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Delete202ResponseBeta>>;
|
|
59389
59017
|
/**
|
|
59390
|
-
* 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.
|
|
59391
59019
|
* @summary Create provisioning policy
|
|
59392
59020
|
* @param {string} sourceId The Source id
|
|
59393
59021
|
* @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
|
|
@@ -59655,7 +59283,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
59655
59283
|
*/
|
|
59656
59284
|
putNativeChangeDetectionConfig(sourceId: string, nativeChangeDetectionConfigBeta: NativeChangeDetectionConfigBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigBeta>>;
|
|
59657
59285
|
/**
|
|
59658
|
-
* 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.
|
|
59659
59287
|
* @summary Update provisioning policy by usagetype
|
|
59660
59288
|
* @param {string} sourceId The Source ID.
|
|
59661
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.
|
|
@@ -59726,7 +59354,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
59726
59354
|
*/
|
|
59727
59355
|
updateProvisioningPoliciesInBulk(sourceId: string, provisioningPolicyDtoBeta: Array<ProvisioningPolicyDtoBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoBeta>>>;
|
|
59728
59356
|
/**
|
|
59729
|
-
* 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.
|
|
59730
59358
|
* @summary Partial update of provisioning policy
|
|
59731
59359
|
* @param {string} sourceId The Source id.
|
|
59732
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.
|
|
@@ -59778,7 +59406,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
59778
59406
|
*/
|
|
59779
59407
|
_delete(requestParameters: SourcesBetaApiDeleteRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Delete202ResponseBeta>;
|
|
59780
59408
|
/**
|
|
59781
|
-
* 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.
|
|
59782
59410
|
* @summary Create provisioning policy
|
|
59783
59411
|
* @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59784
59412
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60018,7 +59646,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
60018
59646
|
*/
|
|
60019
59647
|
putNativeChangeDetectionConfig(requestParameters: SourcesBetaApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NativeChangeDetectionConfigBeta>;
|
|
60020
59648
|
/**
|
|
60021
|
-
* 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.
|
|
60022
59650
|
* @summary Update provisioning policy by usagetype
|
|
60023
59651
|
* @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60024
59652
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60082,7 +59710,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
60082
59710
|
*/
|
|
60083
59711
|
updateProvisioningPoliciesInBulk(requestParameters: SourcesBetaApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDtoBeta>>;
|
|
60084
59712
|
/**
|
|
60085
|
-
* 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.
|
|
60086
59714
|
* @summary Partial update of provisioning policy
|
|
60087
59715
|
* @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60088
59716
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60936,7 +60564,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
60936
60564
|
*/
|
|
60937
60565
|
_delete(requestParameters: SourcesBetaApiDeleteRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Delete202ResponseBeta, any>>;
|
|
60938
60566
|
/**
|
|
60939
|
-
* 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.
|
|
60940
60568
|
* @summary Create provisioning policy
|
|
60941
60569
|
* @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60942
60570
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61206,7 +60834,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
61206
60834
|
*/
|
|
61207
60835
|
putNativeChangeDetectionConfig(requestParameters: SourcesBetaApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NativeChangeDetectionConfigBeta, any>>;
|
|
61208
60836
|
/**
|
|
61209
|
-
* 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.
|
|
61210
60838
|
* @summary Update provisioning policy by usagetype
|
|
61211
60839
|
* @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
61212
60840
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61278,7 +60906,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
61278
60906
|
*/
|
|
61279
60907
|
updateProvisioningPoliciesInBulk(requestParameters: SourcesBetaApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningPolicyDtoBeta[], any>>;
|
|
61280
60908
|
/**
|
|
61281
|
-
* 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.
|
|
61282
60910
|
* @summary Partial update of provisioning policy
|
|
61283
60911
|
* @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
61284
60912
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61823,7 +61451,7 @@ export declare const TaggedObjectsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
61823
61451
|
*/
|
|
61824
61452
|
getTaggedObject: (type: GetTaggedObjectTypeBeta, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61825
61453
|
/**
|
|
61826
|
-
* This API returns a list of all tagged objects.
|
|
61454
|
+
* This API returns a list of all tagged objects.
|
|
61827
61455
|
* @summary List tagged objects
|
|
61828
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.
|
|
61829
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.
|
|
@@ -61834,7 +61462,7 @@ export declare const TaggedObjectsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
61834
61462
|
*/
|
|
61835
61463
|
listTaggedObjects: (limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61836
61464
|
/**
|
|
61837
|
-
* This API returns a list of all tagged objects by type.
|
|
61465
|
+
* This API returns a list of all tagged objects by type.
|
|
61838
61466
|
* @summary List tagged objects by type
|
|
61839
61467
|
* @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
|
|
61840
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.
|
|
@@ -61856,7 +61484,7 @@ export declare const TaggedObjectsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
61856
61484
|
*/
|
|
61857
61485
|
putTaggedObject: (type: PutTaggedObjectTypeBeta, id: string, taggedObjectBeta: TaggedObjectBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61858
61486
|
/**
|
|
61859
|
-
* This adds a tag to an object.
|
|
61487
|
+
* This adds a tag to an object.
|
|
61860
61488
|
* @summary Add tag to object
|
|
61861
61489
|
* @param {TaggedObjectBeta} taggedObjectBeta
|
|
61862
61490
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61904,7 +61532,7 @@ export declare const TaggedObjectsBetaApiFp: (configuration?: Configuration) =>
|
|
|
61904
61532
|
*/
|
|
61905
61533
|
getTaggedObject(type: GetTaggedObjectTypeBeta, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectBeta>>;
|
|
61906
61534
|
/**
|
|
61907
|
-
* This API returns a list of all tagged objects.
|
|
61535
|
+
* This API returns a list of all tagged objects.
|
|
61908
61536
|
* @summary List tagged objects
|
|
61909
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.
|
|
61910
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.
|
|
@@ -61915,7 +61543,7 @@ export declare const TaggedObjectsBetaApiFp: (configuration?: Configuration) =>
|
|
|
61915
61543
|
*/
|
|
61916
61544
|
listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObjectBeta>>>;
|
|
61917
61545
|
/**
|
|
61918
|
-
* This API returns a list of all tagged objects by type.
|
|
61546
|
+
* This API returns a list of all tagged objects by type.
|
|
61919
61547
|
* @summary List tagged objects by type
|
|
61920
61548
|
* @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
|
|
61921
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.
|
|
@@ -61937,7 +61565,7 @@ export declare const TaggedObjectsBetaApiFp: (configuration?: Configuration) =>
|
|
|
61937
61565
|
*/
|
|
61938
61566
|
putTaggedObject(type: PutTaggedObjectTypeBeta, id: string, taggedObjectBeta: TaggedObjectBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectBeta>>;
|
|
61939
61567
|
/**
|
|
61940
|
-
* This adds a tag to an object.
|
|
61568
|
+
* This adds a tag to an object.
|
|
61941
61569
|
* @summary Add tag to object
|
|
61942
61570
|
* @param {TaggedObjectBeta} taggedObjectBeta
|
|
61943
61571
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61983,7 +61611,7 @@ export declare const TaggedObjectsBetaApiFactory: (configuration?: Configuration
|
|
|
61983
61611
|
*/
|
|
61984
61612
|
getTaggedObject(requestParameters: TaggedObjectsBetaApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectBeta>;
|
|
61985
61613
|
/**
|
|
61986
|
-
* This API returns a list of all tagged objects.
|
|
61614
|
+
* This API returns a list of all tagged objects.
|
|
61987
61615
|
* @summary List tagged objects
|
|
61988
61616
|
* @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
61989
61617
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61991,7 +61619,7 @@ export declare const TaggedObjectsBetaApiFactory: (configuration?: Configuration
|
|
|
61991
61619
|
*/
|
|
61992
61620
|
listTaggedObjects(requestParameters?: TaggedObjectsBetaApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaggedObjectBeta>>;
|
|
61993
61621
|
/**
|
|
61994
|
-
* This API returns a list of all tagged objects by type.
|
|
61622
|
+
* This API returns a list of all tagged objects by type.
|
|
61995
61623
|
* @summary List tagged objects by type
|
|
61996
61624
|
* @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
61997
61625
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62007,7 +61635,7 @@ export declare const TaggedObjectsBetaApiFactory: (configuration?: Configuration
|
|
|
62007
61635
|
*/
|
|
62008
61636
|
putTaggedObject(requestParameters: TaggedObjectsBetaApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObjectBeta>;
|
|
62009
61637
|
/**
|
|
62010
|
-
* This adds a tag to an object.
|
|
61638
|
+
* This adds a tag to an object.
|
|
62011
61639
|
* @summary Add tag to object
|
|
62012
61640
|
* @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
62013
61641
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62228,7 +61856,7 @@ export declare class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
62228
61856
|
*/
|
|
62229
61857
|
getTaggedObject(requestParameters: TaggedObjectsBetaApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectBeta, any>>;
|
|
62230
61858
|
/**
|
|
62231
|
-
* This API returns a list of all tagged objects.
|
|
61859
|
+
* This API returns a list of all tagged objects.
|
|
62232
61860
|
* @summary List tagged objects
|
|
62233
61861
|
* @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
62234
61862
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62237,7 +61865,7 @@ export declare class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
62237
61865
|
*/
|
|
62238
61866
|
listTaggedObjects(requestParameters?: TaggedObjectsBetaApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectBeta[], any>>;
|
|
62239
61867
|
/**
|
|
62240
|
-
* This API returns a list of all tagged objects by type.
|
|
61868
|
+
* This API returns a list of all tagged objects by type.
|
|
62241
61869
|
* @summary List tagged objects by type
|
|
62242
61870
|
* @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
62243
61871
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62255,7 +61883,7 @@ export declare class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
62255
61883
|
*/
|
|
62256
61884
|
putTaggedObject(requestParameters: TaggedObjectsBetaApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObjectBeta, any>>;
|
|
62257
61885
|
/**
|
|
62258
|
-
* This adds a tag to an object.
|
|
61886
|
+
* This adds a tag to an object.
|
|
62259
61887
|
* @summary Add tag to object
|
|
62260
61888
|
* @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
62261
61889
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -63957,153 +63585,6 @@ export declare class UIMetadataBetaApi extends BaseAPI {
|
|
|
63957
63585
|
*/
|
|
63958
63586
|
setTenantUiMetadata(requestParameters: UIMetadataBetaApiSetTenantUiMetadataRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TenantUiMetadataItemResponseBeta, any>>;
|
|
63959
63587
|
}
|
|
63960
|
-
/**
|
|
63961
|
-
* VendorConnectorMappingsBetaApi - axios parameter creator
|
|
63962
|
-
* @export
|
|
63963
|
-
*/
|
|
63964
|
-
export declare const VendorConnectorMappingsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
63965
|
-
/**
|
|
63966
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
63967
|
-
* @summary Create vendor connector mapping
|
|
63968
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63969
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63970
|
-
* @throws {RequiredError}
|
|
63971
|
-
*/
|
|
63972
|
-
createVendorConnectorMapping: (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63973
|
-
/**
|
|
63974
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
63975
|
-
* @summary Delete vendor connector mapping
|
|
63976
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63977
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63978
|
-
* @throws {RequiredError}
|
|
63979
|
-
*/
|
|
63980
|
-
deleteVendorConnectorMapping: (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63981
|
-
/**
|
|
63982
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
63983
|
-
* @summary List vendor connector mappings
|
|
63984
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63985
|
-
* @throws {RequiredError}
|
|
63986
|
-
*/
|
|
63987
|
-
getVendorConnectorMappings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63988
|
-
};
|
|
63989
|
-
/**
|
|
63990
|
-
* VendorConnectorMappingsBetaApi - functional programming interface
|
|
63991
|
-
* @export
|
|
63992
|
-
*/
|
|
63993
|
-
export declare const VendorConnectorMappingsBetaApiFp: (configuration?: Configuration) => {
|
|
63994
|
-
/**
|
|
63995
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
63996
|
-
* @summary Create vendor connector mapping
|
|
63997
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
63998
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
63999
|
-
* @throws {RequiredError}
|
|
64000
|
-
*/
|
|
64001
|
-
createVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingBeta>>;
|
|
64002
|
-
/**
|
|
64003
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
64004
|
-
* @summary Delete vendor connector mapping
|
|
64005
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
64006
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64007
|
-
* @throws {RequiredError}
|
|
64008
|
-
*/
|
|
64009
|
-
deleteVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta>>;
|
|
64010
|
-
/**
|
|
64011
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
64012
|
-
* @summary List vendor connector mappings
|
|
64013
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64014
|
-
* @throws {RequiredError}
|
|
64015
|
-
*/
|
|
64016
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingBeta>>>;
|
|
64017
|
-
};
|
|
64018
|
-
/**
|
|
64019
|
-
* VendorConnectorMappingsBetaApi - factory interface
|
|
64020
|
-
* @export
|
|
64021
|
-
*/
|
|
64022
|
-
export declare const VendorConnectorMappingsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
64023
|
-
/**
|
|
64024
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
64025
|
-
* @summary Create vendor connector mapping
|
|
64026
|
-
* @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
64027
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64028
|
-
* @throws {RequiredError}
|
|
64029
|
-
*/
|
|
64030
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingBeta>;
|
|
64031
|
-
/**
|
|
64032
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
64033
|
-
* @summary Delete vendor connector mapping
|
|
64034
|
-
* @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
64035
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64036
|
-
* @throws {RequiredError}
|
|
64037
|
-
*/
|
|
64038
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta>;
|
|
64039
|
-
/**
|
|
64040
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
64041
|
-
* @summary List vendor connector mappings
|
|
64042
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64043
|
-
* @throws {RequiredError}
|
|
64044
|
-
*/
|
|
64045
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingBeta>>;
|
|
64046
|
-
};
|
|
64047
|
-
/**
|
|
64048
|
-
* Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
|
|
64049
|
-
* @export
|
|
64050
|
-
* @interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest
|
|
64051
|
-
*/
|
|
64052
|
-
export interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest {
|
|
64053
|
-
/**
|
|
64054
|
-
*
|
|
64055
|
-
* @type {VendorConnectorMappingBeta}
|
|
64056
|
-
* @memberof VendorConnectorMappingsBetaApiCreateVendorConnectorMapping
|
|
64057
|
-
*/
|
|
64058
|
-
readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta;
|
|
64059
|
-
}
|
|
64060
|
-
/**
|
|
64061
|
-
* Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
|
|
64062
|
-
* @export
|
|
64063
|
-
* @interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest
|
|
64064
|
-
*/
|
|
64065
|
-
export interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest {
|
|
64066
|
-
/**
|
|
64067
|
-
*
|
|
64068
|
-
* @type {VendorConnectorMappingBeta}
|
|
64069
|
-
* @memberof VendorConnectorMappingsBetaApiDeleteVendorConnectorMapping
|
|
64070
|
-
*/
|
|
64071
|
-
readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta;
|
|
64072
|
-
}
|
|
64073
|
-
/**
|
|
64074
|
-
* VendorConnectorMappingsBetaApi - object-oriented interface
|
|
64075
|
-
* @export
|
|
64076
|
-
* @class VendorConnectorMappingsBetaApi
|
|
64077
|
-
* @extends {BaseAPI}
|
|
64078
|
-
*/
|
|
64079
|
-
export declare class VendorConnectorMappingsBetaApi extends BaseAPI {
|
|
64080
|
-
/**
|
|
64081
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
64082
|
-
* @summary Create vendor connector mapping
|
|
64083
|
-
* @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
64084
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64085
|
-
* @throws {RequiredError}
|
|
64086
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
64087
|
-
*/
|
|
64088
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingBeta, any>>;
|
|
64089
|
-
/**
|
|
64090
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
64091
|
-
* @summary Delete vendor connector mapping
|
|
64092
|
-
* @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
64093
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64094
|
-
* @throws {RequiredError}
|
|
64095
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
64096
|
-
*/
|
|
64097
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteVendorConnectorMapping200ResponseBeta, any>>;
|
|
64098
|
-
/**
|
|
64099
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
64100
|
-
* @summary List vendor connector mappings
|
|
64101
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
64102
|
-
* @throws {RequiredError}
|
|
64103
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
64104
|
-
*/
|
|
64105
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMappingBeta[], any>>;
|
|
64106
|
-
}
|
|
64107
63588
|
/**
|
|
64108
63589
|
* WorkItemsBetaApi - axios parameter creator
|
|
64109
63590
|
* @export
|
|
@@ -65450,12 +64931,12 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
65450
64931
|
* @summary List workflows
|
|
65451
64932
|
* @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.
|
|
65452
64933
|
* @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.
|
|
65453
|
-
* @param {string} [
|
|
65454
|
-
* @param {string} [
|
|
64934
|
+
* @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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
|
|
64935
|
+
* @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: **modified, name**
|
|
65455
64936
|
* @param {*} [axiosOptions] Override http request option.
|
|
65456
64937
|
* @throws {RequiredError}
|
|
65457
64938
|
*/
|
|
65458
|
-
listWorkflows: (limit?: number, offset?: number,
|
|
64939
|
+
listWorkflows: (limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65459
64940
|
/**
|
|
65460
64941
|
* Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
|
|
65461
64942
|
* @summary Patch workflow
|
|
@@ -65501,7 +64982,7 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
65501
64982
|
*/
|
|
65502
64983
|
testExternalExecuteWorkflow: (id: string, testExternalExecuteWorkflowRequestBeta?: TestExternalExecuteWorkflowRequestBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65503
64984
|
/**
|
|
65504
|
-
* 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.**
|
|
65505
64986
|
* @summary Test workflow by id
|
|
65506
64987
|
* @param {string} id Id of the workflow
|
|
65507
64988
|
* @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
|
|
@@ -65616,12 +65097,12 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
|
|
|
65616
65097
|
* @summary List workflows
|
|
65617
65098
|
* @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.
|
|
65618
65099
|
* @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.
|
|
65619
|
-
* @param {string} [
|
|
65620
|
-
* @param {string} [
|
|
65100
|
+
* @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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
|
|
65101
|
+
* @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: **modified, name**
|
|
65621
65102
|
* @param {*} [axiosOptions] Override http request option.
|
|
65622
65103
|
* @throws {RequiredError}
|
|
65623
65104
|
*/
|
|
65624
|
-
listWorkflows(limit?: number, offset?: number,
|
|
65105
|
+
listWorkflows(limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>>;
|
|
65625
65106
|
/**
|
|
65626
65107
|
* Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
|
|
65627
65108
|
* @summary Patch workflow
|
|
@@ -65667,7 +65148,7 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
|
|
|
65667
65148
|
*/
|
|
65668
65149
|
testExternalExecuteWorkflow(id: string, testExternalExecuteWorkflowRequestBeta?: TestExternalExecuteWorkflowRequestBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestExternalExecuteWorkflow200ResponseBeta>>;
|
|
65669
65150
|
/**
|
|
65670
|
-
* 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.**
|
|
65671
65152
|
* @summary Test workflow by id
|
|
65672
65153
|
* @param {string} id Id of the workflow
|
|
65673
65154
|
* @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
|
|
@@ -65817,7 +65298,7 @@ export declare const WorkflowsBetaApiFactory: (configuration?: Configuration, ba
|
|
|
65817
65298
|
*/
|
|
65818
65299
|
testExternalExecuteWorkflow(requestParameters: WorkflowsBetaApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestExternalExecuteWorkflow200ResponseBeta>;
|
|
65819
65300
|
/**
|
|
65820
|
-
* 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.**
|
|
65821
65302
|
* @summary Test workflow by id
|
|
65822
65303
|
* @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
|
|
65823
65304
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -66028,17 +65509,17 @@ export interface WorkflowsBetaApiListWorkflowsRequest {
|
|
|
66028
65509
|
*/
|
|
66029
65510
|
readonly offset?: number;
|
|
66030
65511
|
/**
|
|
66031
|
-
*
|
|
65512
|
+
* 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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
|
|
66032
65513
|
* @type {string}
|
|
66033
65514
|
* @memberof WorkflowsBetaApiListWorkflows
|
|
66034
65515
|
*/
|
|
66035
|
-
readonly
|
|
65516
|
+
readonly filters?: string;
|
|
66036
65517
|
/**
|
|
66037
|
-
*
|
|
65518
|
+
* 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: **modified, name**
|
|
66038
65519
|
* @type {string}
|
|
66039
65520
|
* @memberof WorkflowsBetaApiListWorkflows
|
|
66040
65521
|
*/
|
|
66041
|
-
readonly
|
|
65522
|
+
readonly sorters?: string;
|
|
66042
65523
|
}
|
|
66043
65524
|
/**
|
|
66044
65525
|
* Request parameters for patchWorkflow operation in WorkflowsBetaApi.
|
|
@@ -66308,7 +65789,7 @@ export declare class WorkflowsBetaApi extends BaseAPI {
|
|
|
66308
65789
|
*/
|
|
66309
65790
|
testExternalExecuteWorkflow(requestParameters: WorkflowsBetaApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestExternalExecuteWorkflow200ResponseBeta, any>>;
|
|
66310
65791
|
/**
|
|
66311
|
-
* 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.**
|
|
66312
65793
|
* @summary Test workflow by id
|
|
66313
65794
|
* @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
|
|
66314
65795
|
* @param {*} [axiosOptions] Override http request option.
|