sailpoint-api-client 1.7.1 → 1.7.5
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/.openapi-generator/VERSION +1 -1
- package/beta/README.md +2 -2
- package/beta/api.ts +485 -56
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +258 -39
- package/dist/beta/api.js +475 -28
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +3 -3
- package/dist/index.spec.js.map +1 -1
- package/dist/v2024/api.d.ts +275 -69
- package/dist/v2024/api.js +497 -63
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +848 -94
- package/dist/v2025/api.js +1224 -126
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +21 -8
- package/dist/v3/api.js +9 -8
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +3 -3
- package/package.json +15 -2
- package/v2024/.openapi-generator/VERSION +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +509 -109
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/.openapi-generator/VERSION +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +1436 -193
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/.openapi-generator/VERSION +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/.openapi-generator/VERSION +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +22 -9
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2025/api.d.ts
CHANGED
|
@@ -3122,13 +3122,14 @@ export interface AccessRequestTrackingV2025 {
|
|
|
3122
3122
|
'accessRequestIds'?: Array<string>;
|
|
3123
3123
|
}
|
|
3124
3124
|
/**
|
|
3125
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
3125
|
+
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
|
|
3126
3126
|
* @export
|
|
3127
3127
|
* @enum {string}
|
|
3128
3128
|
*/
|
|
3129
3129
|
export declare const AccessRequestTypeV2025: {
|
|
3130
3130
|
readonly GrantAccess: "GRANT_ACCESS";
|
|
3131
3131
|
readonly RevokeAccess: "REVOKE_ACCESS";
|
|
3132
|
+
readonly ModifyAccess: "MODIFY_ACCESS";
|
|
3132
3133
|
};
|
|
3133
3134
|
export type AccessRequestTypeV2025 = typeof AccessRequestTypeV2025[keyof typeof AccessRequestTypeV2025];
|
|
3134
3135
|
/**
|
|
@@ -7233,13 +7234,13 @@ export interface ApprovalConfigV2025 {
|
|
|
7233
7234
|
*/
|
|
7234
7235
|
'tenantId'?: string;
|
|
7235
7236
|
/**
|
|
7236
|
-
* ID
|
|
7237
|
+
* The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
7237
7238
|
* @type {string}
|
|
7238
7239
|
* @memberof ApprovalConfigV2025
|
|
7239
7240
|
*/
|
|
7240
7241
|
'id'?: string;
|
|
7241
7242
|
/**
|
|
7242
|
-
* The
|
|
7243
|
+
* The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
7243
7244
|
* @type {string}
|
|
7244
7245
|
* @memberof ApprovalConfigV2025
|
|
7245
7246
|
*/
|
|
@@ -8654,7 +8655,10 @@ export interface AttributeMappingsAllOfTargetV2025 {
|
|
|
8654
8655
|
'sourceId'?: string;
|
|
8655
8656
|
}
|
|
8656
8657
|
export declare const AttributeMappingsAllOfTargetV2025TypeV2025: {
|
|
8658
|
+
readonly Account: "ACCOUNT";
|
|
8657
8659
|
readonly Identity: "IDENTITY";
|
|
8660
|
+
readonly OwnerAccount: "OWNER_ACCOUNT";
|
|
8661
|
+
readonly OwnerIdentity: "OWNER_IDENTITY";
|
|
8658
8662
|
};
|
|
8659
8663
|
export type AttributeMappingsAllOfTargetV2025TypeV2025 = typeof AttributeMappingsAllOfTargetV2025TypeV2025[keyof typeof AttributeMappingsAllOfTargetV2025TypeV2025];
|
|
8660
8664
|
/**
|
|
@@ -20772,6 +20776,12 @@ export interface GetRoleAssignments200ResponseInnerV2025 {
|
|
|
20772
20776
|
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
20773
20777
|
*/
|
|
20774
20778
|
'addedDate'?: string;
|
|
20779
|
+
/**
|
|
20780
|
+
* Date that the assignment will be removed
|
|
20781
|
+
* @type {string}
|
|
20782
|
+
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
20783
|
+
*/
|
|
20784
|
+
'removeDate'?: string | null;
|
|
20775
20785
|
/**
|
|
20776
20786
|
* Comments added by the user when the assignment was made
|
|
20777
20787
|
* @type {string}
|
|
@@ -20808,12 +20818,6 @@ export interface GetRoleAssignments200ResponseInnerV2025 {
|
|
|
20808
20818
|
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
20809
20819
|
*/
|
|
20810
20820
|
'accountTargets'?: Array<RoleTargetDtoV2025>;
|
|
20811
|
-
/**
|
|
20812
|
-
* Date that the assignment will be removed
|
|
20813
|
-
* @type {string}
|
|
20814
|
-
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
20815
|
-
*/
|
|
20816
|
-
'removeDate'?: string | null;
|
|
20817
20821
|
}
|
|
20818
20822
|
/**
|
|
20819
20823
|
*
|
|
@@ -34902,6 +34906,18 @@ export interface RequestabilityForRoleV2025 {
|
|
|
34902
34906
|
* @memberof RequestabilityForRoleV2025
|
|
34903
34907
|
*/
|
|
34904
34908
|
'reauthorizationRequired'?: boolean | null;
|
|
34909
|
+
/**
|
|
34910
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
34911
|
+
* @type {boolean}
|
|
34912
|
+
* @memberof RequestabilityForRoleV2025
|
|
34913
|
+
*/
|
|
34914
|
+
'requireEndDate'?: boolean;
|
|
34915
|
+
/**
|
|
34916
|
+
*
|
|
34917
|
+
* @type {AccessDurationV2025}
|
|
34918
|
+
* @memberof RequestabilityForRoleV2025
|
|
34919
|
+
*/
|
|
34920
|
+
'maxPermittedAccessDuration'?: AccessDurationV2025 | null;
|
|
34905
34921
|
/**
|
|
34906
34922
|
* List describing the steps in approving the request
|
|
34907
34923
|
* @type {Array<ApprovalSchemeForRoleV2025>}
|
|
@@ -36595,6 +36611,12 @@ export interface RoleAssignmentRefV2025 {
|
|
|
36595
36611
|
* @memberof RoleAssignmentRefV2025
|
|
36596
36612
|
*/
|
|
36597
36613
|
'addedDate'?: string;
|
|
36614
|
+
/**
|
|
36615
|
+
* Date that the assignment will be removed
|
|
36616
|
+
* @type {string}
|
|
36617
|
+
* @memberof RoleAssignmentRefV2025
|
|
36618
|
+
*/
|
|
36619
|
+
'removeDate'?: string | null;
|
|
36598
36620
|
}
|
|
36599
36621
|
/**
|
|
36600
36622
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -39006,6 +39028,246 @@ export interface RoleMiningSessionStatusV2025 {
|
|
|
39006
39028
|
*/
|
|
39007
39029
|
'state'?: RoleMiningSessionStateV2025;
|
|
39008
39030
|
}
|
|
39031
|
+
/**
|
|
39032
|
+
* Details of the ongoing role propagation process
|
|
39033
|
+
* @export
|
|
39034
|
+
* @interface RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39035
|
+
*/
|
|
39036
|
+
export interface RolePropagationOngoingResponseRolePropagationDetailsV2025 {
|
|
39037
|
+
/**
|
|
39038
|
+
* Id of the Role Propagation process triggered.
|
|
39039
|
+
* @type {string}
|
|
39040
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39041
|
+
*/
|
|
39042
|
+
'id'?: string;
|
|
39043
|
+
/**
|
|
39044
|
+
* Status of the Role Propagation process.
|
|
39045
|
+
* @type {string}
|
|
39046
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39047
|
+
*/
|
|
39048
|
+
'status'?: RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025;
|
|
39049
|
+
/**
|
|
39050
|
+
* Current execution stage of the Role Propagation process.
|
|
39051
|
+
* @type {string}
|
|
39052
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39053
|
+
*/
|
|
39054
|
+
'executionStage'?: RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025;
|
|
39055
|
+
/**
|
|
39056
|
+
* Time when the Role Propagation process was launched.
|
|
39057
|
+
* @type {string}
|
|
39058
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39059
|
+
*/
|
|
39060
|
+
'launched'?: string;
|
|
39061
|
+
/**
|
|
39062
|
+
*
|
|
39063
|
+
* @type {RolePropagationStatusResponseLaunchedByV2025}
|
|
39064
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39065
|
+
*/
|
|
39066
|
+
'launchedBy'?: RolePropagationStatusResponseLaunchedByV2025;
|
|
39067
|
+
/**
|
|
39068
|
+
*
|
|
39069
|
+
* @type {RolePropagationStatusResponseTerminatedByV2025}
|
|
39070
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39071
|
+
*/
|
|
39072
|
+
'terminatedBy'?: RolePropagationStatusResponseTerminatedByV2025;
|
|
39073
|
+
/**
|
|
39074
|
+
* Time when the Role Propagation process was completed.
|
|
39075
|
+
* @type {string}
|
|
39076
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39077
|
+
*/
|
|
39078
|
+
'completed'?: string;
|
|
39079
|
+
/**
|
|
39080
|
+
* Reason for failure if the Role Propagation process failed.
|
|
39081
|
+
* @type {string}
|
|
39082
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39083
|
+
*/
|
|
39084
|
+
'failureReason'?: string;
|
|
39085
|
+
/**
|
|
39086
|
+
* Indicates if the role refresh was skipped during the Role Propagation process.
|
|
39087
|
+
* @type {boolean}
|
|
39088
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
39089
|
+
*/
|
|
39090
|
+
'skipRoleRefresh'?: boolean;
|
|
39091
|
+
}
|
|
39092
|
+
export declare const RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025: {
|
|
39093
|
+
readonly Running: "RUNNING";
|
|
39094
|
+
readonly Completed: "COMPLETED";
|
|
39095
|
+
};
|
|
39096
|
+
export type RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025 = typeof RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025[keyof typeof RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025];
|
|
39097
|
+
export declare const RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025: {
|
|
39098
|
+
readonly Pending: "PENDING";
|
|
39099
|
+
readonly DataAggregationRunning: "DATA_AGGREGATION_RUNNING";
|
|
39100
|
+
readonly LaunchProvisioning: "LAUNCH_PROVISIONING";
|
|
39101
|
+
readonly Succeeded: "SUCCEEDED";
|
|
39102
|
+
readonly Failed: "FAILED";
|
|
39103
|
+
readonly Terminated: "TERMINATED";
|
|
39104
|
+
};
|
|
39105
|
+
export type RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025 = typeof RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025[keyof typeof RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025];
|
|
39106
|
+
/**
|
|
39107
|
+
* Running Role Propagation Response
|
|
39108
|
+
* @export
|
|
39109
|
+
* @interface RolePropagationOngoingResponseV2025
|
|
39110
|
+
*/
|
|
39111
|
+
export interface RolePropagationOngoingResponseV2025 {
|
|
39112
|
+
/**
|
|
39113
|
+
* Indicates if the role propagation process is currently running on the tenant
|
|
39114
|
+
* @type {boolean}
|
|
39115
|
+
* @memberof RolePropagationOngoingResponseV2025
|
|
39116
|
+
*/
|
|
39117
|
+
'isRunning'?: boolean;
|
|
39118
|
+
/**
|
|
39119
|
+
*
|
|
39120
|
+
* @type {RolePropagationOngoingResponseRolePropagationDetailsV2025}
|
|
39121
|
+
* @memberof RolePropagationOngoingResponseV2025
|
|
39122
|
+
*/
|
|
39123
|
+
'rolePropagationDetails'?: RolePropagationOngoingResponseRolePropagationDetailsV2025;
|
|
39124
|
+
}
|
|
39125
|
+
/**
|
|
39126
|
+
* Role Propagation Response
|
|
39127
|
+
* @export
|
|
39128
|
+
* @interface RolePropagationResponseV2025
|
|
39129
|
+
*/
|
|
39130
|
+
export interface RolePropagationResponseV2025 {
|
|
39131
|
+
/**
|
|
39132
|
+
* Id of the Role Propagation process triggered.
|
|
39133
|
+
* @type {string}
|
|
39134
|
+
* @memberof RolePropagationResponseV2025
|
|
39135
|
+
*/
|
|
39136
|
+
'rolePropagationId'?: string;
|
|
39137
|
+
}
|
|
39138
|
+
/**
|
|
39139
|
+
* Identity who launched the Role Propagation process.
|
|
39140
|
+
* @export
|
|
39141
|
+
* @interface RolePropagationStatusResponseLaunchedByV2025
|
|
39142
|
+
*/
|
|
39143
|
+
export interface RolePropagationStatusResponseLaunchedByV2025 {
|
|
39144
|
+
/**
|
|
39145
|
+
* DTO type of the identity who launched the Role Propagation process.
|
|
39146
|
+
* @type {string}
|
|
39147
|
+
* @memberof RolePropagationStatusResponseLaunchedByV2025
|
|
39148
|
+
*/
|
|
39149
|
+
'type'?: RolePropagationStatusResponseLaunchedByV2025TypeV2025;
|
|
39150
|
+
/**
|
|
39151
|
+
* ID of the identity who launched the Role Propagation process.
|
|
39152
|
+
* @type {string}
|
|
39153
|
+
* @memberof RolePropagationStatusResponseLaunchedByV2025
|
|
39154
|
+
*/
|
|
39155
|
+
'id'?: string;
|
|
39156
|
+
/**
|
|
39157
|
+
* Name of the identity who launched the Role Propagation process.
|
|
39158
|
+
* @type {string}
|
|
39159
|
+
* @memberof RolePropagationStatusResponseLaunchedByV2025
|
|
39160
|
+
*/
|
|
39161
|
+
'name'?: string;
|
|
39162
|
+
}
|
|
39163
|
+
export declare const RolePropagationStatusResponseLaunchedByV2025TypeV2025: {
|
|
39164
|
+
readonly Identity: "IDENTITY";
|
|
39165
|
+
};
|
|
39166
|
+
export type RolePropagationStatusResponseLaunchedByV2025TypeV2025 = typeof RolePropagationStatusResponseLaunchedByV2025TypeV2025[keyof typeof RolePropagationStatusResponseLaunchedByV2025TypeV2025];
|
|
39167
|
+
/**
|
|
39168
|
+
* Identity who terminated the Role Propagation process.
|
|
39169
|
+
* @export
|
|
39170
|
+
* @interface RolePropagationStatusResponseTerminatedByV2025
|
|
39171
|
+
*/
|
|
39172
|
+
export interface RolePropagationStatusResponseTerminatedByV2025 {
|
|
39173
|
+
/**
|
|
39174
|
+
* DTO type of the Identity who terminated the Role Propagation process.
|
|
39175
|
+
* @type {string}
|
|
39176
|
+
* @memberof RolePropagationStatusResponseTerminatedByV2025
|
|
39177
|
+
*/
|
|
39178
|
+
'type'?: RolePropagationStatusResponseTerminatedByV2025TypeV2025;
|
|
39179
|
+
/**
|
|
39180
|
+
* ID of the Identity who terminated the Role Propagation process.
|
|
39181
|
+
* @type {string}
|
|
39182
|
+
* @memberof RolePropagationStatusResponseTerminatedByV2025
|
|
39183
|
+
*/
|
|
39184
|
+
'id'?: string;
|
|
39185
|
+
/**
|
|
39186
|
+
* Name of the Identity who terminated the Role Propagation process.
|
|
39187
|
+
* @type {string}
|
|
39188
|
+
* @memberof RolePropagationStatusResponseTerminatedByV2025
|
|
39189
|
+
*/
|
|
39190
|
+
'name'?: string;
|
|
39191
|
+
}
|
|
39192
|
+
export declare const RolePropagationStatusResponseTerminatedByV2025TypeV2025: {
|
|
39193
|
+
readonly Identity: "IDENTITY";
|
|
39194
|
+
};
|
|
39195
|
+
export type RolePropagationStatusResponseTerminatedByV2025TypeV2025 = typeof RolePropagationStatusResponseTerminatedByV2025TypeV2025[keyof typeof RolePropagationStatusResponseTerminatedByV2025TypeV2025];
|
|
39196
|
+
/**
|
|
39197
|
+
* Role Propagation Status Response
|
|
39198
|
+
* @export
|
|
39199
|
+
* @interface RolePropagationStatusResponseV2025
|
|
39200
|
+
*/
|
|
39201
|
+
export interface RolePropagationStatusResponseV2025 {
|
|
39202
|
+
/**
|
|
39203
|
+
* Id of the Role Propagation process triggered.
|
|
39204
|
+
* @type {string}
|
|
39205
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39206
|
+
*/
|
|
39207
|
+
'id'?: string;
|
|
39208
|
+
/**
|
|
39209
|
+
* Status of the Role Propagation process.
|
|
39210
|
+
* @type {string}
|
|
39211
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39212
|
+
*/
|
|
39213
|
+
'status'?: RolePropagationStatusResponseV2025StatusV2025;
|
|
39214
|
+
/**
|
|
39215
|
+
* Current execution stage of the Role Propagation process.
|
|
39216
|
+
* @type {string}
|
|
39217
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39218
|
+
*/
|
|
39219
|
+
'executionStage'?: RolePropagationStatusResponseV2025ExecutionStageV2025;
|
|
39220
|
+
/**
|
|
39221
|
+
* Time when the Role Propagation process was launched.
|
|
39222
|
+
* @type {string}
|
|
39223
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39224
|
+
*/
|
|
39225
|
+
'launched'?: string;
|
|
39226
|
+
/**
|
|
39227
|
+
*
|
|
39228
|
+
* @type {RolePropagationStatusResponseLaunchedByV2025}
|
|
39229
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39230
|
+
*/
|
|
39231
|
+
'launchedBy'?: RolePropagationStatusResponseLaunchedByV2025;
|
|
39232
|
+
/**
|
|
39233
|
+
*
|
|
39234
|
+
* @type {RolePropagationStatusResponseTerminatedByV2025}
|
|
39235
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39236
|
+
*/
|
|
39237
|
+
'terminatedBy'?: RolePropagationStatusResponseTerminatedByV2025;
|
|
39238
|
+
/**
|
|
39239
|
+
* Time when the Role Propagation process was completed.
|
|
39240
|
+
* @type {string}
|
|
39241
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39242
|
+
*/
|
|
39243
|
+
'completed'?: string;
|
|
39244
|
+
/**
|
|
39245
|
+
* Reason for failure if the Role Propagation process failed.
|
|
39246
|
+
* @type {string}
|
|
39247
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39248
|
+
*/
|
|
39249
|
+
'failureReason'?: string;
|
|
39250
|
+
/**
|
|
39251
|
+
* Indicates if the role refresh was skipped during the Role Propagation process.
|
|
39252
|
+
* @type {boolean}
|
|
39253
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
39254
|
+
*/
|
|
39255
|
+
'skipRoleRefresh'?: boolean;
|
|
39256
|
+
}
|
|
39257
|
+
export declare const RolePropagationStatusResponseV2025StatusV2025: {
|
|
39258
|
+
readonly Running: "RUNNING";
|
|
39259
|
+
readonly Completed: "COMPLETED";
|
|
39260
|
+
};
|
|
39261
|
+
export type RolePropagationStatusResponseV2025StatusV2025 = typeof RolePropagationStatusResponseV2025StatusV2025[keyof typeof RolePropagationStatusResponseV2025StatusV2025];
|
|
39262
|
+
export declare const RolePropagationStatusResponseV2025ExecutionStageV2025: {
|
|
39263
|
+
readonly Pending: "PENDING";
|
|
39264
|
+
readonly DataAggregationRunning: "DATA_AGGREGATION_RUNNING";
|
|
39265
|
+
readonly LaunchProvisioning: "LAUNCH_PROVISIONING";
|
|
39266
|
+
readonly Succeeded: "SUCCEEDED";
|
|
39267
|
+
readonly Failed: "FAILED";
|
|
39268
|
+
readonly Terminated: "TERMINATED";
|
|
39269
|
+
};
|
|
39270
|
+
export type RolePropagationStatusResponseV2025ExecutionStageV2025 = typeof RolePropagationStatusResponseV2025ExecutionStageV2025[keyof typeof RolePropagationStatusResponseV2025ExecutionStageV2025];
|
|
39009
39271
|
/**
|
|
39010
39272
|
* Role
|
|
39011
39273
|
* @export
|
|
@@ -39080,11 +39342,11 @@ export interface RoleTargetDtoV2025 {
|
|
|
39080
39342
|
*/
|
|
39081
39343
|
'accountInfo'?: AccountInfoDtoV2025;
|
|
39082
39344
|
/**
|
|
39083
|
-
*
|
|
39084
|
-
* @type {
|
|
39345
|
+
*
|
|
39346
|
+
* @type {BaseReferenceDtoV2025}
|
|
39085
39347
|
* @memberof RoleTargetDtoV2025
|
|
39086
39348
|
*/
|
|
39087
|
-
'
|
|
39349
|
+
'role'?: BaseReferenceDtoV2025;
|
|
39088
39350
|
}
|
|
39089
39351
|
/**
|
|
39090
39352
|
* A Role
|
|
@@ -49989,6 +50251,23 @@ export interface WorkgroupMemberDeleteItemV2025 {
|
|
|
49989
50251
|
* @export
|
|
49990
50252
|
*/
|
|
49991
50253
|
export declare const AccessModelMetadataV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
50254
|
+
/**
|
|
50255
|
+
* Create a new Access Model Metadata Attribute.
|
|
50256
|
+
* @summary Create access model metadata attribute
|
|
50257
|
+
* @param {AttributeDTOV2025} attributeDTOV2025 Attribute to create
|
|
50258
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50259
|
+
* @throws {RequiredError}
|
|
50260
|
+
*/
|
|
50261
|
+
createAccessModelMetadataAttribute: (attributeDTOV2025: AttributeDTOV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50262
|
+
/**
|
|
50263
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
50264
|
+
* @summary Create access model metadata value
|
|
50265
|
+
* @param {string} key Technical name of the Attribute.
|
|
50266
|
+
* @param {AttributeValueDTOV2025} attributeValueDTOV2025 Attribute value to create
|
|
50267
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50268
|
+
* @throws {RequiredError}
|
|
50269
|
+
*/
|
|
50270
|
+
createAccessModelMetadataAttributeValue: (key: string, attributeValueDTOV2025: AttributeValueDTOV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49992
50271
|
/**
|
|
49993
50272
|
* Get single Access Model Metadata Attribute
|
|
49994
50273
|
* @summary Get access model metadata attribute
|
|
@@ -50009,26 +50288,43 @@ export declare const AccessModelMetadataV2025ApiAxiosParamCreator: (configuratio
|
|
|
50009
50288
|
/**
|
|
50010
50289
|
* Get a list of Access Model Metadata Attributes
|
|
50011
50290
|
* @summary List access model metadata attributes
|
|
50012
|
-
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
50291
|
+
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
50013
50292
|
* @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, key**
|
|
50014
|
-
* @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.
|
|
50015
50293
|
* @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.
|
|
50016
50294
|
* @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.
|
|
50017
50295
|
* @param {*} [axiosOptions] Override http request option.
|
|
50018
50296
|
* @throws {RequiredError}
|
|
50019
50297
|
*/
|
|
50020
|
-
listAccessModelMetadataAttribute: (filters?: string, sorters?: string,
|
|
50298
|
+
listAccessModelMetadataAttribute: (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50021
50299
|
/**
|
|
50022
50300
|
* Get a list of Access Model Metadata Attribute Values
|
|
50023
50301
|
* @summary List access model metadata values
|
|
50024
50302
|
* @param {string} key Technical name of the Attribute.
|
|
50025
|
-
* @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.
|
|
50026
50303
|
* @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.
|
|
50027
50304
|
* @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.
|
|
50028
50305
|
* @param {*} [axiosOptions] Override http request option.
|
|
50029
50306
|
* @throws {RequiredError}
|
|
50030
50307
|
*/
|
|
50031
|
-
listAccessModelMetadataAttributeValue: (key: string,
|
|
50308
|
+
listAccessModelMetadataAttributeValue: (key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50309
|
+
/**
|
|
50310
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
50311
|
+
* @summary Update access model metadata attribute
|
|
50312
|
+
* @param {string} key Technical name of the Attribute.
|
|
50313
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
50314
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50315
|
+
* @throws {RequiredError}
|
|
50316
|
+
*/
|
|
50317
|
+
updateAccessModelMetadataAttribute: (key: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50318
|
+
/**
|
|
50319
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
50320
|
+
* @summary Update access model metadata value
|
|
50321
|
+
* @param {string} key Technical name of the Attribute.
|
|
50322
|
+
* @param {string} value Technical name of the Attribute value.
|
|
50323
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
50324
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50325
|
+
* @throws {RequiredError}
|
|
50326
|
+
*/
|
|
50327
|
+
updateAccessModelMetadataAttributeValue: (key: string, value: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50032
50328
|
/**
|
|
50033
50329
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
50034
50330
|
* @summary Metadata Attribute update by filter
|
|
@@ -50062,6 +50358,23 @@ export declare const AccessModelMetadataV2025ApiAxiosParamCreator: (configuratio
|
|
|
50062
50358
|
* @export
|
|
50063
50359
|
*/
|
|
50064
50360
|
export declare const AccessModelMetadataV2025ApiFp: (configuration?: Configuration) => {
|
|
50361
|
+
/**
|
|
50362
|
+
* Create a new Access Model Metadata Attribute.
|
|
50363
|
+
* @summary Create access model metadata attribute
|
|
50364
|
+
* @param {AttributeDTOV2025} attributeDTOV2025 Attribute to create
|
|
50365
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50366
|
+
* @throws {RequiredError}
|
|
50367
|
+
*/
|
|
50368
|
+
createAccessModelMetadataAttribute(attributeDTOV2025: AttributeDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>>;
|
|
50369
|
+
/**
|
|
50370
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
50371
|
+
* @summary Create access model metadata value
|
|
50372
|
+
* @param {string} key Technical name of the Attribute.
|
|
50373
|
+
* @param {AttributeValueDTOV2025} attributeValueDTOV2025 Attribute value to create
|
|
50374
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50375
|
+
* @throws {RequiredError}
|
|
50376
|
+
*/
|
|
50377
|
+
createAccessModelMetadataAttributeValue(key: string, attributeValueDTOV2025: AttributeValueDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>>;
|
|
50065
50378
|
/**
|
|
50066
50379
|
* Get single Access Model Metadata Attribute
|
|
50067
50380
|
* @summary Get access model metadata attribute
|
|
@@ -50082,26 +50395,43 @@ export declare const AccessModelMetadataV2025ApiFp: (configuration?: Configurati
|
|
|
50082
50395
|
/**
|
|
50083
50396
|
* Get a list of Access Model Metadata Attributes
|
|
50084
50397
|
* @summary List access model metadata attributes
|
|
50085
|
-
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
50398
|
+
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
50086
50399
|
* @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, key**
|
|
50087
|
-
* @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.
|
|
50088
50400
|
* @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.
|
|
50089
50401
|
* @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.
|
|
50090
50402
|
* @param {*} [axiosOptions] Override http request option.
|
|
50091
50403
|
* @throws {RequiredError}
|
|
50092
50404
|
*/
|
|
50093
|
-
listAccessModelMetadataAttribute(filters?: string, sorters?: string,
|
|
50405
|
+
listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2025>>>;
|
|
50094
50406
|
/**
|
|
50095
50407
|
* Get a list of Access Model Metadata Attribute Values
|
|
50096
50408
|
* @summary List access model metadata values
|
|
50097
50409
|
* @param {string} key Technical name of the Attribute.
|
|
50098
|
-
* @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.
|
|
50099
50410
|
* @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.
|
|
50100
50411
|
* @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.
|
|
50101
50412
|
* @param {*} [axiosOptions] Override http request option.
|
|
50102
50413
|
* @throws {RequiredError}
|
|
50103
50414
|
*/
|
|
50104
|
-
listAccessModelMetadataAttributeValue(key: string,
|
|
50415
|
+
listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2025>>>;
|
|
50416
|
+
/**
|
|
50417
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
50418
|
+
* @summary Update access model metadata attribute
|
|
50419
|
+
* @param {string} key Technical name of the Attribute.
|
|
50420
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
50421
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50422
|
+
* @throws {RequiredError}
|
|
50423
|
+
*/
|
|
50424
|
+
updateAccessModelMetadataAttribute(key: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>>;
|
|
50425
|
+
/**
|
|
50426
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
50427
|
+
* @summary Update access model metadata value
|
|
50428
|
+
* @param {string} key Technical name of the Attribute.
|
|
50429
|
+
* @param {string} value Technical name of the Attribute value.
|
|
50430
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
50431
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50432
|
+
* @throws {RequiredError}
|
|
50433
|
+
*/
|
|
50434
|
+
updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>>;
|
|
50105
50435
|
/**
|
|
50106
50436
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
50107
50437
|
* @summary Metadata Attribute update by filter
|
|
@@ -50135,6 +50465,22 @@ export declare const AccessModelMetadataV2025ApiFp: (configuration?: Configurati
|
|
|
50135
50465
|
* @export
|
|
50136
50466
|
*/
|
|
50137
50467
|
export declare const AccessModelMetadataV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
50468
|
+
/**
|
|
50469
|
+
* Create a new Access Model Metadata Attribute.
|
|
50470
|
+
* @summary Create access model metadata attribute
|
|
50471
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
50472
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50473
|
+
* @throws {RequiredError}
|
|
50474
|
+
*/
|
|
50475
|
+
createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2025>;
|
|
50476
|
+
/**
|
|
50477
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
50478
|
+
* @summary Create access model metadata value
|
|
50479
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
50480
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50481
|
+
* @throws {RequiredError}
|
|
50482
|
+
*/
|
|
50483
|
+
createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2025>;
|
|
50138
50484
|
/**
|
|
50139
50485
|
* Get single Access Model Metadata Attribute
|
|
50140
50486
|
* @summary Get access model metadata attribute
|
|
@@ -50167,6 +50513,22 @@ export declare const AccessModelMetadataV2025ApiFactory: (configuration?: Config
|
|
|
50167
50513
|
* @throws {RequiredError}
|
|
50168
50514
|
*/
|
|
50169
50515
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2025>>;
|
|
50516
|
+
/**
|
|
50517
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
50518
|
+
* @summary Update access model metadata attribute
|
|
50519
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
50520
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50521
|
+
* @throws {RequiredError}
|
|
50522
|
+
*/
|
|
50523
|
+
updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2025>;
|
|
50524
|
+
/**
|
|
50525
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
50526
|
+
* @summary Update access model metadata value
|
|
50527
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
50528
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50529
|
+
* @throws {RequiredError}
|
|
50530
|
+
*/
|
|
50531
|
+
updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2025>;
|
|
50170
50532
|
/**
|
|
50171
50533
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
50172
50534
|
* @summary Metadata Attribute update by filter
|
|
@@ -50195,6 +50557,38 @@ export declare const AccessModelMetadataV2025ApiFactory: (configuration?: Config
|
|
|
50195
50557
|
*/
|
|
50196
50558
|
updateAccessModelMetadataByQuery(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>;
|
|
50197
50559
|
};
|
|
50560
|
+
/**
|
|
50561
|
+
* Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
50562
|
+
* @export
|
|
50563
|
+
* @interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest
|
|
50564
|
+
*/
|
|
50565
|
+
export interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest {
|
|
50566
|
+
/**
|
|
50567
|
+
* Attribute to create
|
|
50568
|
+
* @type {AttributeDTOV2025}
|
|
50569
|
+
* @memberof AccessModelMetadataV2025ApiCreateAccessModelMetadataAttribute
|
|
50570
|
+
*/
|
|
50571
|
+
readonly attributeDTOV2025: AttributeDTOV2025;
|
|
50572
|
+
}
|
|
50573
|
+
/**
|
|
50574
|
+
* Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
|
|
50575
|
+
* @export
|
|
50576
|
+
* @interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest
|
|
50577
|
+
*/
|
|
50578
|
+
export interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest {
|
|
50579
|
+
/**
|
|
50580
|
+
* Technical name of the Attribute.
|
|
50581
|
+
* @type {string}
|
|
50582
|
+
* @memberof AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValue
|
|
50583
|
+
*/
|
|
50584
|
+
readonly key: string;
|
|
50585
|
+
/**
|
|
50586
|
+
* Attribute value to create
|
|
50587
|
+
* @type {AttributeValueDTOV2025}
|
|
50588
|
+
* @memberof AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValue
|
|
50589
|
+
*/
|
|
50590
|
+
readonly attributeValueDTOV2025: AttributeValueDTOV2025;
|
|
50591
|
+
}
|
|
50198
50592
|
/**
|
|
50199
50593
|
* Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
50200
50594
|
* @export
|
|
@@ -50234,7 +50628,7 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
|
|
|
50234
50628
|
*/
|
|
50235
50629
|
export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequest {
|
|
50236
50630
|
/**
|
|
50237
|
-
* 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
50631
|
+
* 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
50238
50632
|
* @type {string}
|
|
50239
50633
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
50240
50634
|
*/
|
|
@@ -50245,12 +50639,6 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequ
|
|
|
50245
50639
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
50246
50640
|
*/
|
|
50247
50641
|
readonly sorters?: string;
|
|
50248
|
-
/**
|
|
50249
|
-
* 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.
|
|
50250
|
-
* @type {number}
|
|
50251
|
-
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
50252
|
-
*/
|
|
50253
|
-
readonly offset?: number;
|
|
50254
50642
|
/**
|
|
50255
50643
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
50256
50644
|
* @type {number}
|
|
@@ -50276,12 +50664,6 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValu
|
|
|
50276
50664
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
|
|
50277
50665
|
*/
|
|
50278
50666
|
readonly key: string;
|
|
50279
|
-
/**
|
|
50280
|
-
* 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.
|
|
50281
|
-
* @type {number}
|
|
50282
|
-
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
|
|
50283
|
-
*/
|
|
50284
|
-
readonly offset?: number;
|
|
50285
50667
|
/**
|
|
50286
50668
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
50287
50669
|
* @type {number}
|
|
@@ -50295,6 +50677,50 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValu
|
|
|
50295
50677
|
*/
|
|
50296
50678
|
readonly count?: boolean;
|
|
50297
50679
|
}
|
|
50680
|
+
/**
|
|
50681
|
+
* Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
50682
|
+
* @export
|
|
50683
|
+
* @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest
|
|
50684
|
+
*/
|
|
50685
|
+
export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest {
|
|
50686
|
+
/**
|
|
50687
|
+
* Technical name of the Attribute.
|
|
50688
|
+
* @type {string}
|
|
50689
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttribute
|
|
50690
|
+
*/
|
|
50691
|
+
readonly key: string;
|
|
50692
|
+
/**
|
|
50693
|
+
* JSON Patch array to apply
|
|
50694
|
+
* @type {Array<JsonPatchOperationV2025>}
|
|
50695
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttribute
|
|
50696
|
+
*/
|
|
50697
|
+
readonly jsonPatchOperationV2025: Array<JsonPatchOperationV2025>;
|
|
50698
|
+
}
|
|
50699
|
+
/**
|
|
50700
|
+
* Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
|
|
50701
|
+
* @export
|
|
50702
|
+
* @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest
|
|
50703
|
+
*/
|
|
50704
|
+
export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest {
|
|
50705
|
+
/**
|
|
50706
|
+
* Technical name of the Attribute.
|
|
50707
|
+
* @type {string}
|
|
50708
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValue
|
|
50709
|
+
*/
|
|
50710
|
+
readonly key: string;
|
|
50711
|
+
/**
|
|
50712
|
+
* Technical name of the Attribute value.
|
|
50713
|
+
* @type {string}
|
|
50714
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValue
|
|
50715
|
+
*/
|
|
50716
|
+
readonly value: string;
|
|
50717
|
+
/**
|
|
50718
|
+
* JSON Patch array to apply
|
|
50719
|
+
* @type {Array<JsonPatchOperationV2025>}
|
|
50720
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValue
|
|
50721
|
+
*/
|
|
50722
|
+
readonly jsonPatchOperationV2025: Array<JsonPatchOperationV2025>;
|
|
50723
|
+
}
|
|
50298
50724
|
/**
|
|
50299
50725
|
* Request parameters for updateAccessModelMetadataByFilter operation in AccessModelMetadataV2025Api.
|
|
50300
50726
|
* @export
|
|
@@ -50341,6 +50767,24 @@ export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequ
|
|
|
50341
50767
|
* @extends {BaseAPI}
|
|
50342
50768
|
*/
|
|
50343
50769
|
export declare class AccessModelMetadataV2025Api extends BaseAPI {
|
|
50770
|
+
/**
|
|
50771
|
+
* Create a new Access Model Metadata Attribute.
|
|
50772
|
+
* @summary Create access model metadata attribute
|
|
50773
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
50774
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50775
|
+
* @throws {RequiredError}
|
|
50776
|
+
* @memberof AccessModelMetadataV2025Api
|
|
50777
|
+
*/
|
|
50778
|
+
createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOV2025, any>>;
|
|
50779
|
+
/**
|
|
50780
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
50781
|
+
* @summary Create access model metadata value
|
|
50782
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
50783
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50784
|
+
* @throws {RequiredError}
|
|
50785
|
+
* @memberof AccessModelMetadataV2025Api
|
|
50786
|
+
*/
|
|
50787
|
+
createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2025, any>>;
|
|
50344
50788
|
/**
|
|
50345
50789
|
* Get single Access Model Metadata Attribute
|
|
50346
50790
|
* @summary Get access model metadata attribute
|
|
@@ -50377,6 +50821,24 @@ export declare class AccessModelMetadataV2025Api extends BaseAPI {
|
|
|
50377
50821
|
* @memberof AccessModelMetadataV2025Api
|
|
50378
50822
|
*/
|
|
50379
50823
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2025[], any>>;
|
|
50824
|
+
/**
|
|
50825
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
50826
|
+
* @summary Update access model metadata attribute
|
|
50827
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
50828
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50829
|
+
* @throws {RequiredError}
|
|
50830
|
+
* @memberof AccessModelMetadataV2025Api
|
|
50831
|
+
*/
|
|
50832
|
+
updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOV2025, any>>;
|
|
50833
|
+
/**
|
|
50834
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
50835
|
+
* @summary Update access model metadata value
|
|
50836
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
50837
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50838
|
+
* @throws {RequiredError}
|
|
50839
|
+
* @memberof AccessModelMetadataV2025Api
|
|
50840
|
+
*/
|
|
50841
|
+
updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2025, any>>;
|
|
50380
50842
|
/**
|
|
50381
50843
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
50382
50844
|
* @summary Metadata Attribute update by filter
|
|
@@ -51566,7 +52028,7 @@ export declare const AccessRequestsV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
51566
52028
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
51567
52029
|
* @param {number} [limit] Max number of results to return.
|
|
51568
52030
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
51569
|
-
* @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: **accessRequestId**: *eq,
|
|
52031
|
+
* @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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
51570
52032
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
51571
52033
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
51572
52034
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51680,7 +52142,7 @@ export declare const AccessRequestsV2025ApiFp: (configuration?: Configuration) =
|
|
|
51680
52142
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
51681
52143
|
* @param {number} [limit] Max number of results to return.
|
|
51682
52144
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
51683
|
-
* @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: **accessRequestId**: *eq,
|
|
52145
|
+
* @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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
51684
52146
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
51685
52147
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
51686
52148
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51949,7 +52411,7 @@ export interface AccessRequestsV2025ApiListAccessRequestStatusRequest {
|
|
|
51949
52411
|
*/
|
|
51950
52412
|
readonly offset?: number;
|
|
51951
52413
|
/**
|
|
51952
|
-
* 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: **accessRequestId**: *eq,
|
|
52414
|
+
* 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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
51953
52415
|
* @type {string}
|
|
51954
52416
|
* @memberof AccessRequestsV2025ApiListAccessRequestStatus
|
|
51955
52417
|
*/
|
|
@@ -53408,7 +53870,7 @@ export type ListAccountsDetailLevelV2025 = typeof ListAccountsDetailLevelV2025[k
|
|
|
53408
53870
|
*/
|
|
53409
53871
|
export declare const ApiUsageV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
53410
53872
|
/**
|
|
53411
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
53873
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53412
53874
|
* @summary Total number of API requests
|
|
53413
53875
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53414
53876
|
* @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: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -53417,7 +53879,7 @@ export declare const ApiUsageV2025ApiAxiosParamCreator: (configuration?: Configu
|
|
|
53417
53879
|
*/
|
|
53418
53880
|
getTotalCount: (xSailPointExperimental?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53419
53881
|
/**
|
|
53420
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
53882
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53421
53883
|
* @summary Get Api Summary
|
|
53422
53884
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53423
53885
|
* @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: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -53434,7 +53896,7 @@ export declare const ApiUsageV2025ApiAxiosParamCreator: (configuration?: Configu
|
|
|
53434
53896
|
*/
|
|
53435
53897
|
export declare const ApiUsageV2025ApiFp: (configuration?: Configuration) => {
|
|
53436
53898
|
/**
|
|
53437
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
53899
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53438
53900
|
* @summary Total number of API requests
|
|
53439
53901
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53440
53902
|
* @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: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -53443,7 +53905,7 @@ export declare const ApiUsageV2025ApiFp: (configuration?: Configuration) => {
|
|
|
53443
53905
|
*/
|
|
53444
53906
|
getTotalCount(xSailPointExperimental?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
53445
53907
|
/**
|
|
53446
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
53908
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53447
53909
|
* @summary Get Api Summary
|
|
53448
53910
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53449
53911
|
* @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: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -53460,7 +53922,7 @@ export declare const ApiUsageV2025ApiFp: (configuration?: Configuration) => {
|
|
|
53460
53922
|
*/
|
|
53461
53923
|
export declare const ApiUsageV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
53462
53924
|
/**
|
|
53463
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
53925
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53464
53926
|
* @summary Total number of API requests
|
|
53465
53927
|
* @param {ApiUsageV2025ApiGetTotalCountRequest} requestParameters Request parameters.
|
|
53466
53928
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53468,7 +53930,7 @@ export declare const ApiUsageV2025ApiFactory: (configuration?: Configuration, ba
|
|
|
53468
53930
|
*/
|
|
53469
53931
|
getTotalCount(requestParameters?: ApiUsageV2025ApiGetTotalCountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
53470
53932
|
/**
|
|
53471
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
53933
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53472
53934
|
* @summary Get Api Summary
|
|
53473
53935
|
* @param {ApiUsageV2025ApiListApiSummaryRequest} requestParameters Request parameters.
|
|
53474
53936
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53534,7 +53996,7 @@ export interface ApiUsageV2025ApiListApiSummaryRequest {
|
|
|
53534
53996
|
*/
|
|
53535
53997
|
export declare class ApiUsageV2025Api extends BaseAPI {
|
|
53536
53998
|
/**
|
|
53537
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
53999
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53538
54000
|
* @summary Total number of API requests
|
|
53539
54001
|
* @param {ApiUsageV2025ApiGetTotalCountRequest} requestParameters Request parameters.
|
|
53540
54002
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53543,7 +54005,7 @@ export declare class ApiUsageV2025Api extends BaseAPI {
|
|
|
53543
54005
|
*/
|
|
53544
54006
|
getTotalCount(requestParameters?: ApiUsageV2025ApiGetTotalCountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
53545
54007
|
/**
|
|
53546
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
54008
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
53547
54009
|
* @summary Get Api Summary
|
|
53548
54010
|
* @param {ApiUsageV2025ApiListApiSummaryRequest} requestParameters Request parameters.
|
|
53549
54011
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53823,6 +54285,15 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
53823
54285
|
* @throws {RequiredError}
|
|
53824
54286
|
*/
|
|
53825
54287
|
cancelApproval: (bulkCancelRequestDTOV2025: BulkCancelRequestDTOV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54288
|
+
/**
|
|
54289
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
54290
|
+
* @summary Delete Approval Configuration
|
|
54291
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54292
|
+
* @param {DeleteApprovalConfigRequestScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54293
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
54294
|
+
* @throws {RequiredError}
|
|
54295
|
+
*/
|
|
54296
|
+
deleteApprovalConfigRequest: (id: string, scope: DeleteApprovalConfigRequestScopeV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53826
54297
|
/**
|
|
53827
54298
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
53828
54299
|
* @summary Get an approval
|
|
@@ -53870,13 +54341,13 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
53870
54341
|
/**
|
|
53871
54342
|
* Upserts a singular approval configuration that matches the given configID and configScope. If id and scope are not provided, it will default to setting the tenant config.
|
|
53872
54343
|
* @summary Put Approval Config
|
|
54344
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54345
|
+
* @param {PutApprovalsConfigScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
53873
54346
|
* @param {ApprovalConfigV2025} approvalConfigV2025
|
|
53874
|
-
* @param {string} [id] The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
53875
|
-
* @param {string} [scope] The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
53876
54347
|
* @param {*} [axiosOptions] Override http request option.
|
|
53877
54348
|
* @throws {RequiredError}
|
|
53878
54349
|
*/
|
|
53879
|
-
putApprovalsConfig: (
|
|
54350
|
+
putApprovalsConfig: (id: string, scope: PutApprovalsConfigScopeV2025, approvalConfigV2025: ApprovalConfigV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53880
54351
|
/**
|
|
53881
54352
|
* Currently this endpoint only supports Entitlement Description Approvals. Rejects a specified approval request on behalf of the caller. If called by an admin and the admin is not listed as an approver, the approval request will be reassigned from a random approver to the admin user.
|
|
53882
54353
|
* @summary Post Approvals Reject
|
|
@@ -53952,6 +54423,15 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
53952
54423
|
* @throws {RequiredError}
|
|
53953
54424
|
*/
|
|
53954
54425
|
cancelApproval(bulkCancelRequestDTOV2025: BulkCancelRequestDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
54426
|
+
/**
|
|
54427
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
54428
|
+
* @summary Delete Approval Configuration
|
|
54429
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54430
|
+
* @param {DeleteApprovalConfigRequestScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54431
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
54432
|
+
* @throws {RequiredError}
|
|
54433
|
+
*/
|
|
54434
|
+
deleteApprovalConfigRequest(id: string, scope: DeleteApprovalConfigRequestScopeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
53955
54435
|
/**
|
|
53956
54436
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
53957
54437
|
* @summary Get an approval
|
|
@@ -53999,13 +54479,13 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
53999
54479
|
/**
|
|
54000
54480
|
* Upserts a singular approval configuration that matches the given configID and configScope. If id and scope are not provided, it will default to setting the tenant config.
|
|
54001
54481
|
* @summary Put Approval Config
|
|
54482
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54483
|
+
* @param {PutApprovalsConfigScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54002
54484
|
* @param {ApprovalConfigV2025} approvalConfigV2025
|
|
54003
|
-
* @param {string} [id] The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
54004
|
-
* @param {string} [scope] The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
54005
54485
|
* @param {*} [axiosOptions] Override http request option.
|
|
54006
54486
|
* @throws {RequiredError}
|
|
54007
54487
|
*/
|
|
54008
|
-
putApprovalsConfig(
|
|
54488
|
+
putApprovalsConfig(id: string, scope: PutApprovalsConfigScopeV2025, approvalConfigV2025: ApprovalConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalConfigV2025>>;
|
|
54009
54489
|
/**
|
|
54010
54490
|
* Currently this endpoint only supports Entitlement Description Approvals. Rejects a specified approval request on behalf of the caller. If called by an admin and the admin is not listed as an approver, the approval request will be reassigned from a random approver to the admin user.
|
|
54011
54491
|
* @summary Post Approvals Reject
|
|
@@ -54080,6 +54560,14 @@ export declare const ApprovalsV2025ApiFactory: (configuration?: Configuration, b
|
|
|
54080
54560
|
* @throws {RequiredError}
|
|
54081
54561
|
*/
|
|
54082
54562
|
cancelApproval(requestParameters: ApprovalsV2025ApiCancelApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
54563
|
+
/**
|
|
54564
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
54565
|
+
* @summary Delete Approval Configuration
|
|
54566
|
+
* @param {ApprovalsV2025ApiDeleteApprovalConfigRequestRequest} requestParameters Request parameters.
|
|
54567
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
54568
|
+
* @throws {RequiredError}
|
|
54569
|
+
*/
|
|
54570
|
+
deleteApprovalConfigRequest(requestParameters: ApprovalsV2025ApiDeleteApprovalConfigRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
54083
54571
|
/**
|
|
54084
54572
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
54085
54573
|
* @summary Get an approval
|
|
@@ -54206,6 +54694,25 @@ export interface ApprovalsV2025ApiCancelApprovalRequest {
|
|
|
54206
54694
|
*/
|
|
54207
54695
|
readonly bulkCancelRequestDTOV2025: BulkCancelRequestDTOV2025;
|
|
54208
54696
|
}
|
|
54697
|
+
/**
|
|
54698
|
+
* Request parameters for deleteApprovalConfigRequest operation in ApprovalsV2025Api.
|
|
54699
|
+
* @export
|
|
54700
|
+
* @interface ApprovalsV2025ApiDeleteApprovalConfigRequestRequest
|
|
54701
|
+
*/
|
|
54702
|
+
export interface ApprovalsV2025ApiDeleteApprovalConfigRequestRequest {
|
|
54703
|
+
/**
|
|
54704
|
+
* The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54705
|
+
* @type {string}
|
|
54706
|
+
* @memberof ApprovalsV2025ApiDeleteApprovalConfigRequest
|
|
54707
|
+
*/
|
|
54708
|
+
readonly id: string;
|
|
54709
|
+
/**
|
|
54710
|
+
* The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54711
|
+
* @type {'DOMAIN_OBJECT' | 'ROLE' | 'APPLICATION' | 'ACCESS_PROFILE' | 'ENTITLEMENT' | 'APPROVAL_TYPE' | 'TENANT' | 'SOURCE'}
|
|
54712
|
+
* @memberof ApprovalsV2025ApiDeleteApprovalConfigRequest
|
|
54713
|
+
*/
|
|
54714
|
+
readonly scope: DeleteApprovalConfigRequestScopeV2025;
|
|
54715
|
+
}
|
|
54209
54716
|
/**
|
|
54210
54717
|
* Request parameters for getApproval operation in ApprovalsV2025Api.
|
|
54211
54718
|
* @export
|
|
@@ -54337,23 +54844,23 @@ export interface ApprovalsV2025ApiMoveApprovalRequest {
|
|
|
54337
54844
|
*/
|
|
54338
54845
|
export interface ApprovalsV2025ApiPutApprovalsConfigRequest {
|
|
54339
54846
|
/**
|
|
54340
|
-
*
|
|
54341
|
-
* @type {
|
|
54847
|
+
* The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54848
|
+
* @type {string}
|
|
54342
54849
|
* @memberof ApprovalsV2025ApiPutApprovalsConfig
|
|
54343
54850
|
*/
|
|
54344
|
-
readonly
|
|
54851
|
+
readonly id: string;
|
|
54345
54852
|
/**
|
|
54346
|
-
* The
|
|
54347
|
-
* @type {
|
|
54853
|
+
* The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
54854
|
+
* @type {'DOMAIN_OBJECT' | 'ROLE' | 'APPLICATION' | 'ACCESS_PROFILE' | 'ENTITLEMENT' | 'APPROVAL_TYPE' | 'TENANT' | 'SOURCE'}
|
|
54348
54855
|
* @memberof ApprovalsV2025ApiPutApprovalsConfig
|
|
54349
54856
|
*/
|
|
54350
|
-
readonly
|
|
54857
|
+
readonly scope: PutApprovalsConfigScopeV2025;
|
|
54351
54858
|
/**
|
|
54352
|
-
*
|
|
54353
|
-
* @type {
|
|
54859
|
+
*
|
|
54860
|
+
* @type {ApprovalConfigV2025}
|
|
54354
54861
|
* @memberof ApprovalsV2025ApiPutApprovalsConfig
|
|
54355
54862
|
*/
|
|
54356
|
-
readonly
|
|
54863
|
+
readonly approvalConfigV2025: ApprovalConfigV2025;
|
|
54357
54864
|
}
|
|
54358
54865
|
/**
|
|
54359
54866
|
* Request parameters for rejectApproval operation in ApprovalsV2025Api.
|
|
@@ -54478,6 +54985,15 @@ export declare class ApprovalsV2025Api extends BaseAPI {
|
|
|
54478
54985
|
* @memberof ApprovalsV2025Api
|
|
54479
54986
|
*/
|
|
54480
54987
|
cancelApproval(requestParameters: ApprovalsV2025ApiCancelApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
54988
|
+
/**
|
|
54989
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
54990
|
+
* @summary Delete Approval Configuration
|
|
54991
|
+
* @param {ApprovalsV2025ApiDeleteApprovalConfigRequestRequest} requestParameters Request parameters.
|
|
54992
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
54993
|
+
* @throws {RequiredError}
|
|
54994
|
+
* @memberof ApprovalsV2025Api
|
|
54995
|
+
*/
|
|
54996
|
+
deleteApprovalConfigRequest(requestParameters: ApprovalsV2025ApiDeleteApprovalConfigRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
54481
54997
|
/**
|
|
54482
54998
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
54483
54999
|
* @summary Get an approval
|
|
@@ -54569,6 +55085,34 @@ export declare class ApprovalsV2025Api extends BaseAPI {
|
|
|
54569
55085
|
*/
|
|
54570
55086
|
updateApprovalsReassign(requestParameters: ApprovalsV2025ApiUpdateApprovalsReassignRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
54571
55087
|
}
|
|
55088
|
+
/**
|
|
55089
|
+
* @export
|
|
55090
|
+
*/
|
|
55091
|
+
export declare const DeleteApprovalConfigRequestScopeV2025: {
|
|
55092
|
+
readonly DomainObject: "DOMAIN_OBJECT";
|
|
55093
|
+
readonly Role: "ROLE";
|
|
55094
|
+
readonly Application: "APPLICATION";
|
|
55095
|
+
readonly AccessProfile: "ACCESS_PROFILE";
|
|
55096
|
+
readonly Entitlement: "ENTITLEMENT";
|
|
55097
|
+
readonly ApprovalType: "APPROVAL_TYPE";
|
|
55098
|
+
readonly Tenant: "TENANT";
|
|
55099
|
+
readonly Source: "SOURCE";
|
|
55100
|
+
};
|
|
55101
|
+
export type DeleteApprovalConfigRequestScopeV2025 = typeof DeleteApprovalConfigRequestScopeV2025[keyof typeof DeleteApprovalConfigRequestScopeV2025];
|
|
55102
|
+
/**
|
|
55103
|
+
* @export
|
|
55104
|
+
*/
|
|
55105
|
+
export declare const PutApprovalsConfigScopeV2025: {
|
|
55106
|
+
readonly DomainObject: "DOMAIN_OBJECT";
|
|
55107
|
+
readonly Role: "ROLE";
|
|
55108
|
+
readonly Application: "APPLICATION";
|
|
55109
|
+
readonly AccessProfile: "ACCESS_PROFILE";
|
|
55110
|
+
readonly Entitlement: "ENTITLEMENT";
|
|
55111
|
+
readonly ApprovalType: "APPROVAL_TYPE";
|
|
55112
|
+
readonly Tenant: "TENANT";
|
|
55113
|
+
readonly Source: "SOURCE";
|
|
55114
|
+
};
|
|
55115
|
+
export type PutApprovalsConfigScopeV2025 = typeof PutApprovalsConfigScopeV2025[keyof typeof PutApprovalsConfigScopeV2025];
|
|
54572
55116
|
/**
|
|
54573
55117
|
* AppsV2025Api - axios parameter creator
|
|
54574
55118
|
* @export
|
|
@@ -54631,7 +55175,7 @@ export declare const AppsV2025ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
54631
55175
|
* @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.
|
|
54632
55176
|
* @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.
|
|
54633
55177
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, owner.id, accountSource.id**
|
|
54634
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
55178
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
54635
55179
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
54636
55180
|
* @param {*} [axiosOptions] Override http request option.
|
|
54637
55181
|
* @throws {RequiredError}
|
|
@@ -54790,7 +55334,7 @@ export declare const AppsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
54790
55334
|
* @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.
|
|
54791
55335
|
* @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.
|
|
54792
55336
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, owner.id, accountSource.id**
|
|
54793
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
55337
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
54794
55338
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
54795
55339
|
* @param {*} [axiosOptions] Override http request option.
|
|
54796
55340
|
* @throws {RequiredError}
|
|
@@ -55161,7 +55705,7 @@ export interface AppsV2025ApiListAllSourceAppRequest {
|
|
|
55161
55705
|
*/
|
|
55162
55706
|
readonly sorters?: string;
|
|
55163
55707
|
/**
|
|
55164
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
55708
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
55165
55709
|
* @type {string}
|
|
55166
55710
|
* @memberof AppsV2025ApiListAllSourceApp
|
|
55167
55711
|
*/
|
|
@@ -75517,8 +76061,8 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
|
|
|
75517
76061
|
* @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.
|
|
75518
76062
|
* @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.
|
|
75519
76063
|
* @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.
|
|
75520
|
-
* @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
|
|
75521
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
76064
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
76065
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
75522
76066
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75523
76067
|
* @param {*} [axiosOptions] Override http request option.
|
|
75524
76068
|
* @throws {RequiredError}
|
|
@@ -75619,8 +76163,8 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
|
|
|
75619
76163
|
* @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.
|
|
75620
76164
|
* @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.
|
|
75621
76165
|
* @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.
|
|
75622
|
-
* @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
|
|
75623
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
76166
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
76167
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
75624
76168
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75625
76169
|
* @param {*} [axiosOptions] Override http request option.
|
|
75626
76170
|
* @throws {RequiredError}
|
|
@@ -75913,13 +76457,13 @@ export interface MachineAccountsV2025ApiListMachineAccountsRequest {
|
|
|
75913
76457
|
*/
|
|
75914
76458
|
readonly count?: boolean;
|
|
75915
76459
|
/**
|
|
75916
|
-
* 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
|
|
76460
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
75917
76461
|
* @type {string}
|
|
75918
76462
|
* @memberof MachineAccountsV2025ApiListMachineAccounts
|
|
75919
76463
|
*/
|
|
75920
76464
|
readonly filters?: string;
|
|
75921
76465
|
/**
|
|
75922
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
76466
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
75923
76467
|
* @type {string}
|
|
75924
76468
|
* @memberof MachineAccountsV2025ApiListMachineAccounts
|
|
75925
76469
|
*/
|
|
@@ -84693,6 +85237,232 @@ export declare class RoleInsightsV2025Api extends BaseAPI {
|
|
|
84693
85237
|
*/
|
|
84694
85238
|
getRoleInsightsSummary(requestParameters?: RoleInsightsV2025ApiGetRoleInsightsSummaryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleInsightsSummaryV2025, any>>;
|
|
84695
85239
|
}
|
|
85240
|
+
/**
|
|
85241
|
+
* RolePropagationV2025Api - axios parameter creator
|
|
85242
|
+
* @export
|
|
85243
|
+
*/
|
|
85244
|
+
export declare const RolePropagationV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
85245
|
+
/**
|
|
85246
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
85247
|
+
* @summary Terminate Role Propagation process
|
|
85248
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85249
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85250
|
+
* @throws {RequiredError}
|
|
85251
|
+
*/
|
|
85252
|
+
cancelRolePropagation: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85253
|
+
/**
|
|
85254
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85255
|
+
* @summary Get ongoing Role Propagation process
|
|
85256
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85257
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85258
|
+
* @throws {RequiredError}
|
|
85259
|
+
*/
|
|
85260
|
+
getOngoingRolePropagation: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85261
|
+
/**
|
|
85262
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85263
|
+
* @summary Get status of Role-Propagation process
|
|
85264
|
+
* @param {string} rolePropagationId The ID of the role propagation process to retrieve the status for.
|
|
85265
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85266
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85267
|
+
* @throws {RequiredError}
|
|
85268
|
+
*/
|
|
85269
|
+
getRolePropagationStatus: (rolePropagationId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85270
|
+
/**
|
|
85271
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
85272
|
+
* @summary Initiate Role Propagation process
|
|
85273
|
+
* @param {boolean} [skipRoleRefresh] When true, the role refresh is not performed. Keeping it false is recommended.
|
|
85274
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85275
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85276
|
+
* @throws {RequiredError}
|
|
85277
|
+
*/
|
|
85278
|
+
startRolePropagation: (skipRoleRefresh?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85279
|
+
};
|
|
85280
|
+
/**
|
|
85281
|
+
* RolePropagationV2025Api - functional programming interface
|
|
85282
|
+
* @export
|
|
85283
|
+
*/
|
|
85284
|
+
export declare const RolePropagationV2025ApiFp: (configuration?: Configuration) => {
|
|
85285
|
+
/**
|
|
85286
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
85287
|
+
* @summary Terminate Role Propagation process
|
|
85288
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85289
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85290
|
+
* @throws {RequiredError}
|
|
85291
|
+
*/
|
|
85292
|
+
cancelRolePropagation(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
85293
|
+
/**
|
|
85294
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85295
|
+
* @summary Get ongoing Role Propagation process
|
|
85296
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85297
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85298
|
+
* @throws {RequiredError}
|
|
85299
|
+
*/
|
|
85300
|
+
getOngoingRolePropagation(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationOngoingResponseV2025>>;
|
|
85301
|
+
/**
|
|
85302
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85303
|
+
* @summary Get status of Role-Propagation process
|
|
85304
|
+
* @param {string} rolePropagationId The ID of the role propagation process to retrieve the status for.
|
|
85305
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85306
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85307
|
+
* @throws {RequiredError}
|
|
85308
|
+
*/
|
|
85309
|
+
getRolePropagationStatus(rolePropagationId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationStatusResponseV2025>>;
|
|
85310
|
+
/**
|
|
85311
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
85312
|
+
* @summary Initiate Role Propagation process
|
|
85313
|
+
* @param {boolean} [skipRoleRefresh] When true, the role refresh is not performed. Keeping it false is recommended.
|
|
85314
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85315
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85316
|
+
* @throws {RequiredError}
|
|
85317
|
+
*/
|
|
85318
|
+
startRolePropagation(skipRoleRefresh?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationResponseV2025>>;
|
|
85319
|
+
};
|
|
85320
|
+
/**
|
|
85321
|
+
* RolePropagationV2025Api - factory interface
|
|
85322
|
+
* @export
|
|
85323
|
+
*/
|
|
85324
|
+
export declare const RolePropagationV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
85325
|
+
/**
|
|
85326
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
85327
|
+
* @summary Terminate Role Propagation process
|
|
85328
|
+
* @param {RolePropagationV2025ApiCancelRolePropagationRequest} requestParameters Request parameters.
|
|
85329
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85330
|
+
* @throws {RequiredError}
|
|
85331
|
+
*/
|
|
85332
|
+
cancelRolePropagation(requestParameters?: RolePropagationV2025ApiCancelRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
85333
|
+
/**
|
|
85334
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85335
|
+
* @summary Get ongoing Role Propagation process
|
|
85336
|
+
* @param {RolePropagationV2025ApiGetOngoingRolePropagationRequest} requestParameters Request parameters.
|
|
85337
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85338
|
+
* @throws {RequiredError}
|
|
85339
|
+
*/
|
|
85340
|
+
getOngoingRolePropagation(requestParameters?: RolePropagationV2025ApiGetOngoingRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationOngoingResponseV2025>;
|
|
85341
|
+
/**
|
|
85342
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85343
|
+
* @summary Get status of Role-Propagation process
|
|
85344
|
+
* @param {RolePropagationV2025ApiGetRolePropagationStatusRequest} requestParameters Request parameters.
|
|
85345
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85346
|
+
* @throws {RequiredError}
|
|
85347
|
+
*/
|
|
85348
|
+
getRolePropagationStatus(requestParameters: RolePropagationV2025ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationStatusResponseV2025>;
|
|
85349
|
+
/**
|
|
85350
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
85351
|
+
* @summary Initiate Role Propagation process
|
|
85352
|
+
* @param {RolePropagationV2025ApiStartRolePropagationRequest} requestParameters Request parameters.
|
|
85353
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85354
|
+
* @throws {RequiredError}
|
|
85355
|
+
*/
|
|
85356
|
+
startRolePropagation(requestParameters?: RolePropagationV2025ApiStartRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationResponseV2025>;
|
|
85357
|
+
};
|
|
85358
|
+
/**
|
|
85359
|
+
* Request parameters for cancelRolePropagation operation in RolePropagationV2025Api.
|
|
85360
|
+
* @export
|
|
85361
|
+
* @interface RolePropagationV2025ApiCancelRolePropagationRequest
|
|
85362
|
+
*/
|
|
85363
|
+
export interface RolePropagationV2025ApiCancelRolePropagationRequest {
|
|
85364
|
+
/**
|
|
85365
|
+
* Use this header to enable this experimental API.
|
|
85366
|
+
* @type {string}
|
|
85367
|
+
* @memberof RolePropagationV2025ApiCancelRolePropagation
|
|
85368
|
+
*/
|
|
85369
|
+
readonly xSailPointExperimental?: string;
|
|
85370
|
+
}
|
|
85371
|
+
/**
|
|
85372
|
+
* Request parameters for getOngoingRolePropagation operation in RolePropagationV2025Api.
|
|
85373
|
+
* @export
|
|
85374
|
+
* @interface RolePropagationV2025ApiGetOngoingRolePropagationRequest
|
|
85375
|
+
*/
|
|
85376
|
+
export interface RolePropagationV2025ApiGetOngoingRolePropagationRequest {
|
|
85377
|
+
/**
|
|
85378
|
+
* Use this header to enable this experimental API.
|
|
85379
|
+
* @type {string}
|
|
85380
|
+
* @memberof RolePropagationV2025ApiGetOngoingRolePropagation
|
|
85381
|
+
*/
|
|
85382
|
+
readonly xSailPointExperimental?: string;
|
|
85383
|
+
}
|
|
85384
|
+
/**
|
|
85385
|
+
* Request parameters for getRolePropagationStatus operation in RolePropagationV2025Api.
|
|
85386
|
+
* @export
|
|
85387
|
+
* @interface RolePropagationV2025ApiGetRolePropagationStatusRequest
|
|
85388
|
+
*/
|
|
85389
|
+
export interface RolePropagationV2025ApiGetRolePropagationStatusRequest {
|
|
85390
|
+
/**
|
|
85391
|
+
* The ID of the role propagation process to retrieve the status for.
|
|
85392
|
+
* @type {string}
|
|
85393
|
+
* @memberof RolePropagationV2025ApiGetRolePropagationStatus
|
|
85394
|
+
*/
|
|
85395
|
+
readonly rolePropagationId: string;
|
|
85396
|
+
/**
|
|
85397
|
+
* Use this header to enable this experimental API.
|
|
85398
|
+
* @type {string}
|
|
85399
|
+
* @memberof RolePropagationV2025ApiGetRolePropagationStatus
|
|
85400
|
+
*/
|
|
85401
|
+
readonly xSailPointExperimental?: string;
|
|
85402
|
+
}
|
|
85403
|
+
/**
|
|
85404
|
+
* Request parameters for startRolePropagation operation in RolePropagationV2025Api.
|
|
85405
|
+
* @export
|
|
85406
|
+
* @interface RolePropagationV2025ApiStartRolePropagationRequest
|
|
85407
|
+
*/
|
|
85408
|
+
export interface RolePropagationV2025ApiStartRolePropagationRequest {
|
|
85409
|
+
/**
|
|
85410
|
+
* When true, the role refresh is not performed. Keeping it false is recommended.
|
|
85411
|
+
* @type {boolean}
|
|
85412
|
+
* @memberof RolePropagationV2025ApiStartRolePropagation
|
|
85413
|
+
*/
|
|
85414
|
+
readonly skipRoleRefresh?: boolean;
|
|
85415
|
+
/**
|
|
85416
|
+
* Use this header to enable this experimental API.
|
|
85417
|
+
* @type {string}
|
|
85418
|
+
* @memberof RolePropagationV2025ApiStartRolePropagation
|
|
85419
|
+
*/
|
|
85420
|
+
readonly xSailPointExperimental?: string;
|
|
85421
|
+
}
|
|
85422
|
+
/**
|
|
85423
|
+
* RolePropagationV2025Api - object-oriented interface
|
|
85424
|
+
* @export
|
|
85425
|
+
* @class RolePropagationV2025Api
|
|
85426
|
+
* @extends {BaseAPI}
|
|
85427
|
+
*/
|
|
85428
|
+
export declare class RolePropagationV2025Api extends BaseAPI {
|
|
85429
|
+
/**
|
|
85430
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
85431
|
+
* @summary Terminate Role Propagation process
|
|
85432
|
+
* @param {RolePropagationV2025ApiCancelRolePropagationRequest} requestParameters Request parameters.
|
|
85433
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85434
|
+
* @throws {RequiredError}
|
|
85435
|
+
* @memberof RolePropagationV2025Api
|
|
85436
|
+
*/
|
|
85437
|
+
cancelRolePropagation(requestParameters?: RolePropagationV2025ApiCancelRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
85438
|
+
/**
|
|
85439
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85440
|
+
* @summary Get ongoing Role Propagation process
|
|
85441
|
+
* @param {RolePropagationV2025ApiGetOngoingRolePropagationRequest} requestParameters Request parameters.
|
|
85442
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85443
|
+
* @throws {RequiredError}
|
|
85444
|
+
* @memberof RolePropagationV2025Api
|
|
85445
|
+
*/
|
|
85446
|
+
getOngoingRolePropagation(requestParameters?: RolePropagationV2025ApiGetOngoingRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationOngoingResponseV2025, any>>;
|
|
85447
|
+
/**
|
|
85448
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
85449
|
+
* @summary Get status of Role-Propagation process
|
|
85450
|
+
* @param {RolePropagationV2025ApiGetRolePropagationStatusRequest} requestParameters Request parameters.
|
|
85451
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85452
|
+
* @throws {RequiredError}
|
|
85453
|
+
* @memberof RolePropagationV2025Api
|
|
85454
|
+
*/
|
|
85455
|
+
getRolePropagationStatus(requestParameters: RolePropagationV2025ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationStatusResponseV2025, any>>;
|
|
85456
|
+
/**
|
|
85457
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
85458
|
+
* @summary Initiate Role Propagation process
|
|
85459
|
+
* @param {RolePropagationV2025ApiStartRolePropagationRequest} requestParameters Request parameters.
|
|
85460
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85461
|
+
* @throws {RequiredError}
|
|
85462
|
+
* @memberof RolePropagationV2025Api
|
|
85463
|
+
*/
|
|
85464
|
+
startRolePropagation(requestParameters?: RolePropagationV2025ApiStartRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationResponseV2025, any>>;
|
|
85465
|
+
}
|
|
84696
85466
|
/**
|
|
84697
85467
|
* RolesV2025Api - axios parameter creator
|
|
84698
85468
|
* @export
|
|
@@ -88144,7 +88914,7 @@ export declare const SearchV2025ApiAxiosParamCreator: (configuration?: Configura
|
|
|
88144
88914
|
*/
|
|
88145
88915
|
searchGet: (index: SearchGetIndexV2025, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
88146
88916
|
/**
|
|
88147
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
88917
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
88148
88918
|
* @summary Perform search
|
|
88149
88919
|
* @param {SearchV2025} searchV2025
|
|
88150
88920
|
* @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.
|
|
@@ -88189,7 +88959,7 @@ export declare const SearchV2025ApiFp: (configuration?: Configuration) => {
|
|
|
88189
88959
|
*/
|
|
88190
88960
|
searchGet(index: SearchGetIndexV2025, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchDocumentV2025>>;
|
|
88191
88961
|
/**
|
|
88192
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
88962
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
88193
88963
|
* @summary Perform search
|
|
88194
88964
|
* @param {SearchV2025} searchV2025
|
|
88195
88965
|
* @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.
|
|
@@ -88230,7 +89000,7 @@ export declare const SearchV2025ApiFactory: (configuration?: Configuration, base
|
|
|
88230
89000
|
*/
|
|
88231
89001
|
searchGet(requestParameters: SearchV2025ApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SearchDocumentV2025>;
|
|
88232
89002
|
/**
|
|
88233
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
89003
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
88234
89004
|
* @summary Perform search
|
|
88235
89005
|
* @param {SearchV2025ApiSearchPostRequest} requestParameters Request parameters.
|
|
88236
89006
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88367,7 +89137,7 @@ export declare class SearchV2025Api extends BaseAPI {
|
|
|
88367
89137
|
*/
|
|
88368
89138
|
searchGet(requestParameters: SearchV2025ApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchDocumentV2025, any>>;
|
|
88369
89139
|
/**
|
|
88370
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
89140
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
88371
89141
|
* @summary Perform search
|
|
88372
89142
|
* @param {SearchV2025ApiSearchPostRequest} requestParameters Request parameters.
|
|
88373
89143
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -95414,11 +96184,10 @@ export declare const WorkItemsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
95414
96184
|
* @summary Forward a work item
|
|
95415
96185
|
* @param {string} id The ID of the work item
|
|
95416
96186
|
* @param {WorkItemForwardV2025} workItemForwardV2025
|
|
95417
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95418
96187
|
* @param {*} [axiosOptions] Override http request option.
|
|
95419
96188
|
* @throws {RequiredError}
|
|
95420
96189
|
*/
|
|
95421
|
-
forwardWorkItem: (id: string, workItemForwardV2025: WorkItemForwardV2025,
|
|
96190
|
+
forwardWorkItem: (id: string, workItemForwardV2025: WorkItemForwardV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
95422
96191
|
/**
|
|
95423
96192
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
95424
96193
|
* @summary Completed work items
|
|
@@ -95434,11 +96203,10 @@ export declare const WorkItemsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
95434
96203
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
95435
96204
|
* @summary Count completed work items
|
|
95436
96205
|
* @param {string} [ownerId] ID of the work item owner.
|
|
95437
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95438
96206
|
* @param {*} [axiosOptions] Override http request option.
|
|
95439
96207
|
* @throws {RequiredError}
|
|
95440
96208
|
*/
|
|
95441
|
-
getCountCompletedWorkItems: (ownerId?: string,
|
|
96209
|
+
getCountCompletedWorkItems: (ownerId?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
95442
96210
|
/**
|
|
95443
96211
|
* This gets a count of work items belonging to either the specified user(admin required), or the current user.
|
|
95444
96212
|
* @summary Count work items
|
|
@@ -95539,11 +96307,10 @@ export declare const WorkItemsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
95539
96307
|
* @summary Forward a work item
|
|
95540
96308
|
* @param {string} id The ID of the work item
|
|
95541
96309
|
* @param {WorkItemForwardV2025} workItemForwardV2025
|
|
95542
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95543
96310
|
* @param {*} [axiosOptions] Override http request option.
|
|
95544
96311
|
* @throws {RequiredError}
|
|
95545
96312
|
*/
|
|
95546
|
-
forwardWorkItem(id: string, workItemForwardV2025: WorkItemForwardV2025,
|
|
96313
|
+
forwardWorkItem(id: string, workItemForwardV2025: WorkItemForwardV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
95547
96314
|
/**
|
|
95548
96315
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
95549
96316
|
* @summary Completed work items
|
|
@@ -95559,11 +96326,10 @@ export declare const WorkItemsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
95559
96326
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
95560
96327
|
* @summary Count completed work items
|
|
95561
96328
|
* @param {string} [ownerId] ID of the work item owner.
|
|
95562
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95563
96329
|
* @param {*} [axiosOptions] Override http request option.
|
|
95564
96330
|
* @throws {RequiredError}
|
|
95565
96331
|
*/
|
|
95566
|
-
getCountCompletedWorkItems(ownerId?: string,
|
|
96332
|
+
getCountCompletedWorkItems(ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsCountV2025>>;
|
|
95567
96333
|
/**
|
|
95568
96334
|
* This gets a count of work items belonging to either the specified user(admin required), or the current user.
|
|
95569
96335
|
* @summary Count work items
|
|
@@ -95807,12 +96573,6 @@ export interface WorkItemsV2025ApiForwardWorkItemRequest {
|
|
|
95807
96573
|
* @memberof WorkItemsV2025ApiForwardWorkItem
|
|
95808
96574
|
*/
|
|
95809
96575
|
readonly workItemForwardV2025: WorkItemForwardV2025;
|
|
95810
|
-
/**
|
|
95811
|
-
* Use this header to enable this experimental API.
|
|
95812
|
-
* @type {string}
|
|
95813
|
-
* @memberof WorkItemsV2025ApiForwardWorkItem
|
|
95814
|
-
*/
|
|
95815
|
-
readonly xSailPointExperimental?: string;
|
|
95816
96576
|
}
|
|
95817
96577
|
/**
|
|
95818
96578
|
* Request parameters for getCompletedWorkItems operation in WorkItemsV2025Api.
|
|
@@ -95857,12 +96617,6 @@ export interface WorkItemsV2025ApiGetCountCompletedWorkItemsRequest {
|
|
|
95857
96617
|
* @memberof WorkItemsV2025ApiGetCountCompletedWorkItems
|
|
95858
96618
|
*/
|
|
95859
96619
|
readonly ownerId?: string;
|
|
95860
|
-
/**
|
|
95861
|
-
* Use this header to enable this experimental API.
|
|
95862
|
-
* @type {string}
|
|
95863
|
-
* @memberof WorkItemsV2025ApiGetCountCompletedWorkItems
|
|
95864
|
-
*/
|
|
95865
|
-
readonly xSailPointExperimental?: string;
|
|
95866
96620
|
}
|
|
95867
96621
|
/**
|
|
95868
96622
|
* Request parameters for getCountWorkItems operation in WorkItemsV2025Api.
|