sailpoint-api-client 1.7.7 → 1.7.8

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.
@@ -16,430 +16,1836 @@ import { BaseAPI } from './base';
16
16
  /**
17
17
  *
18
18
  * @export
19
- * @interface ArrayInnerV2026
20
- */
21
- export interface ArrayInnerV2026 {
22
- }
23
- /**
24
- *
25
- * @export
26
- * @interface ErrorMessageDtoV2026
19
+ * @interface AccountActionRequestDtoAccountDetailsV2026
27
20
  */
28
- export interface ErrorMessageDtoV2026 {
21
+ export interface AccountActionRequestDtoAccountDetailsV2026 {
29
22
  /**
30
- * The locale for the message text, a BCP 47 language tag.
23
+ * ID of account
31
24
  * @type {string}
32
- * @memberof ErrorMessageDtoV2026
25
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
33
26
  */
34
- 'locale'?: string | null;
27
+ 'accountId'?: string;
35
28
  /**
36
- *
37
- * @type {LocaleOriginV2026}
38
- * @memberof ErrorMessageDtoV2026
29
+ * Account name
30
+ * @type {string}
31
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
39
32
  */
40
- 'localeOrigin'?: LocaleOriginV2026 | null;
33
+ 'accountName'?: string;
41
34
  /**
42
- * Actual text of the error message in the indicated locale.
35
+ * Native identity of account
43
36
  * @type {string}
44
- * @memberof ErrorMessageDtoV2026
37
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
45
38
  */
46
- 'text'?: string;
47
- }
48
- /**
49
- *
50
- * @export
51
- * @interface ErrorResponseDtoV2026
52
- */
53
- export interface ErrorResponseDtoV2026 {
39
+ 'accountNativeIdentity'?: string;
54
40
  /**
55
- * Fine-grained error code providing more detail of the error.
41
+ * UUID associated with account
56
42
  * @type {string}
57
- * @memberof ErrorResponseDtoV2026
43
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
58
44
  */
59
- 'detailCode'?: string;
45
+ 'accountUuid'?: string;
60
46
  /**
61
- * Unique tracking id for the error.
47
+ * Type of account
62
48
  * @type {string}
63
- * @memberof ErrorResponseDtoV2026
49
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
64
50
  */
65
- 'trackingId'?: string;
51
+ 'accountType'?: string;
66
52
  /**
67
- * Generic localized reason for error
68
- * @type {Array<ErrorMessageDtoV2026>}
69
- * @memberof ErrorResponseDtoV2026
53
+ * Sub Type ID of account
54
+ * @type {string}
55
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
70
56
  */
71
- 'messages'?: Array<ErrorMessageDtoV2026>;
57
+ 'accountSubtypeId'?: string | null;
72
58
  /**
73
- * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
74
- * @type {Array<ErrorMessageDtoV2026>}
75
- * @memberof ErrorResponseDtoV2026
59
+ * Subtype of account
60
+ * @type {string}
61
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
76
62
  */
77
- 'causes'?: Array<ErrorMessageDtoV2026>;
78
- }
79
- /**
80
- *
81
- * @export
82
- * @interface GetTaskStatus401ResponseV2026
83
- */
84
- export interface GetTaskStatus401ResponseV2026 {
63
+ 'accountSubtype'?: string | null;
85
64
  /**
86
- * A message describing the error
87
- * @type {object}
88
- * @memberof GetTaskStatus401ResponseV2026
65
+ * Account Description
66
+ * @type {string}
67
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
89
68
  */
90
- 'error'?: object;
91
- }
92
- /**
93
- *
94
- * @export
95
- * @interface GetTaskStatus429ResponseV2026
96
- */
97
- export interface GetTaskStatus429ResponseV2026 {
69
+ 'description'?: string | null;
98
70
  /**
99
- * A message describing the error
100
- * @type {object}
101
- * @memberof GetTaskStatus429ResponseV2026
71
+ * ID of source
72
+ * @type {string}
73
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
102
74
  */
103
- 'message'?: object;
104
- }
105
- /**
106
- * A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
107
- * @export
108
- * @interface JsonPatchOperationV2026
109
- */
110
- export interface JsonPatchOperationV2026 {
75
+ 'sourceId'?: string;
111
76
  /**
112
- * The operation to be performed
77
+ * Name of source
113
78
  * @type {string}
114
- * @memberof JsonPatchOperationV2026
79
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
115
80
  */
116
- 'op': JsonPatchOperationV2026OpV2026;
81
+ 'sourceName'?: string;
117
82
  /**
118
- * A string JSON Pointer representing the target path to an element to be affected by the operation
119
- * @type {string}
120
- * @memberof JsonPatchOperationV2026
83
+ * Indicates entitlements assigned to identity or not
84
+ * @type {boolean}
85
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
121
86
  */
122
- 'path': string;
87
+ 'hasEntitlements'?: boolean;
88
+ /**
89
+ * Indicates account is enabled/disabled
90
+ * @type {boolean}
91
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
92
+ */
93
+ 'disabled'?: boolean;
94
+ /**
95
+ * Indicates account locked/unlocked
96
+ * @type {boolean}
97
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
98
+ */
99
+ 'locked'?: boolean;
123
100
  /**
124
101
  *
125
- * @type {JsonPatchOperationValueV2026}
126
- * @memberof JsonPatchOperationV2026
102
+ * @type {AccountDetailsOwnerIdentityV2026}
103
+ * @memberof AccountActionRequestDtoAccountDetailsV2026
127
104
  */
128
- 'value'?: JsonPatchOperationValueV2026;
105
+ 'ownerIdentity'?: AccountDetailsOwnerIdentityV2026 | null;
129
106
  }
130
- export declare const JsonPatchOperationV2026OpV2026: {
131
- readonly Add: "add";
132
- readonly Remove: "remove";
133
- readonly Replace: "replace";
134
- readonly Move: "move";
135
- readonly Copy: "copy";
136
- readonly Test: "test";
137
- };
138
- export type JsonPatchOperationV2026OpV2026 = typeof JsonPatchOperationV2026OpV2026[keyof typeof JsonPatchOperationV2026OpV2026];
139
- /**
140
- * @type JsonPatchOperationValueV2026
141
- * The value to be used for the operation, required for \"add\" and \"replace\" operations
142
- * @export
143
- */
144
- export type JsonPatchOperationValueV2026 = Array<ArrayInnerV2026> | boolean | number | object | string;
145
- /**
146
- * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.
147
- * @export
148
- * @enum {string}
149
- */
150
- export declare const LocaleOriginV2026: {
151
- readonly Default: "DEFAULT";
152
- readonly Request: "REQUEST";
153
- };
154
- export type LocaleOriginV2026 = typeof LocaleOriginV2026[keyof typeof LocaleOriginV2026];
155
107
  /**
156
- * Localized error message to indicate a failed invocation or error if any.
108
+ *
157
109
  * @export
158
- * @interface LocalizedMessageV2026
110
+ * @interface AccountActionRequestDtoCorrelatedIdentityV2026
159
111
  */
160
- export interface LocalizedMessageV2026 {
112
+ export interface AccountActionRequestDtoCorrelatedIdentityV2026 {
161
113
  /**
162
- * Message locale
114
+ * ID of identity
163
115
  * @type {string}
164
- * @memberof LocalizedMessageV2026
116
+ * @memberof AccountActionRequestDtoCorrelatedIdentityV2026
165
117
  */
166
- 'locale': string;
118
+ 'id'?: string;
167
119
  /**
168
- * Message text
120
+ * Name of Identity
169
121
  * @type {string}
170
- * @memberof LocalizedMessageV2026
122
+ * @memberof AccountActionRequestDtoCorrelatedIdentityV2026
171
123
  */
172
- 'message': string;
124
+ 'name'?: string;
125
+ /**
126
+ * mail id of identity
127
+ * @type {string}
128
+ * @memberof AccountActionRequestDtoCorrelatedIdentityV2026
129
+ */
130
+ 'email'?: string | null;
131
+ /**
132
+ * status of identity UNREGISTERED/REGISTERED
133
+ * @type {string}
134
+ * @memberof AccountActionRequestDtoCorrelatedIdentityV2026
135
+ */
136
+ 'status'?: string | null;
173
137
  }
174
138
  /**
175
139
  *
176
140
  * @export
177
- * @interface TargetV2026
141
+ * @interface AccountActionRequestDtoRequesterV2026
178
142
  */
179
- export interface TargetV2026 {
143
+ export interface AccountActionRequestDtoRequesterV2026 {
180
144
  /**
181
- * Target ID
182
- * @type {string}
183
- * @memberof TargetV2026
145
+ *
146
+ * @type {DtoTypeV2026 & object}
147
+ * @memberof AccountActionRequestDtoRequesterV2026
184
148
  */
185
- 'id'?: string;
149
+ 'type'?: DtoTypeV2026 & object;
186
150
  /**
187
- * Target type
151
+ * ID of the object to which this reference applies
188
152
  * @type {string}
189
- * @memberof TargetV2026
153
+ * @memberof AccountActionRequestDtoRequesterV2026
190
154
  */
191
- 'type'?: TargetV2026TypeV2026 | null;
155
+ 'id'?: string;
192
156
  /**
193
- * Target name
157
+ * Human-readable display name of the object to which this reference applies
194
158
  * @type {string}
195
- * @memberof TargetV2026
159
+ * @memberof AccountActionRequestDtoRequesterV2026
196
160
  */
197
161
  'name'?: string;
198
162
  }
199
- export declare const TargetV2026TypeV2026: {
200
- readonly Application: "APPLICATION";
201
- readonly Identity: "IDENTITY";
202
- };
203
- export type TargetV2026TypeV2026 = typeof TargetV2026TypeV2026[keyof typeof TargetV2026TypeV2026];
204
163
  /**
205
- * Definition of a type of task, used to invoke tasks
164
+ * Represents a request to perform an action on an account, such as deletion or modification.
206
165
  * @export
207
- * @interface TaskDefinitionSummaryV2026
166
+ * @interface AccountActionRequestDtoV2026
208
167
  */
209
- export interface TaskDefinitionSummaryV2026 {
168
+ export interface AccountActionRequestDtoV2026 {
210
169
  /**
211
- * System-generated unique ID of the TaskDefinition
170
+ * Account requester ID.
212
171
  * @type {string}
213
- * @memberof TaskDefinitionSummaryV2026
172
+ * @memberof AccountActionRequestDtoV2026
214
173
  */
215
- 'id': string;
174
+ 'accountRequestId'?: string;
216
175
  /**
217
- * Name of the TaskDefinition
176
+ * Access item requester\'s identity ID.
218
177
  * @type {string}
219
- * @memberof TaskDefinitionSummaryV2026
178
+ * @memberof AccountActionRequestDtoV2026
220
179
  */
221
- 'uniqueName': string;
180
+ 'requestType'?: string;
222
181
  /**
223
- * Description of the TaskDefinition
182
+ * Creation date and time of account deletion request date.
224
183
  * @type {string}
225
- * @memberof TaskDefinitionSummaryV2026
184
+ * @memberof AccountActionRequestDtoV2026
226
185
  */
227
- 'description': string | null;
186
+ 'createdAt'?: string;
228
187
  /**
229
- * Name of the parent of the TaskDefinition
188
+ * Account deletion request completion date and time.
230
189
  * @type {string}
231
- * @memberof TaskDefinitionSummaryV2026
190
+ * @memberof AccountActionRequestDtoV2026
232
191
  */
233
- 'parentName': string;
192
+ 'completedAt'?: string;
234
193
  /**
235
- * Executor of the TaskDefinition
194
+ * Overall status of deletion request.
236
195
  * @type {string}
237
- * @memberof TaskDefinitionSummaryV2026
196
+ * @memberof AccountActionRequestDtoV2026
238
197
  */
239
- 'executor': string | null;
198
+ 'overallStatus'?: string;
240
199
  /**
241
- * Formal parameters of the TaskDefinition, without values
242
- * @type {{ [key: string]: any; }}
243
- * @memberof TaskDefinitionSummaryV2026
200
+ *
201
+ * @type {AccountActionRequestDtoRequesterV2026}
202
+ * @memberof AccountActionRequestDtoV2026
244
203
  */
245
- 'arguments': {
246
- [key: string]: any;
247
- };
204
+ 'requester'?: AccountActionRequestDtoRequesterV2026;
205
+ /**
206
+ * Comments added by the requester while creating the account deletion request.
207
+ * @type {string}
208
+ * @memberof AccountActionRequestDtoV2026
209
+ */
210
+ 'requesterComments'?: string;
211
+ /**
212
+ *
213
+ * @type {AccountActionRequestDtoAccountDetailsV2026}
214
+ * @memberof AccountActionRequestDtoV2026
215
+ */
216
+ 'accountDetails'?: AccountActionRequestDtoAccountDetailsV2026;
217
+ /**
218
+ *
219
+ * @type {AccountActionRequestDtoCorrelatedIdentityV2026}
220
+ * @memberof AccountActionRequestDtoV2026
221
+ */
222
+ 'correlatedIdentity'?: AccountActionRequestDtoCorrelatedIdentityV2026;
223
+ /**
224
+ *
225
+ * @type {IdentityReferenceV2026}
226
+ * @memberof AccountActionRequestDtoV2026
227
+ */
228
+ 'managerReference'?: IdentityReferenceV2026;
229
+ /**
230
+ * ID of the approval request associated with the account deletion action.
231
+ * @type {string}
232
+ * @memberof AccountActionRequestDtoV2026
233
+ */
234
+ 'approvalRequestId'?: string;
235
+ /**
236
+ * List of account request phases.
237
+ * @type {Array<AccountRequestPhaseV2026>}
238
+ * @memberof AccountActionRequestDtoV2026
239
+ */
240
+ 'accountRequestPhases'?: Array<AccountRequestPhaseV2026>;
241
+ /**
242
+ * List approval details
243
+ * @type {Array<ApprovalDetailsV2026>}
244
+ * @memberof AccountActionRequestDtoV2026
245
+ */
246
+ 'approvalDetails'?: Array<ApprovalDetailsV2026>;
247
+ /**
248
+ * Detailed error information.
249
+ * @type {string}
250
+ * @memberof AccountActionRequestDtoV2026
251
+ */
252
+ 'errorDetails'?: string | null;
248
253
  }
249
254
  /**
250
- * Task return details
255
+ * Asynchronous response containing a unique tracking ID for the account deletion request
251
256
  * @export
252
- * @interface TaskReturnDetailsV2026
257
+ * @interface AccountDeleteAsyncResultV2026
253
258
  */
254
- export interface TaskReturnDetailsV2026 {
255
- /**
256
- * Display name of the TaskReturnDetails
257
- * @type {string}
258
- * @memberof TaskReturnDetailsV2026
259
- */
260
- 'name': string;
259
+ export interface AccountDeleteAsyncResultV2026 {
261
260
  /**
262
- * Attribute the TaskReturnDetails is for
261
+ * Id of the deletion request
263
262
  * @type {string}
264
- * @memberof TaskReturnDetailsV2026
263
+ * @memberof AccountDeleteAsyncResultV2026
265
264
  */
266
- 'attributeName': string;
265
+ 'accountRequestId': string;
267
266
  }
268
267
  /**
269
- *
268
+ * detailed information about account delete approval config
270
269
  * @export
271
- * @interface TaskStatusMessageParametersInnerV2026
270
+ * @interface AccountDeleteConfigDtoV2026
272
271
  */
273
- export interface TaskStatusMessageParametersInnerV2026 {
272
+ export interface AccountDeleteConfigDtoV2026 {
273
+ /**
274
+ * Specifies if an account deletion request requires approval.
275
+ * @type {boolean}
276
+ * @memberof AccountDeleteConfigDtoV2026
277
+ */
278
+ 'approvalRequired'?: boolean;
279
+ /**
280
+ *
281
+ * @type {ApprovalConfigV2026}
282
+ * @memberof AccountDeleteConfigDtoV2026
283
+ */
284
+ 'approvalConfig'?: ApprovalConfigV2026;
274
285
  }
275
286
  /**
276
- * TaskStatus Message
287
+ * Contains the required information for processing a user-initiated account deletion request, including the reason for deletion.
277
288
  * @export
278
- * @interface TaskStatusMessageV2026
289
+ * @interface AccountDeleteRequestInputV2026
279
290
  */
280
- export interface TaskStatusMessageV2026 {
291
+ export interface AccountDeleteRequestInputV2026 {
281
292
  /**
282
- * Type of the message
293
+ * Reason for deleting the account.
283
294
  * @type {string}
284
- * @memberof TaskStatusMessageV2026
295
+ * @memberof AccountDeleteRequestInputV2026
285
296
  */
286
- 'type': TaskStatusMessageV2026TypeV2026;
297
+ 'comments'?: string;
298
+ }
299
+ /**
300
+ *
301
+ * @export
302
+ * @interface AccountDetailsOwnerIdentityV2026
303
+ */
304
+ export interface AccountDetailsOwnerIdentityV2026 {
287
305
  /**
288
306
  *
289
- * @type {LocalizedMessageV2026}
290
- * @memberof TaskStatusMessageV2026
307
+ * @type {DtoTypeV2026 & object}
308
+ * @memberof AccountDetailsOwnerIdentityV2026
291
309
  */
292
- 'localizedText': LocalizedMessageV2026 | null;
310
+ 'type'?: DtoTypeV2026 & object;
293
311
  /**
294
- * Key of the message
312
+ * ID of the object to which this reference applies
295
313
  * @type {string}
296
- * @memberof TaskStatusMessageV2026
314
+ * @memberof AccountDetailsOwnerIdentityV2026
297
315
  */
298
- 'key': string;
316
+ 'id'?: string;
299
317
  /**
300
- * Message parameters for internationalization
301
- * @type {Array<TaskStatusMessageParametersInnerV2026>}
302
- * @memberof TaskStatusMessageV2026
318
+ * Human-readable display name of the object to which this reference applies
319
+ * @type {string}
320
+ * @memberof AccountDetailsOwnerIdentityV2026
303
321
  */
304
- 'parameters': Array<TaskStatusMessageParametersInnerV2026> | null;
322
+ 'name'?: string;
305
323
  }
306
- export declare const TaskStatusMessageV2026TypeV2026: {
307
- readonly Info: "INFO";
308
- readonly Warn: "WARN";
309
- readonly Error: "ERROR";
310
- };
311
- export type TaskStatusMessageV2026TypeV2026 = typeof TaskStatusMessageV2026TypeV2026[keyof typeof TaskStatusMessageV2026TypeV2026];
312
324
  /**
313
- * Details and current status of a specific task
325
+ * Contains detailed information about an account, including identifiers, type, status, source, and ownership details.
314
326
  * @export
315
- * @interface TaskStatusV2026
327
+ * @interface AccountDetailsV2026
316
328
  */
317
- export interface TaskStatusV2026 {
329
+ export interface AccountDetailsV2026 {
318
330
  /**
319
- * System-generated unique ID of the task this TaskStatus represents
331
+ * ID of account
320
332
  * @type {string}
321
- * @memberof TaskStatusV2026
333
+ * @memberof AccountDetailsV2026
322
334
  */
323
- 'id': string;
335
+ 'accountId'?: string;
324
336
  /**
325
- * Type of task this TaskStatus represents
337
+ * Account name
326
338
  * @type {string}
327
- * @memberof TaskStatusV2026
339
+ * @memberof AccountDetailsV2026
328
340
  */
329
- 'type': TaskStatusV2026TypeV2026;
341
+ 'accountName'?: string;
330
342
  /**
331
- * Name of the task this TaskStatus represents
343
+ * Native identity of account
332
344
  * @type {string}
333
- * @memberof TaskStatusV2026
345
+ * @memberof AccountDetailsV2026
334
346
  */
335
- 'uniqueName': string;
347
+ 'accountNativeIdentity'?: string;
336
348
  /**
337
- * Description of the task this TaskStatus represents
349
+ * UUID associated with account
338
350
  * @type {string}
339
- * @memberof TaskStatusV2026
351
+ * @memberof AccountDetailsV2026
340
352
  */
341
- 'description': string;
353
+ 'accountUuid'?: string;
342
354
  /**
343
- * Name of the parent of the task this TaskStatus represents
355
+ * Type of account
344
356
  * @type {string}
345
- * @memberof TaskStatusV2026
357
+ * @memberof AccountDetailsV2026
346
358
  */
347
- 'parentName': string | null;
359
+ 'accountType'?: string;
348
360
  /**
349
- * Service to execute the task this TaskStatus represents
361
+ * Sub Type ID of account
350
362
  * @type {string}
351
- * @memberof TaskStatusV2026
363
+ * @memberof AccountDetailsV2026
352
364
  */
353
- 'launcher': string;
365
+ 'accountSubtypeId'?: string | null;
354
366
  /**
355
- *
356
- * @type {TargetV2026}
357
- * @memberof TaskStatusV2026
367
+ * Subtype of account
368
+ * @type {string}
369
+ * @memberof AccountDetailsV2026
358
370
  */
359
- 'target'?: TargetV2026 | null;
371
+ 'accountSubtype'?: string | null;
360
372
  /**
361
- * Creation date of the task this TaskStatus represents
373
+ * Account Description
362
374
  * @type {string}
363
- * @memberof TaskStatusV2026
375
+ * @memberof AccountDetailsV2026
364
376
  */
365
- 'created': string;
377
+ 'description'?: string | null;
366
378
  /**
367
- * Last modification date of the task this TaskStatus represents
379
+ * ID of source
368
380
  * @type {string}
369
- * @memberof TaskStatusV2026
381
+ * @memberof AccountDetailsV2026
370
382
  */
371
- 'modified': string;
383
+ 'sourceId'?: string;
372
384
  /**
373
- * Launch date of the task this TaskStatus represents
385
+ * Name of source
374
386
  * @type {string}
375
- * @memberof TaskStatusV2026
387
+ * @memberof AccountDetailsV2026
376
388
  */
377
- 'launched': string | null;
389
+ 'sourceName'?: string;
378
390
  /**
379
- * Completion date of the task this TaskStatus represents
391
+ * Indicates entitlements assigned to identity or not
392
+ * @type {boolean}
393
+ * @memberof AccountDetailsV2026
394
+ */
395
+ 'hasEntitlements'?: boolean;
396
+ /**
397
+ * Indicates account is enabled/disabled
398
+ * @type {boolean}
399
+ * @memberof AccountDetailsV2026
400
+ */
401
+ 'disabled'?: boolean;
402
+ /**
403
+ * Indicates account locked/unlocked
404
+ * @type {boolean}
405
+ * @memberof AccountDetailsV2026
406
+ */
407
+ 'locked'?: boolean;
408
+ /**
409
+ *
410
+ * @type {AccountDetailsOwnerIdentityV2026}
411
+ * @memberof AccountDetailsV2026
412
+ */
413
+ 'ownerIdentity'?: AccountDetailsOwnerIdentityV2026 | null;
414
+ }
415
+ /**
416
+ * The current phase state of the account request, indicating its progress or outcome in the approval workflow.
417
+ * @export
418
+ * @enum {string}
419
+ */
420
+ export declare const AccountRequestPhaseStateV2026: {
421
+ readonly Pending: "PENDING";
422
+ readonly Cancelled: "CANCELLED";
423
+ readonly Approved: "APPROVED";
424
+ readonly Rejected: "REJECTED";
425
+ readonly Passed: "PASSED";
426
+ readonly Failed: "FAILED";
427
+ };
428
+ export type AccountRequestPhaseStateV2026 = typeof AccountRequestPhaseStateV2026[keyof typeof AccountRequestPhaseStateV2026];
429
+ /**
430
+ * Contains detailed information about each phase in the account request process, including its type, current state, and relevant timestamps.
431
+ * @export
432
+ * @interface AccountRequestPhaseV2026
433
+ */
434
+ export interface AccountRequestPhaseV2026 {
435
+ /**
436
+ * Enum of account request phase type
380
437
  * @type {string}
381
- * @memberof TaskStatusV2026
438
+ * @memberof AccountRequestPhaseV2026
382
439
  */
383
- 'completed': string | null;
440
+ 'name'?: AccountRequestPhaseV2026NameV2026;
384
441
  /**
385
- * Completion status of the task this TaskStatus represents
442
+ *
443
+ * @type {AccountRequestPhaseStateV2026}
444
+ * @memberof AccountRequestPhaseV2026
445
+ */
446
+ 'state'?: AccountRequestPhaseStateV2026;
447
+ /**
448
+ * Start date of account request phase.
386
449
  * @type {string}
387
- * @memberof TaskStatusV2026
450
+ * @memberof AccountRequestPhaseV2026
388
451
  */
389
- 'completionStatus': TaskStatusV2026CompletionStatusV2026 | null;
452
+ 'started'?: string;
390
453
  /**
391
- * Messages associated with the task this TaskStatus represents
392
- * @type {Array<TaskStatusMessageV2026>}
393
- * @memberof TaskStatusV2026
454
+ * Finish date of account request phase.
455
+ * @type {string}
456
+ * @memberof AccountRequestPhaseV2026
394
457
  */
395
- 'messages': Array<TaskStatusMessageV2026>;
458
+ 'finished'?: string;
459
+ }
460
+ export declare const AccountRequestPhaseV2026NameV2026: {
461
+ readonly ApprovalPhase: "APPROVAL_PHASE";
462
+ readonly ProvisioningPhase: "PROVISIONING_PHASE";
463
+ };
464
+ export type AccountRequestPhaseV2026NameV2026 = typeof AccountRequestPhaseV2026NameV2026[keyof typeof AccountRequestPhaseV2026NameV2026];
465
+ /**
466
+ *
467
+ * @export
468
+ * @interface ApprovalConfigV2026
469
+ */
470
+ export interface ApprovalConfigV2026 {
396
471
  /**
397
- * Return values from the task this TaskStatus represents
398
- * @type {Array<TaskReturnDetailsV2026>}
399
- * @memberof TaskStatusV2026
472
+ * Approvers must be listed as a comma-separated string, with each entry representing an individual or group authorized to approve account creation or deletion requests.
473
+ * @type {string}
474
+ * @memberof ApprovalConfigV2026
400
475
  */
401
- 'returns': Array<TaskReturnDetailsV2026>;
476
+ 'approvers'?: string;
402
477
  /**
403
- * Attributes of the task this TaskStatus represents
404
- * @type {{ [key: string]: any; }}
405
- * @memberof TaskStatusV2026
478
+ * Specifies the approval status for an account creation or deletion request. Allowed values are APPROVAL, REJECTION, ALL, and OFF.
479
+ * @type {string}
480
+ * @memberof ApprovalConfigV2026
406
481
  */
407
- 'attributes': {
408
- [key: string]: any;
409
- };
482
+ 'comments'?: ApprovalConfigV2026CommentsV2026;
483
+ }
484
+ export declare const ApprovalConfigV2026CommentsV2026: {
485
+ readonly Approval: "APPROVAL";
486
+ readonly Rejection: "REJECTION";
487
+ readonly All: "ALL";
488
+ readonly False: "false";
489
+ };
490
+ export type ApprovalConfigV2026CommentsV2026 = typeof ApprovalConfigV2026CommentsV2026[keyof typeof ApprovalConfigV2026CommentsV2026];
491
+ /**
492
+ * Contains comprehensive details about the approval process, including the approver\'s information, comments, decision date, serial order, and the current status of the approval request.
493
+ * @export
494
+ * @interface ApprovalDetailsV2026
495
+ */
496
+ export interface ApprovalDetailsV2026 {
410
497
  /**
411
- * Current progress of the task this TaskStatus represents
498
+ *
499
+ * @type {ApproverDtoV2026}
500
+ * @memberof ApprovalDetailsV2026
501
+ */
502
+ 'approver'?: ApproverDtoV2026;
503
+ /**
504
+ * Comments added by approver while rejecting or approving the account deletion request.
412
505
  * @type {string}
413
- * @memberof TaskStatusV2026
506
+ * @memberof ApprovalDetailsV2026
414
507
  */
415
- 'progress': string | null;
508
+ 'approverComments'?: string;
416
509
  /**
417
- * Current percentage completion of the task this TaskStatus represents
510
+ * Decision date of approval rejected or approved.
511
+ * @type {string}
512
+ * @memberof ApprovalDetailsV2026
513
+ */
514
+ 'decisionDate'?: string;
515
+ /**
516
+ * SerialOrder of approval details.
418
517
  * @type {number}
419
- * @memberof TaskStatusV2026
518
+ * @memberof ApprovalDetailsV2026
420
519
  */
421
- 'percentComplete': number;
520
+ 'serialOrder'?: number;
422
521
  /**
423
522
  *
424
- * @type {TaskDefinitionSummaryV2026}
425
- * @memberof TaskStatusV2026
523
+ * @type {AccountRequestPhaseStateV2026}
524
+ * @memberof ApprovalDetailsV2026
426
525
  */
427
- 'taskDefinitionSummary'?: TaskDefinitionSummaryV2026;
526
+ 'status'?: AccountRequestPhaseStateV2026;
428
527
  }
429
- export declare const TaskStatusV2026TypeV2026: {
430
- readonly Quartz: "QUARTZ";
431
- readonly Qpoc: "QPOC";
432
- readonly QueuedTask: "QUEUED_TASK";
433
- };
434
- export type TaskStatusV2026TypeV2026 = typeof TaskStatusV2026TypeV2026[keyof typeof TaskStatusV2026TypeV2026];
435
- export declare const TaskStatusV2026CompletionStatusV2026: {
436
- readonly Success: "SUCCESS";
437
- readonly Warning: "WARNING";
438
- readonly Error: "ERROR";
439
- readonly Terminated: "TERMINATED";
440
- readonly Temperror: "TEMPERROR";
528
+ /**
529
+ * Contains detailed information about the approver, including their identity, contact details, type, and references to related identities such as owners, actioned identities, and members.
530
+ * @export
531
+ * @interface ApproverDtoV2026
532
+ */
533
+ export interface ApproverDtoV2026 {
534
+ /**
535
+ * Identity ID and it cannot be null.
536
+ * @type {string}
537
+ * @memberof ApproverDtoV2026
538
+ */
539
+ 'identityID'?: string;
540
+ /**
541
+ * Optional id
542
+ * @type {string}
543
+ * @memberof ApproverDtoV2026
544
+ */
545
+ 'id'?: string | null;
546
+ /**
547
+ * Identity display name
548
+ * @type {string}
549
+ * @memberof ApproverDtoV2026
550
+ */
551
+ 'name'?: string;
552
+ /**
553
+ * Email address of identity
554
+ * @type {string}
555
+ * @memberof ApproverDtoV2026
556
+ */
557
+ 'email'?: string;
558
+ /**
559
+ * Used to mention type of data transfer object in this case it is used to transfer IDENTITY data.
560
+ * @type {string}
561
+ * @memberof ApproverDtoV2026
562
+ */
563
+ 'type'?: string;
564
+ /**
565
+ * List of reference of identity type dto for account owner identities
566
+ * @type {Array<ApproverReferenceV2026>}
567
+ * @memberof ApproverDtoV2026
568
+ */
569
+ 'ownerOf'?: Array<ApproverReferenceV2026> | null;
570
+ /**
571
+ * List of reference of identity type dto who acted on behalf of other identities.
572
+ * @type {Array<ApproverReferenceV2026>}
573
+ * @memberof ApproverDtoV2026
574
+ */
575
+ 'actionedAs'?: Array<ApproverReferenceV2026> | null;
576
+ /**
577
+ * List of reference of identity type dto for member identities.
578
+ * @type {Array<ApproverReferenceV2026>}
579
+ * @memberof ApproverDtoV2026
580
+ */
581
+ 'members'?: Array<ApproverReferenceV2026> | null;
582
+ }
583
+ /**
584
+ *
585
+ * @export
586
+ * @interface ApproverReferenceV2026
587
+ */
588
+ export interface ApproverReferenceV2026 {
589
+ /**
590
+ * Id of supported DtoType like IDENTITY, MACHINE_IDENTITY etc.
591
+ * @type {string}
592
+ * @memberof ApproverReferenceV2026
593
+ */
594
+ 'id'?: string;
595
+ /**
596
+ * Type of Dto
597
+ * @type {string}
598
+ * @memberof ApproverReferenceV2026
599
+ */
600
+ 'type'?: string;
601
+ /**
602
+ * Display name of DtoType like IDENTITY, MACHINE_IDENTITY etc
603
+ * @type {string}
604
+ * @memberof ApproverReferenceV2026
605
+ */
606
+ 'name'?: string;
607
+ }
608
+ /**
609
+ *
610
+ * @export
611
+ * @interface ArrayInnerV2026
612
+ */
613
+ export interface ArrayInnerV2026 {
614
+ }
615
+ /**
616
+ * Base object for referencing other DTOs, containing type, id, and name fields for identification and display purposes.
617
+ * @export
618
+ * @interface BaseReferenceDtoV2026
619
+ */
620
+ export interface BaseReferenceDtoV2026 {
621
+ /**
622
+ *
623
+ * @type {DtoTypeV2026 & object}
624
+ * @memberof BaseReferenceDtoV2026
625
+ */
626
+ 'type'?: DtoTypeV2026 & object;
627
+ /**
628
+ * ID of the object to which this reference applies
629
+ * @type {string}
630
+ * @memberof BaseReferenceDtoV2026
631
+ */
632
+ 'id'?: string;
633
+ /**
634
+ * Human-readable display name of the object to which this reference applies
635
+ * @type {string}
636
+ * @memberof BaseReferenceDtoV2026
637
+ */
638
+ 'name'?: string;
639
+ }
640
+ /**
641
+ * An enumeration of the types of DTOs supported within the IdentityNow infrastructure.
642
+ * @export
643
+ * @enum {string}
644
+ */
645
+ export declare const DtoTypeV2026: {
646
+ readonly AccountCorrelationConfig: "ACCOUNT_CORRELATION_CONFIG";
647
+ readonly AccessProfile: "ACCESS_PROFILE";
648
+ readonly AccessRequestApproval: "ACCESS_REQUEST_APPROVAL";
649
+ readonly AccessRequestConfig: "ACCESS_REQUEST_CONFIG";
650
+ readonly Account: "ACCOUNT";
651
+ readonly Application: "APPLICATION";
652
+ readonly Attribute: "ATTRIBUTE";
653
+ readonly AuthOrg: "AUTH_ORG";
654
+ readonly Campaign: "CAMPAIGN";
655
+ readonly CampaignFilter: "CAMPAIGN_FILTER";
656
+ readonly Certification: "CERTIFICATION";
657
+ readonly CloudAccess: "CLOUD_ACCESS";
658
+ readonly Cluster: "CLUSTER";
659
+ readonly ConnectorSchema: "CONNECTOR_SCHEMA";
660
+ readonly Entitlement: "ENTITLEMENT";
661
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
662
+ readonly Identity: "IDENTITY";
663
+ readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
664
+ readonly IdentityProfile: "IDENTITY_PROFILE";
665
+ readonly IdentityRequest: "IDENTITY_REQUEST";
666
+ readonly MachineIdentity: "MACHINE_IDENTITY";
667
+ readonly LifecycleState: "LIFECYCLE_STATE";
668
+ readonly NotificationTemplate: "NOTIFICATION_TEMPLATE";
669
+ readonly PasswordPolicy: "PASSWORD_POLICY";
670
+ readonly PasswordPolicyConfig: "PASSWORD_POLICY_CONFIG";
671
+ readonly PasswordSyncGroup: "PASSWORD_SYNC_GROUP";
672
+ readonly PublicIdentitiesConfig: "PUBLIC_IDENTITIES_CONFIG";
673
+ readonly Role: "ROLE";
674
+ readonly Rule: "RULE";
675
+ readonly ConnectorRule: "CONNECTOR_RULE";
676
+ readonly ServiceDeskIntegration: "SERVICE_DESK_INTEGRATION";
677
+ readonly SodPolicy: "SOD_POLICY";
678
+ readonly Source: "SOURCE";
679
+ readonly System: "SYSTEM";
680
+ readonly Tag: "TAG";
681
+ readonly TagCategory: "TAG_CATEGORY";
682
+ readonly TaskResult: "TASK_RESULT";
683
+ readonly ReportResult: "REPORT_RESULT";
684
+ readonly SodViolation: "SOD_VIOLATION";
685
+ readonly AccountActivity: "ACCOUNT_ACTIVITY";
686
+ readonly TriggerSubscription: "TRIGGER_SUBSCRIPTION";
687
+ readonly Transform: "TRANSFORM";
688
+ readonly ArmRisk: "ARM_RISK";
689
+ readonly ArmActivity: "ARM_ACTIVITY";
690
+ readonly Segment: "SEGMENT";
691
+ readonly AttrSyncSourceConfig: "ATTR_SYNC_SOURCE_CONFIG";
692
+ readonly FormDefinition: "FORM_DEFINITION";
693
+ readonly Workflow: "WORKFLOW";
694
+ readonly Workgroup: "WORKGROUP";
695
+ readonly Dimension: "DIMENSION";
696
+ readonly Unknown: "UNKNOWN";
441
697
  };
442
- export type TaskStatusV2026CompletionStatusV2026 = typeof TaskStatusV2026CompletionStatusV2026[keyof typeof TaskStatusV2026CompletionStatusV2026];
698
+ export type DtoTypeV2026 = typeof DtoTypeV2026[keyof typeof DtoTypeV2026];
699
+ /**
700
+ *
701
+ * @export
702
+ * @interface ErrorMessageDtoV2026
703
+ */
704
+ export interface ErrorMessageDtoV2026 {
705
+ /**
706
+ * The locale for the message text, a BCP 47 language tag.
707
+ * @type {string}
708
+ * @memberof ErrorMessageDtoV2026
709
+ */
710
+ 'locale'?: string | null;
711
+ /**
712
+ *
713
+ * @type {LocaleOriginV2026}
714
+ * @memberof ErrorMessageDtoV2026
715
+ */
716
+ 'localeOrigin'?: LocaleOriginV2026 | null;
717
+ /**
718
+ * Actual text of the error message in the indicated locale.
719
+ * @type {string}
720
+ * @memberof ErrorMessageDtoV2026
721
+ */
722
+ 'text'?: string;
723
+ }
724
+ /**
725
+ *
726
+ * @export
727
+ * @interface ErrorResponseDtoV2026
728
+ */
729
+ export interface ErrorResponseDtoV2026 {
730
+ /**
731
+ * Fine-grained error code providing more detail of the error.
732
+ * @type {string}
733
+ * @memberof ErrorResponseDtoV2026
734
+ */
735
+ 'detailCode'?: string;
736
+ /**
737
+ * Unique tracking id for the error.
738
+ * @type {string}
739
+ * @memberof ErrorResponseDtoV2026
740
+ */
741
+ 'trackingId'?: string;
742
+ /**
743
+ * Generic localized reason for error
744
+ * @type {Array<ErrorMessageDtoV2026>}
745
+ * @memberof ErrorResponseDtoV2026
746
+ */
747
+ 'messages'?: Array<ErrorMessageDtoV2026>;
748
+ /**
749
+ * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
750
+ * @type {Array<ErrorMessageDtoV2026>}
751
+ * @memberof ErrorResponseDtoV2026
752
+ */
753
+ 'causes'?: Array<ErrorMessageDtoV2026>;
754
+ }
755
+ /**
756
+ *
757
+ * @export
758
+ * @interface GetTaskStatus401ResponseV2026
759
+ */
760
+ export interface GetTaskStatus401ResponseV2026 {
761
+ /**
762
+ * A message describing the error
763
+ * @type {object}
764
+ * @memberof GetTaskStatus401ResponseV2026
765
+ */
766
+ 'error'?: object;
767
+ }
768
+ /**
769
+ *
770
+ * @export
771
+ * @interface GetTaskStatus429ResponseV2026
772
+ */
773
+ export interface GetTaskStatus429ResponseV2026 {
774
+ /**
775
+ * A message describing the error
776
+ * @type {object}
777
+ * @memberof GetTaskStatus429ResponseV2026
778
+ */
779
+ 'message'?: object;
780
+ }
781
+ /**
782
+ * Contains detailed information about an identity, including unique identifier, name, email address, and registration status.
783
+ * @export
784
+ * @interface IdentityReferenceV2026
785
+ */
786
+ export interface IdentityReferenceV2026 {
787
+ /**
788
+ * ID of identity
789
+ * @type {string}
790
+ * @memberof IdentityReferenceV2026
791
+ */
792
+ 'id'?: string;
793
+ /**
794
+ * Name of Identity
795
+ * @type {string}
796
+ * @memberof IdentityReferenceV2026
797
+ */
798
+ 'name'?: string;
799
+ /**
800
+ * mail id of identity
801
+ * @type {string}
802
+ * @memberof IdentityReferenceV2026
803
+ */
804
+ 'email'?: string | null;
805
+ /**
806
+ * status of identity UNREGISTERED/REGISTERED
807
+ * @type {string}
808
+ * @memberof IdentityReferenceV2026
809
+ */
810
+ 'status'?: string | null;
811
+ }
812
+ /**
813
+ * A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
814
+ * @export
815
+ * @interface JsonPatchOperationV2026
816
+ */
817
+ export interface JsonPatchOperationV2026 {
818
+ /**
819
+ * The operation to be performed
820
+ * @type {string}
821
+ * @memberof JsonPatchOperationV2026
822
+ */
823
+ 'op': JsonPatchOperationV2026OpV2026;
824
+ /**
825
+ * A string JSON Pointer representing the target path to an element to be affected by the operation
826
+ * @type {string}
827
+ * @memberof JsonPatchOperationV2026
828
+ */
829
+ 'path': string;
830
+ /**
831
+ *
832
+ * @type {JsonPatchOperationValueV2026}
833
+ * @memberof JsonPatchOperationV2026
834
+ */
835
+ 'value'?: JsonPatchOperationValueV2026;
836
+ }
837
+ export declare const JsonPatchOperationV2026OpV2026: {
838
+ readonly Add: "add";
839
+ readonly Remove: "remove";
840
+ readonly Replace: "replace";
841
+ readonly Move: "move";
842
+ readonly Copy: "copy";
843
+ readonly Test: "test";
844
+ };
845
+ export type JsonPatchOperationV2026OpV2026 = typeof JsonPatchOperationV2026OpV2026[keyof typeof JsonPatchOperationV2026OpV2026];
846
+ /**
847
+ * @type JsonPatchOperationValueV2026
848
+ * The value to be used for the operation, required for \"add\" and \"replace\" operations
849
+ * @export
850
+ */
851
+ export type JsonPatchOperationValueV2026 = Array<ArrayInnerV2026> | boolean | number | object | string;
852
+ /**
853
+ * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.
854
+ * @export
855
+ * @enum {string}
856
+ */
857
+ export declare const LocaleOriginV2026: {
858
+ readonly Default: "DEFAULT";
859
+ readonly Request: "REQUEST";
860
+ };
861
+ export type LocaleOriginV2026 = typeof LocaleOriginV2026[keyof typeof LocaleOriginV2026];
862
+ /**
863
+ * Localized error message to indicate a failed invocation or error if any.
864
+ * @export
865
+ * @interface LocalizedMessageV2026
866
+ */
867
+ export interface LocalizedMessageV2026 {
868
+ /**
869
+ * Message locale
870
+ * @type {string}
871
+ * @memberof LocalizedMessageV2026
872
+ */
873
+ 'locale': string;
874
+ /**
875
+ * Message text
876
+ * @type {string}
877
+ * @memberof LocalizedMessageV2026
878
+ */
879
+ 'message': string;
880
+ }
881
+ /**
882
+ * Configuration options for machine account creation, including whether creation is enabled, if approval is required, associated form and entitlement IDs, and detailed approval settings such as approvers and allowed comment types.
883
+ * @export
884
+ * @interface MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
885
+ */
886
+ export interface MachineAccountSubTypeConfigDtoMachineAccountCreateV2026 {
887
+ /**
888
+ * Specifies if the creation of machine accounts is allowed for this subtype.
889
+ * @type {boolean}
890
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
891
+ */
892
+ 'accountCreateEnabled'?: boolean;
893
+ /**
894
+ * Specifies if approval is needed before a machine account can be created for this subtype.
895
+ * @type {boolean}
896
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
897
+ */
898
+ 'approvalRequired'?: boolean;
899
+ /**
900
+ * formId
901
+ * @type {string}
902
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
903
+ */
904
+ 'formId'?: string;
905
+ /**
906
+ * Configuration details specifying who can approve machine account creation requests and the types of comments allowed during the approval process.
907
+ * @type {string}
908
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
909
+ */
910
+ 'entitlementId'?: string;
911
+ /**
912
+ *
913
+ * @type {ApprovalConfigV2026}
914
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
915
+ */
916
+ 'approvalConfig'?: ApprovalConfigV2026;
917
+ }
918
+ /**
919
+ * Configuration options for machine account deletion, including whether approval is required, the list of authorized approvers, and the types of comments permitted during the approval workflow.
920
+ * @export
921
+ * @interface MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026
922
+ */
923
+ export interface MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026 {
924
+ /**
925
+ * Indicates whether approval is required for an account deletion request.
926
+ * @type {boolean}
927
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026
928
+ */
929
+ 'approvalRequired'?: boolean;
930
+ /**
931
+ *
932
+ * @type {ApprovalConfigV2026}
933
+ * @memberof MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026
934
+ */
935
+ 'approvalConfig'?: ApprovalConfigV2026;
936
+ }
937
+ /**
938
+ * Contains comprehensive configuration details for machine account subtype approval, including creation and deletion approval requirements, approver lists, form and entitlement references, and approval status options.
939
+ * @export
940
+ * @interface MachineAccountSubTypeConfigDtoV2026
941
+ */
942
+ export interface MachineAccountSubTypeConfigDtoV2026 {
943
+ /**
944
+ * Unique identifier representing the specific subtype of the machine account, used to distinguish between different machine account categories.
945
+ * @type {string}
946
+ * @memberof MachineAccountSubTypeConfigDtoV2026
947
+ */
948
+ 'subtypeId'?: string;
949
+ /**
950
+ *
951
+ * @type {MachineAccountSubTypeConfigDtoMachineAccountCreateV2026}
952
+ * @memberof MachineAccountSubTypeConfigDtoV2026
953
+ */
954
+ 'machineAccountCreate'?: MachineAccountSubTypeConfigDtoMachineAccountCreateV2026;
955
+ /**
956
+ *
957
+ * @type {MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026}
958
+ * @memberof MachineAccountSubTypeConfigDtoV2026
959
+ */
960
+ 'machineAccountDelete'?: MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026;
961
+ }
962
+ /**
963
+ *
964
+ * @export
965
+ * @interface TargetV2026
966
+ */
967
+ export interface TargetV2026 {
968
+ /**
969
+ * Target ID
970
+ * @type {string}
971
+ * @memberof TargetV2026
972
+ */
973
+ 'id'?: string;
974
+ /**
975
+ * Target type
976
+ * @type {string}
977
+ * @memberof TargetV2026
978
+ */
979
+ 'type'?: TargetV2026TypeV2026 | null;
980
+ /**
981
+ * Target name
982
+ * @type {string}
983
+ * @memberof TargetV2026
984
+ */
985
+ 'name'?: string;
986
+ }
987
+ export declare const TargetV2026TypeV2026: {
988
+ readonly Application: "APPLICATION";
989
+ readonly Identity: "IDENTITY";
990
+ };
991
+ export type TargetV2026TypeV2026 = typeof TargetV2026TypeV2026[keyof typeof TargetV2026TypeV2026];
992
+ /**
993
+ * Definition of a type of task, used to invoke tasks
994
+ * @export
995
+ * @interface TaskDefinitionSummaryV2026
996
+ */
997
+ export interface TaskDefinitionSummaryV2026 {
998
+ /**
999
+ * System-generated unique ID of the TaskDefinition
1000
+ * @type {string}
1001
+ * @memberof TaskDefinitionSummaryV2026
1002
+ */
1003
+ 'id': string;
1004
+ /**
1005
+ * Name of the TaskDefinition
1006
+ * @type {string}
1007
+ * @memberof TaskDefinitionSummaryV2026
1008
+ */
1009
+ 'uniqueName': string;
1010
+ /**
1011
+ * Description of the TaskDefinition
1012
+ * @type {string}
1013
+ * @memberof TaskDefinitionSummaryV2026
1014
+ */
1015
+ 'description': string | null;
1016
+ /**
1017
+ * Name of the parent of the TaskDefinition
1018
+ * @type {string}
1019
+ * @memberof TaskDefinitionSummaryV2026
1020
+ */
1021
+ 'parentName': string;
1022
+ /**
1023
+ * Executor of the TaskDefinition
1024
+ * @type {string}
1025
+ * @memberof TaskDefinitionSummaryV2026
1026
+ */
1027
+ 'executor': string | null;
1028
+ /**
1029
+ * Formal parameters of the TaskDefinition, without values
1030
+ * @type {{ [key: string]: any; }}
1031
+ * @memberof TaskDefinitionSummaryV2026
1032
+ */
1033
+ 'arguments': {
1034
+ [key: string]: any;
1035
+ };
1036
+ }
1037
+ /**
1038
+ * Task return details
1039
+ * @export
1040
+ * @interface TaskReturnDetailsV2026
1041
+ */
1042
+ export interface TaskReturnDetailsV2026 {
1043
+ /**
1044
+ * Display name of the TaskReturnDetails
1045
+ * @type {string}
1046
+ * @memberof TaskReturnDetailsV2026
1047
+ */
1048
+ 'name': string;
1049
+ /**
1050
+ * Attribute the TaskReturnDetails is for
1051
+ * @type {string}
1052
+ * @memberof TaskReturnDetailsV2026
1053
+ */
1054
+ 'attributeName': string;
1055
+ }
1056
+ /**
1057
+ *
1058
+ * @export
1059
+ * @interface TaskStatusMessageParametersInnerV2026
1060
+ */
1061
+ export interface TaskStatusMessageParametersInnerV2026 {
1062
+ }
1063
+ /**
1064
+ * TaskStatus Message
1065
+ * @export
1066
+ * @interface TaskStatusMessageV2026
1067
+ */
1068
+ export interface TaskStatusMessageV2026 {
1069
+ /**
1070
+ * Type of the message
1071
+ * @type {string}
1072
+ * @memberof TaskStatusMessageV2026
1073
+ */
1074
+ 'type': TaskStatusMessageV2026TypeV2026;
1075
+ /**
1076
+ *
1077
+ * @type {LocalizedMessageV2026}
1078
+ * @memberof TaskStatusMessageV2026
1079
+ */
1080
+ 'localizedText': LocalizedMessageV2026 | null;
1081
+ /**
1082
+ * Key of the message
1083
+ * @type {string}
1084
+ * @memberof TaskStatusMessageV2026
1085
+ */
1086
+ 'key': string;
1087
+ /**
1088
+ * Message parameters for internationalization
1089
+ * @type {Array<TaskStatusMessageParametersInnerV2026>}
1090
+ * @memberof TaskStatusMessageV2026
1091
+ */
1092
+ 'parameters': Array<TaskStatusMessageParametersInnerV2026> | null;
1093
+ }
1094
+ export declare const TaskStatusMessageV2026TypeV2026: {
1095
+ readonly Info: "INFO";
1096
+ readonly Warn: "WARN";
1097
+ readonly Error: "ERROR";
1098
+ };
1099
+ export type TaskStatusMessageV2026TypeV2026 = typeof TaskStatusMessageV2026TypeV2026[keyof typeof TaskStatusMessageV2026TypeV2026];
1100
+ /**
1101
+ * Details and current status of a specific task
1102
+ * @export
1103
+ * @interface TaskStatusV2026
1104
+ */
1105
+ export interface TaskStatusV2026 {
1106
+ /**
1107
+ * System-generated unique ID of the task this TaskStatus represents
1108
+ * @type {string}
1109
+ * @memberof TaskStatusV2026
1110
+ */
1111
+ 'id': string;
1112
+ /**
1113
+ * Type of task this TaskStatus represents
1114
+ * @type {string}
1115
+ * @memberof TaskStatusV2026
1116
+ */
1117
+ 'type': TaskStatusV2026TypeV2026;
1118
+ /**
1119
+ * Name of the task this TaskStatus represents
1120
+ * @type {string}
1121
+ * @memberof TaskStatusV2026
1122
+ */
1123
+ 'uniqueName': string;
1124
+ /**
1125
+ * Description of the task this TaskStatus represents
1126
+ * @type {string}
1127
+ * @memberof TaskStatusV2026
1128
+ */
1129
+ 'description': string;
1130
+ /**
1131
+ * Name of the parent of the task this TaskStatus represents
1132
+ * @type {string}
1133
+ * @memberof TaskStatusV2026
1134
+ */
1135
+ 'parentName': string | null;
1136
+ /**
1137
+ * Service to execute the task this TaskStatus represents
1138
+ * @type {string}
1139
+ * @memberof TaskStatusV2026
1140
+ */
1141
+ 'launcher': string;
1142
+ /**
1143
+ *
1144
+ * @type {TargetV2026}
1145
+ * @memberof TaskStatusV2026
1146
+ */
1147
+ 'target'?: TargetV2026 | null;
1148
+ /**
1149
+ * Creation date of the task this TaskStatus represents
1150
+ * @type {string}
1151
+ * @memberof TaskStatusV2026
1152
+ */
1153
+ 'created': string;
1154
+ /**
1155
+ * Last modification date of the task this TaskStatus represents
1156
+ * @type {string}
1157
+ * @memberof TaskStatusV2026
1158
+ */
1159
+ 'modified': string;
1160
+ /**
1161
+ * Launch date of the task this TaskStatus represents
1162
+ * @type {string}
1163
+ * @memberof TaskStatusV2026
1164
+ */
1165
+ 'launched': string | null;
1166
+ /**
1167
+ * Completion date of the task this TaskStatus represents
1168
+ * @type {string}
1169
+ * @memberof TaskStatusV2026
1170
+ */
1171
+ 'completed': string | null;
1172
+ /**
1173
+ * Completion status of the task this TaskStatus represents
1174
+ * @type {string}
1175
+ * @memberof TaskStatusV2026
1176
+ */
1177
+ 'completionStatus': TaskStatusV2026CompletionStatusV2026 | null;
1178
+ /**
1179
+ * Messages associated with the task this TaskStatus represents
1180
+ * @type {Array<TaskStatusMessageV2026>}
1181
+ * @memberof TaskStatusV2026
1182
+ */
1183
+ 'messages': Array<TaskStatusMessageV2026>;
1184
+ /**
1185
+ * Return values from the task this TaskStatus represents
1186
+ * @type {Array<TaskReturnDetailsV2026>}
1187
+ * @memberof TaskStatusV2026
1188
+ */
1189
+ 'returns': Array<TaskReturnDetailsV2026>;
1190
+ /**
1191
+ * Attributes of the task this TaskStatus represents
1192
+ * @type {{ [key: string]: any; }}
1193
+ * @memberof TaskStatusV2026
1194
+ */
1195
+ 'attributes': {
1196
+ [key: string]: any;
1197
+ };
1198
+ /**
1199
+ * Current progress of the task this TaskStatus represents
1200
+ * @type {string}
1201
+ * @memberof TaskStatusV2026
1202
+ */
1203
+ 'progress': string | null;
1204
+ /**
1205
+ * Current percentage completion of the task this TaskStatus represents
1206
+ * @type {number}
1207
+ * @memberof TaskStatusV2026
1208
+ */
1209
+ 'percentComplete': number;
1210
+ /**
1211
+ *
1212
+ * @type {TaskDefinitionSummaryV2026}
1213
+ * @memberof TaskStatusV2026
1214
+ */
1215
+ 'taskDefinitionSummary'?: TaskDefinitionSummaryV2026;
1216
+ }
1217
+ export declare const TaskStatusV2026TypeV2026: {
1218
+ readonly Quartz: "QUARTZ";
1219
+ readonly Qpoc: "QPOC";
1220
+ readonly QueuedTask: "QUEUED_TASK";
1221
+ };
1222
+ export type TaskStatusV2026TypeV2026 = typeof TaskStatusV2026TypeV2026[keyof typeof TaskStatusV2026TypeV2026];
1223
+ export declare const TaskStatusV2026CompletionStatusV2026: {
1224
+ readonly Success: "SUCCESS";
1225
+ readonly Warning: "WARNING";
1226
+ readonly Error: "ERROR";
1227
+ readonly Terminated: "TERMINATED";
1228
+ readonly Temperror: "TEMPERROR";
1229
+ };
1230
+ export type TaskStatusV2026CompletionStatusV2026 = typeof TaskStatusV2026CompletionStatusV2026[keyof typeof TaskStatusV2026CompletionStatusV2026];
1231
+ /**
1232
+ * AccountDeletionRequestsV2026Api - axios parameter creator
1233
+ * @export
1234
+ */
1235
+ export declare const AccountDeletionRequestsV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
1236
+ /**
1237
+ * Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
1238
+ * @summary List of Account Deletion Requests
1239
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1240
+ * @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.
1241
+ * @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.
1242
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1243
+ * @param {boolean} [mine] Determines whether to return only the account deletion requests initiated by the currently authenticated user. If set to true, the response includes only deletion requests created by the logged-in user. If set to false or not provided, the response includes all deletion requests for the tenant, regardless of the initiator. This parameter allows users to view their own requests, while administrators can view all requests within the tenant.
1244
+ * @param {*} [axiosOptions] Override http request option.
1245
+ * @throws {RequiredError}
1246
+ */
1247
+ getAccountDeletionRequests: (xSailPointExperimental: string, limit?: number, offset?: number, count?: boolean, mine?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1248
+ };
1249
+ /**
1250
+ * AccountDeletionRequestsV2026Api - functional programming interface
1251
+ * @export
1252
+ */
1253
+ export declare const AccountDeletionRequestsV2026ApiFp: (configuration?: Configuration) => {
1254
+ /**
1255
+ * Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
1256
+ * @summary List of Account Deletion Requests
1257
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1258
+ * @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.
1259
+ * @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.
1260
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1261
+ * @param {boolean} [mine] Determines whether to return only the account deletion requests initiated by the currently authenticated user. If set to true, the response includes only deletion requests created by the logged-in user. If set to false or not provided, the response includes all deletion requests for the tenant, regardless of the initiator. This parameter allows users to view their own requests, while administrators can view all requests within the tenant.
1262
+ * @param {*} [axiosOptions] Override http request option.
1263
+ * @throws {RequiredError}
1264
+ */
1265
+ getAccountDeletionRequests(xSailPointExperimental: string, limit?: number, offset?: number, count?: boolean, mine?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountActionRequestDtoV2026>>>;
1266
+ };
1267
+ /**
1268
+ * AccountDeletionRequestsV2026Api - factory interface
1269
+ * @export
1270
+ */
1271
+ export declare const AccountDeletionRequestsV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1272
+ /**
1273
+ * Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
1274
+ * @summary List of Account Deletion Requests
1275
+ * @param {AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest} requestParameters Request parameters.
1276
+ * @param {*} [axiosOptions] Override http request option.
1277
+ * @throws {RequiredError}
1278
+ */
1279
+ getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccountActionRequestDtoV2026>>;
1280
+ };
1281
+ /**
1282
+ * Request parameters for getAccountDeletionRequests operation in AccountDeletionRequestsV2026Api.
1283
+ * @export
1284
+ * @interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest
1285
+ */
1286
+ export interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest {
1287
+ /**
1288
+ * Use this header to enable this experimental API.
1289
+ * @type {string}
1290
+ * @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
1291
+ */
1292
+ readonly xSailPointExperimental: string;
1293
+ /**
1294
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1295
+ * @type {number}
1296
+ * @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
1297
+ */
1298
+ readonly limit?: number;
1299
+ /**
1300
+ * 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.
1301
+ * @type {number}
1302
+ * @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
1303
+ */
1304
+ readonly offset?: number;
1305
+ /**
1306
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1307
+ * @type {boolean}
1308
+ * @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
1309
+ */
1310
+ readonly count?: boolean;
1311
+ /**
1312
+ * Determines whether to return only the account deletion requests initiated by the currently authenticated user. If set to true, the response includes only deletion requests created by the logged-in user. If set to false or not provided, the response includes all deletion requests for the tenant, regardless of the initiator. This parameter allows users to view their own requests, while administrators can view all requests within the tenant.
1313
+ * @type {boolean}
1314
+ * @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
1315
+ */
1316
+ readonly mine?: boolean;
1317
+ }
1318
+ /**
1319
+ * AccountDeletionRequestsV2026Api - object-oriented interface
1320
+ * @export
1321
+ * @class AccountDeletionRequestsV2026Api
1322
+ * @extends {BaseAPI}
1323
+ */
1324
+ export declare class AccountDeletionRequestsV2026Api extends BaseAPI {
1325
+ /**
1326
+ * Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
1327
+ * @summary List of Account Deletion Requests
1328
+ * @param {AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest} requestParameters Request parameters.
1329
+ * @param {*} [axiosOptions] Override http request option.
1330
+ * @throws {RequiredError}
1331
+ * @memberof AccountDeletionRequestsV2026Api
1332
+ */
1333
+ getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountActionRequestDtoV2026[], any>>;
1334
+ }
1335
+ /**
1336
+ * DeleteAccountV2026Api - axios parameter creator
1337
+ * @export
1338
+ */
1339
+ export declare const DeleteAccountV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
1340
+ /**
1341
+ * Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
1342
+ * @summary Delete account
1343
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1344
+ * @param {string} accountId Account ID.
1345
+ * @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
1346
+ * @param {*} [axiosOptions] Override http request option.
1347
+ * @throws {RequiredError}
1348
+ */
1349
+ deleteAccountRequest: (xSailPointExperimental: string, accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1350
+ };
1351
+ /**
1352
+ * DeleteAccountV2026Api - functional programming interface
1353
+ * @export
1354
+ */
1355
+ export declare const DeleteAccountV2026ApiFp: (configuration?: Configuration) => {
1356
+ /**
1357
+ * Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
1358
+ * @summary Delete account
1359
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1360
+ * @param {string} accountId Account ID.
1361
+ * @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
1362
+ * @param {*} [axiosOptions] Override http request option.
1363
+ * @throws {RequiredError}
1364
+ */
1365
+ deleteAccountRequest(xSailPointExperimental: string, accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteAsyncResultV2026>>;
1366
+ };
1367
+ /**
1368
+ * DeleteAccountV2026Api - factory interface
1369
+ * @export
1370
+ */
1371
+ export declare const DeleteAccountV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1372
+ /**
1373
+ * Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
1374
+ * @summary Delete account
1375
+ * @param {DeleteAccountV2026ApiDeleteAccountRequestRequest} requestParameters Request parameters.
1376
+ * @param {*} [axiosOptions] Override http request option.
1377
+ * @throws {RequiredError}
1378
+ */
1379
+ deleteAccountRequest(requestParameters: DeleteAccountV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteAsyncResultV2026>;
1380
+ };
1381
+ /**
1382
+ * Request parameters for deleteAccountRequest operation in DeleteAccountV2026Api.
1383
+ * @export
1384
+ * @interface DeleteAccountV2026ApiDeleteAccountRequestRequest
1385
+ */
1386
+ export interface DeleteAccountV2026ApiDeleteAccountRequestRequest {
1387
+ /**
1388
+ * Use this header to enable this experimental API.
1389
+ * @type {string}
1390
+ * @memberof DeleteAccountV2026ApiDeleteAccountRequest
1391
+ */
1392
+ readonly xSailPointExperimental: string;
1393
+ /**
1394
+ * Account ID.
1395
+ * @type {string}
1396
+ * @memberof DeleteAccountV2026ApiDeleteAccountRequest
1397
+ */
1398
+ readonly accountId: string;
1399
+ /**
1400
+ *
1401
+ * @type {AccountDeleteRequestInputV2026}
1402
+ * @memberof DeleteAccountV2026ApiDeleteAccountRequest
1403
+ */
1404
+ readonly accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026;
1405
+ }
1406
+ /**
1407
+ * DeleteAccountV2026Api - object-oriented interface
1408
+ * @export
1409
+ * @class DeleteAccountV2026Api
1410
+ * @extends {BaseAPI}
1411
+ */
1412
+ export declare class DeleteAccountV2026Api extends BaseAPI {
1413
+ /**
1414
+ * Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
1415
+ * @summary Delete account
1416
+ * @param {DeleteAccountV2026ApiDeleteAccountRequestRequest} requestParameters Request parameters.
1417
+ * @param {*} [axiosOptions] Override http request option.
1418
+ * @throws {RequiredError}
1419
+ * @memberof DeleteAccountV2026Api
1420
+ */
1421
+ deleteAccountRequest(requestParameters: DeleteAccountV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteAsyncResultV2026, any>>;
1422
+ }
1423
+ /**
1424
+ * HumanAccountDeletionApprovalConfigV2026Api - axios parameter creator
1425
+ * @export
1426
+ */
1427
+ export declare const HumanAccountDeletionApprovalConfigV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
1428
+ /**
1429
+ * The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
1430
+ * @summary Human Account Deletion Approval Config
1431
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1432
+ * @param {string} sourceId The Source id
1433
+ * @param {*} [axiosOptions] Override http request option.
1434
+ * @throws {RequiredError}
1435
+ */
1436
+ getAccountDeleteApprovalConfig: (xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1437
+ /**
1438
+ * Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
1439
+ * @summary Human Account Deletion Approval Config
1440
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1441
+ * @param {string} sourceId Human account source ID.
1442
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
1443
+ * @param {*} [axiosOptions] Override http request option.
1444
+ * @throws {RequiredError}
1445
+ */
1446
+ updateAccountDeletionApprovalConfig: (xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1447
+ };
1448
+ /**
1449
+ * HumanAccountDeletionApprovalConfigV2026Api - functional programming interface
1450
+ * @export
1451
+ */
1452
+ export declare const HumanAccountDeletionApprovalConfigV2026ApiFp: (configuration?: Configuration) => {
1453
+ /**
1454
+ * The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
1455
+ * @summary Human Account Deletion Approval Config
1456
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1457
+ * @param {string} sourceId The Source id
1458
+ * @param {*} [axiosOptions] Override http request option.
1459
+ * @throws {RequiredError}
1460
+ */
1461
+ getAccountDeleteApprovalConfig(xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
1462
+ /**
1463
+ * Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
1464
+ * @summary Human Account Deletion Approval Config
1465
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1466
+ * @param {string} sourceId Human account source ID.
1467
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
1468
+ * @param {*} [axiosOptions] Override http request option.
1469
+ * @throws {RequiredError}
1470
+ */
1471
+ updateAccountDeletionApprovalConfig(xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
1472
+ };
1473
+ /**
1474
+ * HumanAccountDeletionApprovalConfigV2026Api - factory interface
1475
+ * @export
1476
+ */
1477
+ export declare const HumanAccountDeletionApprovalConfigV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1478
+ /**
1479
+ * The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
1480
+ * @summary Human Account Deletion Approval Config
1481
+ * @param {HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest} requestParameters Request parameters.
1482
+ * @param {*} [axiosOptions] Override http request option.
1483
+ * @throws {RequiredError}
1484
+ */
1485
+ getAccountDeleteApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
1486
+ /**
1487
+ * Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
1488
+ * @summary Human Account Deletion Approval Config
1489
+ * @param {HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
1490
+ * @param {*} [axiosOptions] Override http request option.
1491
+ * @throws {RequiredError}
1492
+ */
1493
+ updateAccountDeletionApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
1494
+ };
1495
+ /**
1496
+ * Request parameters for getAccountDeleteApprovalConfig operation in HumanAccountDeletionApprovalConfigV2026Api.
1497
+ * @export
1498
+ * @interface HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest
1499
+ */
1500
+ export interface HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest {
1501
+ /**
1502
+ * Use this header to enable this experimental API.
1503
+ * @type {string}
1504
+ * @memberof HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfig
1505
+ */
1506
+ readonly xSailPointExperimental: string;
1507
+ /**
1508
+ * The Source id
1509
+ * @type {string}
1510
+ * @memberof HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfig
1511
+ */
1512
+ readonly sourceId: string;
1513
+ }
1514
+ /**
1515
+ * Request parameters for updateAccountDeletionApprovalConfig operation in HumanAccountDeletionApprovalConfigV2026Api.
1516
+ * @export
1517
+ * @interface HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest
1518
+ */
1519
+ export interface HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest {
1520
+ /**
1521
+ * Use this header to enable this experimental API.
1522
+ * @type {string}
1523
+ * @memberof HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfig
1524
+ */
1525
+ readonly xSailPointExperimental: string;
1526
+ /**
1527
+ * Human account source ID.
1528
+ * @type {string}
1529
+ * @memberof HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfig
1530
+ */
1531
+ readonly sourceId: string;
1532
+ /**
1533
+ * The JSONPatch payload used to update the object.
1534
+ * @type {Array<JsonPatchOperationV2026>}
1535
+ * @memberof HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfig
1536
+ */
1537
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
1538
+ }
1539
+ /**
1540
+ * HumanAccountDeletionApprovalConfigV2026Api - object-oriented interface
1541
+ * @export
1542
+ * @class HumanAccountDeletionApprovalConfigV2026Api
1543
+ * @extends {BaseAPI}
1544
+ */
1545
+ export declare class HumanAccountDeletionApprovalConfigV2026Api extends BaseAPI {
1546
+ /**
1547
+ * The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
1548
+ * @summary Human Account Deletion Approval Config
1549
+ * @param {HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest} requestParameters Request parameters.
1550
+ * @param {*} [axiosOptions] Override http request option.
1551
+ * @throws {RequiredError}
1552
+ * @memberof HumanAccountDeletionApprovalConfigV2026Api
1553
+ */
1554
+ getAccountDeleteApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
1555
+ /**
1556
+ * Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
1557
+ * @summary Human Account Deletion Approval Config
1558
+ * @param {HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
1559
+ * @param {*} [axiosOptions] Override http request option.
1560
+ * @throws {RequiredError}
1561
+ * @memberof HumanAccountDeletionApprovalConfigV2026Api
1562
+ */
1563
+ updateAccountDeletionApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
1564
+ }
1565
+ /**
1566
+ * MachineAccountDeletionApprovalConfigV2026Api - axios parameter creator
1567
+ * @export
1568
+ */
1569
+ export declare const MachineAccountDeletionApprovalConfigV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
1570
+ /**
1571
+ * Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
1572
+ * @summary Machine Account Deletion Approval Config
1573
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1574
+ * @param {string} sourceId source id.
1575
+ * @param {*} [axiosOptions] Override http request option.
1576
+ * @throws {RequiredError}
1577
+ */
1578
+ getMachineAccountDeletionApprovalConfigBySource: (xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1579
+ /**
1580
+ * Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
1581
+ * @summary Machine Account Deletion Approval Config
1582
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1583
+ * @param {string} sourceId machine account source ID.
1584
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
1585
+ * @param {*} [axiosOptions] Override http request option.
1586
+ * @throws {RequiredError}
1587
+ */
1588
+ updateMachineAccountDeletionApprovalConfig: (xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1589
+ };
1590
+ /**
1591
+ * MachineAccountDeletionApprovalConfigV2026Api - functional programming interface
1592
+ * @export
1593
+ */
1594
+ export declare const MachineAccountDeletionApprovalConfigV2026ApiFp: (configuration?: Configuration) => {
1595
+ /**
1596
+ * Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
1597
+ * @summary Machine Account Deletion Approval Config
1598
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1599
+ * @param {string} sourceId source id.
1600
+ * @param {*} [axiosOptions] Override http request option.
1601
+ * @throws {RequiredError}
1602
+ */
1603
+ getMachineAccountDeletionApprovalConfigBySource(xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
1604
+ /**
1605
+ * Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
1606
+ * @summary Machine Account Deletion Approval Config
1607
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1608
+ * @param {string} sourceId machine account source ID.
1609
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
1610
+ * @param {*} [axiosOptions] Override http request option.
1611
+ * @throws {RequiredError}
1612
+ */
1613
+ updateMachineAccountDeletionApprovalConfig(xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
1614
+ };
1615
+ /**
1616
+ * MachineAccountDeletionApprovalConfigV2026Api - factory interface
1617
+ * @export
1618
+ */
1619
+ export declare const MachineAccountDeletionApprovalConfigV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1620
+ /**
1621
+ * Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
1622
+ * @summary Machine Account Deletion Approval Config
1623
+ * @param {MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest} requestParameters Request parameters.
1624
+ * @param {*} [axiosOptions] Override http request option.
1625
+ * @throws {RequiredError}
1626
+ */
1627
+ getMachineAccountDeletionApprovalConfigBySource(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
1628
+ /**
1629
+ * Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
1630
+ * @summary Machine Account Deletion Approval Config
1631
+ * @param {MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
1632
+ * @param {*} [axiosOptions] Override http request option.
1633
+ * @throws {RequiredError}
1634
+ */
1635
+ updateMachineAccountDeletionApprovalConfig(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
1636
+ };
1637
+ /**
1638
+ * Request parameters for getMachineAccountDeletionApprovalConfigBySource operation in MachineAccountDeletionApprovalConfigV2026Api.
1639
+ * @export
1640
+ * @interface MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest
1641
+ */
1642
+ export interface MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest {
1643
+ /**
1644
+ * Use this header to enable this experimental API.
1645
+ * @type {string}
1646
+ * @memberof MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySource
1647
+ */
1648
+ readonly xSailPointExperimental: string;
1649
+ /**
1650
+ * source id.
1651
+ * @type {string}
1652
+ * @memberof MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySource
1653
+ */
1654
+ readonly sourceId: string;
1655
+ }
1656
+ /**
1657
+ * Request parameters for updateMachineAccountDeletionApprovalConfig operation in MachineAccountDeletionApprovalConfigV2026Api.
1658
+ * @export
1659
+ * @interface MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest
1660
+ */
1661
+ export interface MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest {
1662
+ /**
1663
+ * Use this header to enable this experimental API.
1664
+ * @type {string}
1665
+ * @memberof MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfig
1666
+ */
1667
+ readonly xSailPointExperimental: string;
1668
+ /**
1669
+ * machine account source ID.
1670
+ * @type {string}
1671
+ * @memberof MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfig
1672
+ */
1673
+ readonly sourceId: string;
1674
+ /**
1675
+ * The JSONPatch payload used to update the object.
1676
+ * @type {Array<JsonPatchOperationV2026>}
1677
+ * @memberof MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfig
1678
+ */
1679
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
1680
+ }
1681
+ /**
1682
+ * MachineAccountDeletionApprovalConfigV2026Api - object-oriented interface
1683
+ * @export
1684
+ * @class MachineAccountDeletionApprovalConfigV2026Api
1685
+ * @extends {BaseAPI}
1686
+ */
1687
+ export declare class MachineAccountDeletionApprovalConfigV2026Api extends BaseAPI {
1688
+ /**
1689
+ * Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
1690
+ * @summary Machine Account Deletion Approval Config
1691
+ * @param {MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest} requestParameters Request parameters.
1692
+ * @param {*} [axiosOptions] Override http request option.
1693
+ * @throws {RequiredError}
1694
+ * @memberof MachineAccountDeletionApprovalConfigV2026Api
1695
+ */
1696
+ getMachineAccountDeletionApprovalConfigBySource(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
1697
+ /**
1698
+ * Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
1699
+ * @summary Machine Account Deletion Approval Config
1700
+ * @param {MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
1701
+ * @param {*} [axiosOptions] Override http request option.
1702
+ * @throws {RequiredError}
1703
+ * @memberof MachineAccountDeletionApprovalConfigV2026Api
1704
+ */
1705
+ updateMachineAccountDeletionApprovalConfig(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
1706
+ }
1707
+ /**
1708
+ * MachineSubtypeApprovalConfigV2026Api - axios parameter creator
1709
+ * @export
1710
+ */
1711
+ export declare const MachineSubtypeApprovalConfigV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
1712
+ /**
1713
+ * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
1714
+ * @summary Machine Subtype Approval Config
1715
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1716
+ * @param {string} subtypeId machine subtype id.
1717
+ * @param {*} [axiosOptions] Override http request option.
1718
+ * @throws {RequiredError}
1719
+ */
1720
+ getMachineAccountDeletionSubTypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1721
+ /**
1722
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
1723
+ * @summary Machine Subtype Approval Config
1724
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1725
+ * @param {string} subtypeId machine account subtype ID.
1726
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
1727
+ * @param {*} [axiosOptions] Override http request option.
1728
+ * @throws {RequiredError}
1729
+ */
1730
+ updateMachineAccountDeletionBySubTypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1731
+ };
1732
+ /**
1733
+ * MachineSubtypeApprovalConfigV2026Api - functional programming interface
1734
+ * @export
1735
+ */
1736
+ export declare const MachineSubtypeApprovalConfigV2026ApiFp: (configuration?: Configuration) => {
1737
+ /**
1738
+ * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
1739
+ * @summary Machine Subtype Approval Config
1740
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1741
+ * @param {string} subtypeId machine subtype id.
1742
+ * @param {*} [axiosOptions] Override http request option.
1743
+ * @throws {RequiredError}
1744
+ */
1745
+ getMachineAccountDeletionSubTypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
1746
+ /**
1747
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
1748
+ * @summary Machine Subtype Approval Config
1749
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
1750
+ * @param {string} subtypeId machine account subtype ID.
1751
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
1752
+ * @param {*} [axiosOptions] Override http request option.
1753
+ * @throws {RequiredError}
1754
+ */
1755
+ updateMachineAccountDeletionBySubTypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
1756
+ };
1757
+ /**
1758
+ * MachineSubtypeApprovalConfigV2026Api - factory interface
1759
+ * @export
1760
+ */
1761
+ export declare const MachineSubtypeApprovalConfigV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1762
+ /**
1763
+ * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
1764
+ * @summary Machine Subtype Approval Config
1765
+ * @param {MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
1766
+ * @param {*} [axiosOptions] Override http request option.
1767
+ * @throws {RequiredError}
1768
+ */
1769
+ getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026>;
1770
+ /**
1771
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
1772
+ * @summary Machine Subtype Approval Config
1773
+ * @param {MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
1774
+ * @param {*} [axiosOptions] Override http request option.
1775
+ * @throws {RequiredError}
1776
+ */
1777
+ updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026>;
1778
+ };
1779
+ /**
1780
+ * Request parameters for getMachineAccountDeletionSubTypeApprovalConfig operation in MachineSubtypeApprovalConfigV2026Api.
1781
+ * @export
1782
+ * @interface MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest
1783
+ */
1784
+ export interface MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest {
1785
+ /**
1786
+ * Use this header to enable this experimental API.
1787
+ * @type {string}
1788
+ * @memberof MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
1789
+ */
1790
+ readonly xSailPointExperimental: string;
1791
+ /**
1792
+ * machine subtype id.
1793
+ * @type {string}
1794
+ * @memberof MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
1795
+ */
1796
+ readonly subtypeId: string;
1797
+ }
1798
+ /**
1799
+ * Request parameters for updateMachineAccountDeletionBySubTypeApprovalConfig operation in MachineSubtypeApprovalConfigV2026Api.
1800
+ * @export
1801
+ * @interface MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest
1802
+ */
1803
+ export interface MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest {
1804
+ /**
1805
+ * Use this header to enable this experimental API.
1806
+ * @type {string}
1807
+ * @memberof MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
1808
+ */
1809
+ readonly xSailPointExperimental: string;
1810
+ /**
1811
+ * machine account subtype ID.
1812
+ * @type {string}
1813
+ * @memberof MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
1814
+ */
1815
+ readonly subtypeId: string;
1816
+ /**
1817
+ * The JSONPatch payload used to update the object.
1818
+ * @type {Array<JsonPatchOperationV2026>}
1819
+ * @memberof MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
1820
+ */
1821
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
1822
+ }
1823
+ /**
1824
+ * MachineSubtypeApprovalConfigV2026Api - object-oriented interface
1825
+ * @export
1826
+ * @class MachineSubtypeApprovalConfigV2026Api
1827
+ * @extends {BaseAPI}
1828
+ */
1829
+ export declare class MachineSubtypeApprovalConfigV2026Api extends BaseAPI {
1830
+ /**
1831
+ * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
1832
+ * @summary Machine Subtype Approval Config
1833
+ * @param {MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
1834
+ * @param {*} [axiosOptions] Override http request option.
1835
+ * @throws {RequiredError}
1836
+ * @memberof MachineSubtypeApprovalConfigV2026Api
1837
+ */
1838
+ getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubTypeConfigDtoV2026, any>>;
1839
+ /**
1840
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
1841
+ * @summary Machine Subtype Approval Config
1842
+ * @param {MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
1843
+ * @param {*} [axiosOptions] Override http request option.
1844
+ * @throws {RequiredError}
1845
+ * @memberof MachineSubtypeApprovalConfigV2026Api
1846
+ */
1847
+ updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubTypeConfigDtoV2026, any>>;
1848
+ }
443
1849
  /**
444
1850
  * TaskManagementV2026Api - axios parameter creator
445
1851
  * @export