sailpoint-api-client 1.7.1 → 1.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/.openapi-generator/VERSION +1 -1
- package/beta/README.md +2 -2
- package/beta/api.ts +485 -56
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +258 -39
- package/dist/beta/api.js +475 -28
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +3 -3
- package/dist/index.spec.js.map +1 -1
- package/dist/v2024/api.d.ts +275 -69
- package/dist/v2024/api.js +497 -63
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +848 -94
- package/dist/v2025/api.js +1224 -126
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +21 -8
- package/dist/v3/api.js +9 -8
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +3 -3
- package/package.json +15 -2
- package/v2024/.openapi-generator/VERSION +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +509 -109
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/.openapi-generator/VERSION +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +1436 -193
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/.openapi-generator/VERSION +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/.openapi-generator/VERSION +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +22 -9
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2025/api.ts
CHANGED
|
@@ -3228,14 +3228,15 @@ export interface AccessRequestTrackingV2025 {
|
|
|
3228
3228
|
'accessRequestIds'?: Array<string>;
|
|
3229
3229
|
}
|
|
3230
3230
|
/**
|
|
3231
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
3231
|
+
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
|
|
3232
3232
|
* @export
|
|
3233
3233
|
* @enum {string}
|
|
3234
3234
|
*/
|
|
3235
3235
|
|
|
3236
3236
|
export const AccessRequestTypeV2025 = {
|
|
3237
3237
|
GrantAccess: 'GRANT_ACCESS',
|
|
3238
|
-
RevokeAccess: 'REVOKE_ACCESS'
|
|
3238
|
+
RevokeAccess: 'REVOKE_ACCESS',
|
|
3239
|
+
ModifyAccess: 'MODIFY_ACCESS'
|
|
3239
3240
|
} as const;
|
|
3240
3241
|
|
|
3241
3242
|
export type AccessRequestTypeV2025 = typeof AccessRequestTypeV2025[keyof typeof AccessRequestTypeV2025];
|
|
@@ -7468,13 +7469,13 @@ export interface ApprovalConfigV2025 {
|
|
|
7468
7469
|
*/
|
|
7469
7470
|
'tenantId'?: string;
|
|
7470
7471
|
/**
|
|
7471
|
-
* ID
|
|
7472
|
+
* The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
7472
7473
|
* @type {string}
|
|
7473
7474
|
* @memberof ApprovalConfigV2025
|
|
7474
7475
|
*/
|
|
7475
7476
|
'id'?: string;
|
|
7476
7477
|
/**
|
|
7477
|
-
* The
|
|
7478
|
+
* The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
7478
7479
|
* @type {string}
|
|
7479
7480
|
* @memberof ApprovalConfigV2025
|
|
7480
7481
|
*/
|
|
@@ -8938,7 +8939,10 @@ export interface AttributeMappingsAllOfTargetV2025 {
|
|
|
8938
8939
|
}
|
|
8939
8940
|
|
|
8940
8941
|
export const AttributeMappingsAllOfTargetV2025TypeV2025 = {
|
|
8941
|
-
|
|
8942
|
+
Account: 'ACCOUNT',
|
|
8943
|
+
Identity: 'IDENTITY',
|
|
8944
|
+
OwnerAccount: 'OWNER_ACCOUNT',
|
|
8945
|
+
OwnerIdentity: 'OWNER_IDENTITY'
|
|
8942
8946
|
} as const;
|
|
8943
8947
|
|
|
8944
8948
|
export type AttributeMappingsAllOfTargetV2025TypeV2025 = typeof AttributeMappingsAllOfTargetV2025TypeV2025[keyof typeof AttributeMappingsAllOfTargetV2025TypeV2025];
|
|
@@ -21414,6 +21418,12 @@ export interface GetRoleAssignments200ResponseInnerV2025 {
|
|
|
21414
21418
|
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
21415
21419
|
*/
|
|
21416
21420
|
'addedDate'?: string;
|
|
21421
|
+
/**
|
|
21422
|
+
* Date that the assignment will be removed
|
|
21423
|
+
* @type {string}
|
|
21424
|
+
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
21425
|
+
*/
|
|
21426
|
+
'removeDate'?: string | null;
|
|
21417
21427
|
/**
|
|
21418
21428
|
* Comments added by the user when the assignment was made
|
|
21419
21429
|
* @type {string}
|
|
@@ -21450,12 +21460,6 @@ export interface GetRoleAssignments200ResponseInnerV2025 {
|
|
|
21450
21460
|
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
21451
21461
|
*/
|
|
21452
21462
|
'accountTargets'?: Array<RoleTargetDtoV2025>;
|
|
21453
|
-
/**
|
|
21454
|
-
* Date that the assignment will be removed
|
|
21455
|
-
* @type {string}
|
|
21456
|
-
* @memberof GetRoleAssignments200ResponseInnerV2025
|
|
21457
|
-
*/
|
|
21458
|
-
'removeDate'?: string | null;
|
|
21459
21463
|
}
|
|
21460
21464
|
/**
|
|
21461
21465
|
*
|
|
@@ -35891,6 +35895,18 @@ export interface RequestabilityForRoleV2025 {
|
|
|
35891
35895
|
* @memberof RequestabilityForRoleV2025
|
|
35892
35896
|
*/
|
|
35893
35897
|
'reauthorizationRequired'?: boolean | null;
|
|
35898
|
+
/**
|
|
35899
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
35900
|
+
* @type {boolean}
|
|
35901
|
+
* @memberof RequestabilityForRoleV2025
|
|
35902
|
+
*/
|
|
35903
|
+
'requireEndDate'?: boolean;
|
|
35904
|
+
/**
|
|
35905
|
+
*
|
|
35906
|
+
* @type {AccessDurationV2025}
|
|
35907
|
+
* @memberof RequestabilityForRoleV2025
|
|
35908
|
+
*/
|
|
35909
|
+
'maxPermittedAccessDuration'?: AccessDurationV2025 | null;
|
|
35894
35910
|
/**
|
|
35895
35911
|
* List describing the steps in approving the request
|
|
35896
35912
|
* @type {Array<ApprovalSchemeForRoleV2025>}
|
|
@@ -37633,6 +37649,12 @@ export interface RoleAssignmentRefV2025 {
|
|
|
37633
37649
|
* @memberof RoleAssignmentRefV2025
|
|
37634
37650
|
*/
|
|
37635
37651
|
'addedDate'?: string;
|
|
37652
|
+
/**
|
|
37653
|
+
* Date that the assignment will be removed
|
|
37654
|
+
* @type {string}
|
|
37655
|
+
* @memberof RoleAssignmentRefV2025
|
|
37656
|
+
*/
|
|
37657
|
+
'removeDate'?: string | null;
|
|
37636
37658
|
}
|
|
37637
37659
|
/**
|
|
37638
37660
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -40131,6 +40153,260 @@ export interface RoleMiningSessionStatusV2025 {
|
|
|
40131
40153
|
}
|
|
40132
40154
|
|
|
40133
40155
|
|
|
40156
|
+
/**
|
|
40157
|
+
* Details of the ongoing role propagation process
|
|
40158
|
+
* @export
|
|
40159
|
+
* @interface RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40160
|
+
*/
|
|
40161
|
+
export interface RolePropagationOngoingResponseRolePropagationDetailsV2025 {
|
|
40162
|
+
/**
|
|
40163
|
+
* Id of the Role Propagation process triggered.
|
|
40164
|
+
* @type {string}
|
|
40165
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40166
|
+
*/
|
|
40167
|
+
'id'?: string;
|
|
40168
|
+
/**
|
|
40169
|
+
* Status of the Role Propagation process.
|
|
40170
|
+
* @type {string}
|
|
40171
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40172
|
+
*/
|
|
40173
|
+
'status'?: RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025;
|
|
40174
|
+
/**
|
|
40175
|
+
* Current execution stage of the Role Propagation process.
|
|
40176
|
+
* @type {string}
|
|
40177
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40178
|
+
*/
|
|
40179
|
+
'executionStage'?: RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025;
|
|
40180
|
+
/**
|
|
40181
|
+
* Time when the Role Propagation process was launched.
|
|
40182
|
+
* @type {string}
|
|
40183
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40184
|
+
*/
|
|
40185
|
+
'launched'?: string;
|
|
40186
|
+
/**
|
|
40187
|
+
*
|
|
40188
|
+
* @type {RolePropagationStatusResponseLaunchedByV2025}
|
|
40189
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40190
|
+
*/
|
|
40191
|
+
'launchedBy'?: RolePropagationStatusResponseLaunchedByV2025;
|
|
40192
|
+
/**
|
|
40193
|
+
*
|
|
40194
|
+
* @type {RolePropagationStatusResponseTerminatedByV2025}
|
|
40195
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40196
|
+
*/
|
|
40197
|
+
'terminatedBy'?: RolePropagationStatusResponseTerminatedByV2025;
|
|
40198
|
+
/**
|
|
40199
|
+
* Time when the Role Propagation process was completed.
|
|
40200
|
+
* @type {string}
|
|
40201
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40202
|
+
*/
|
|
40203
|
+
'completed'?: string;
|
|
40204
|
+
/**
|
|
40205
|
+
* Reason for failure if the Role Propagation process failed.
|
|
40206
|
+
* @type {string}
|
|
40207
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40208
|
+
*/
|
|
40209
|
+
'failureReason'?: string;
|
|
40210
|
+
/**
|
|
40211
|
+
* Indicates if the role refresh was skipped during the Role Propagation process.
|
|
40212
|
+
* @type {boolean}
|
|
40213
|
+
* @memberof RolePropagationOngoingResponseRolePropagationDetailsV2025
|
|
40214
|
+
*/
|
|
40215
|
+
'skipRoleRefresh'?: boolean;
|
|
40216
|
+
}
|
|
40217
|
+
|
|
40218
|
+
export const RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025 = {
|
|
40219
|
+
Running: 'RUNNING',
|
|
40220
|
+
Completed: 'COMPLETED'
|
|
40221
|
+
} as const;
|
|
40222
|
+
|
|
40223
|
+
export type RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025 = typeof RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025[keyof typeof RolePropagationOngoingResponseRolePropagationDetailsV2025StatusV2025];
|
|
40224
|
+
export const RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025 = {
|
|
40225
|
+
Pending: 'PENDING',
|
|
40226
|
+
DataAggregationRunning: 'DATA_AGGREGATION_RUNNING',
|
|
40227
|
+
LaunchProvisioning: 'LAUNCH_PROVISIONING',
|
|
40228
|
+
Succeeded: 'SUCCEEDED',
|
|
40229
|
+
Failed: 'FAILED',
|
|
40230
|
+
Terminated: 'TERMINATED'
|
|
40231
|
+
} as const;
|
|
40232
|
+
|
|
40233
|
+
export type RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025 = typeof RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025[keyof typeof RolePropagationOngoingResponseRolePropagationDetailsV2025ExecutionStageV2025];
|
|
40234
|
+
|
|
40235
|
+
/**
|
|
40236
|
+
* Running Role Propagation Response
|
|
40237
|
+
* @export
|
|
40238
|
+
* @interface RolePropagationOngoingResponseV2025
|
|
40239
|
+
*/
|
|
40240
|
+
export interface RolePropagationOngoingResponseV2025 {
|
|
40241
|
+
/**
|
|
40242
|
+
* Indicates if the role propagation process is currently running on the tenant
|
|
40243
|
+
* @type {boolean}
|
|
40244
|
+
* @memberof RolePropagationOngoingResponseV2025
|
|
40245
|
+
*/
|
|
40246
|
+
'isRunning'?: boolean;
|
|
40247
|
+
/**
|
|
40248
|
+
*
|
|
40249
|
+
* @type {RolePropagationOngoingResponseRolePropagationDetailsV2025}
|
|
40250
|
+
* @memberof RolePropagationOngoingResponseV2025
|
|
40251
|
+
*/
|
|
40252
|
+
'rolePropagationDetails'?: RolePropagationOngoingResponseRolePropagationDetailsV2025;
|
|
40253
|
+
}
|
|
40254
|
+
/**
|
|
40255
|
+
* Role Propagation Response
|
|
40256
|
+
* @export
|
|
40257
|
+
* @interface RolePropagationResponseV2025
|
|
40258
|
+
*/
|
|
40259
|
+
export interface RolePropagationResponseV2025 {
|
|
40260
|
+
/**
|
|
40261
|
+
* Id of the Role Propagation process triggered.
|
|
40262
|
+
* @type {string}
|
|
40263
|
+
* @memberof RolePropagationResponseV2025
|
|
40264
|
+
*/
|
|
40265
|
+
'rolePropagationId'?: string;
|
|
40266
|
+
}
|
|
40267
|
+
/**
|
|
40268
|
+
* Identity who launched the Role Propagation process.
|
|
40269
|
+
* @export
|
|
40270
|
+
* @interface RolePropagationStatusResponseLaunchedByV2025
|
|
40271
|
+
*/
|
|
40272
|
+
export interface RolePropagationStatusResponseLaunchedByV2025 {
|
|
40273
|
+
/**
|
|
40274
|
+
* DTO type of the identity who launched the Role Propagation process.
|
|
40275
|
+
* @type {string}
|
|
40276
|
+
* @memberof RolePropagationStatusResponseLaunchedByV2025
|
|
40277
|
+
*/
|
|
40278
|
+
'type'?: RolePropagationStatusResponseLaunchedByV2025TypeV2025;
|
|
40279
|
+
/**
|
|
40280
|
+
* ID of the identity who launched the Role Propagation process.
|
|
40281
|
+
* @type {string}
|
|
40282
|
+
* @memberof RolePropagationStatusResponseLaunchedByV2025
|
|
40283
|
+
*/
|
|
40284
|
+
'id'?: string;
|
|
40285
|
+
/**
|
|
40286
|
+
* Name of the identity who launched the Role Propagation process.
|
|
40287
|
+
* @type {string}
|
|
40288
|
+
* @memberof RolePropagationStatusResponseLaunchedByV2025
|
|
40289
|
+
*/
|
|
40290
|
+
'name'?: string;
|
|
40291
|
+
}
|
|
40292
|
+
|
|
40293
|
+
export const RolePropagationStatusResponseLaunchedByV2025TypeV2025 = {
|
|
40294
|
+
Identity: 'IDENTITY'
|
|
40295
|
+
} as const;
|
|
40296
|
+
|
|
40297
|
+
export type RolePropagationStatusResponseLaunchedByV2025TypeV2025 = typeof RolePropagationStatusResponseLaunchedByV2025TypeV2025[keyof typeof RolePropagationStatusResponseLaunchedByV2025TypeV2025];
|
|
40298
|
+
|
|
40299
|
+
/**
|
|
40300
|
+
* Identity who terminated the Role Propagation process.
|
|
40301
|
+
* @export
|
|
40302
|
+
* @interface RolePropagationStatusResponseTerminatedByV2025
|
|
40303
|
+
*/
|
|
40304
|
+
export interface RolePropagationStatusResponseTerminatedByV2025 {
|
|
40305
|
+
/**
|
|
40306
|
+
* DTO type of the Identity who terminated the Role Propagation process.
|
|
40307
|
+
* @type {string}
|
|
40308
|
+
* @memberof RolePropagationStatusResponseTerminatedByV2025
|
|
40309
|
+
*/
|
|
40310
|
+
'type'?: RolePropagationStatusResponseTerminatedByV2025TypeV2025;
|
|
40311
|
+
/**
|
|
40312
|
+
* ID of the Identity who terminated the Role Propagation process.
|
|
40313
|
+
* @type {string}
|
|
40314
|
+
* @memberof RolePropagationStatusResponseTerminatedByV2025
|
|
40315
|
+
*/
|
|
40316
|
+
'id'?: string;
|
|
40317
|
+
/**
|
|
40318
|
+
* Name of the Identity who terminated the Role Propagation process.
|
|
40319
|
+
* @type {string}
|
|
40320
|
+
* @memberof RolePropagationStatusResponseTerminatedByV2025
|
|
40321
|
+
*/
|
|
40322
|
+
'name'?: string;
|
|
40323
|
+
}
|
|
40324
|
+
|
|
40325
|
+
export const RolePropagationStatusResponseTerminatedByV2025TypeV2025 = {
|
|
40326
|
+
Identity: 'IDENTITY'
|
|
40327
|
+
} as const;
|
|
40328
|
+
|
|
40329
|
+
export type RolePropagationStatusResponseTerminatedByV2025TypeV2025 = typeof RolePropagationStatusResponseTerminatedByV2025TypeV2025[keyof typeof RolePropagationStatusResponseTerminatedByV2025TypeV2025];
|
|
40330
|
+
|
|
40331
|
+
/**
|
|
40332
|
+
* Role Propagation Status Response
|
|
40333
|
+
* @export
|
|
40334
|
+
* @interface RolePropagationStatusResponseV2025
|
|
40335
|
+
*/
|
|
40336
|
+
export interface RolePropagationStatusResponseV2025 {
|
|
40337
|
+
/**
|
|
40338
|
+
* Id of the Role Propagation process triggered.
|
|
40339
|
+
* @type {string}
|
|
40340
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40341
|
+
*/
|
|
40342
|
+
'id'?: string;
|
|
40343
|
+
/**
|
|
40344
|
+
* Status of the Role Propagation process.
|
|
40345
|
+
* @type {string}
|
|
40346
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40347
|
+
*/
|
|
40348
|
+
'status'?: RolePropagationStatusResponseV2025StatusV2025;
|
|
40349
|
+
/**
|
|
40350
|
+
* Current execution stage of the Role Propagation process.
|
|
40351
|
+
* @type {string}
|
|
40352
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40353
|
+
*/
|
|
40354
|
+
'executionStage'?: RolePropagationStatusResponseV2025ExecutionStageV2025;
|
|
40355
|
+
/**
|
|
40356
|
+
* Time when the Role Propagation process was launched.
|
|
40357
|
+
* @type {string}
|
|
40358
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40359
|
+
*/
|
|
40360
|
+
'launched'?: string;
|
|
40361
|
+
/**
|
|
40362
|
+
*
|
|
40363
|
+
* @type {RolePropagationStatusResponseLaunchedByV2025}
|
|
40364
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40365
|
+
*/
|
|
40366
|
+
'launchedBy'?: RolePropagationStatusResponseLaunchedByV2025;
|
|
40367
|
+
/**
|
|
40368
|
+
*
|
|
40369
|
+
* @type {RolePropagationStatusResponseTerminatedByV2025}
|
|
40370
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40371
|
+
*/
|
|
40372
|
+
'terminatedBy'?: RolePropagationStatusResponseTerminatedByV2025;
|
|
40373
|
+
/**
|
|
40374
|
+
* Time when the Role Propagation process was completed.
|
|
40375
|
+
* @type {string}
|
|
40376
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40377
|
+
*/
|
|
40378
|
+
'completed'?: string;
|
|
40379
|
+
/**
|
|
40380
|
+
* Reason for failure if the Role Propagation process failed.
|
|
40381
|
+
* @type {string}
|
|
40382
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40383
|
+
*/
|
|
40384
|
+
'failureReason'?: string;
|
|
40385
|
+
/**
|
|
40386
|
+
* Indicates if the role refresh was skipped during the Role Propagation process.
|
|
40387
|
+
* @type {boolean}
|
|
40388
|
+
* @memberof RolePropagationStatusResponseV2025
|
|
40389
|
+
*/
|
|
40390
|
+
'skipRoleRefresh'?: boolean;
|
|
40391
|
+
}
|
|
40392
|
+
|
|
40393
|
+
export const RolePropagationStatusResponseV2025StatusV2025 = {
|
|
40394
|
+
Running: 'RUNNING',
|
|
40395
|
+
Completed: 'COMPLETED'
|
|
40396
|
+
} as const;
|
|
40397
|
+
|
|
40398
|
+
export type RolePropagationStatusResponseV2025StatusV2025 = typeof RolePropagationStatusResponseV2025StatusV2025[keyof typeof RolePropagationStatusResponseV2025StatusV2025];
|
|
40399
|
+
export const RolePropagationStatusResponseV2025ExecutionStageV2025 = {
|
|
40400
|
+
Pending: 'PENDING',
|
|
40401
|
+
DataAggregationRunning: 'DATA_AGGREGATION_RUNNING',
|
|
40402
|
+
LaunchProvisioning: 'LAUNCH_PROVISIONING',
|
|
40403
|
+
Succeeded: 'SUCCEEDED',
|
|
40404
|
+
Failed: 'FAILED',
|
|
40405
|
+
Terminated: 'TERMINATED'
|
|
40406
|
+
} as const;
|
|
40407
|
+
|
|
40408
|
+
export type RolePropagationStatusResponseV2025ExecutionStageV2025 = typeof RolePropagationStatusResponseV2025ExecutionStageV2025[keyof typeof RolePropagationStatusResponseV2025ExecutionStageV2025];
|
|
40409
|
+
|
|
40134
40410
|
/**
|
|
40135
40411
|
* Role
|
|
40136
40412
|
* @export
|
|
@@ -40205,11 +40481,11 @@ export interface RoleTargetDtoV2025 {
|
|
|
40205
40481
|
*/
|
|
40206
40482
|
'accountInfo'?: AccountInfoDtoV2025;
|
|
40207
40483
|
/**
|
|
40208
|
-
*
|
|
40209
|
-
* @type {
|
|
40484
|
+
*
|
|
40485
|
+
* @type {BaseReferenceDtoV2025}
|
|
40210
40486
|
* @memberof RoleTargetDtoV2025
|
|
40211
40487
|
*/
|
|
40212
|
-
'
|
|
40488
|
+
'role'?: BaseReferenceDtoV2025;
|
|
40213
40489
|
}
|
|
40214
40490
|
/**
|
|
40215
40491
|
* A Role
|
|
@@ -51418,17 +51694,16 @@ export interface WorkgroupMemberDeleteItemV2025 {
|
|
|
51418
51694
|
export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
51419
51695
|
return {
|
|
51420
51696
|
/**
|
|
51421
|
-
*
|
|
51422
|
-
* @summary
|
|
51423
|
-
* @param {
|
|
51697
|
+
* Create a new Access Model Metadata Attribute.
|
|
51698
|
+
* @summary Create access model metadata attribute
|
|
51699
|
+
* @param {AttributeDTOV2025} attributeDTOV2025 Attribute to create
|
|
51424
51700
|
* @param {*} [axiosOptions] Override http request option.
|
|
51425
51701
|
* @throws {RequiredError}
|
|
51426
51702
|
*/
|
|
51427
|
-
|
|
51428
|
-
// verify required parameter '
|
|
51429
|
-
assertParamExists('
|
|
51430
|
-
const localVarPath = `/access-model-metadata/attributes
|
|
51431
|
-
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
51703
|
+
createAccessModelMetadataAttribute: async (attributeDTOV2025: AttributeDTOV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51704
|
+
// verify required parameter 'attributeDTOV2025' is not null or undefined
|
|
51705
|
+
assertParamExists('createAccessModelMetadataAttribute', 'attributeDTOV2025', attributeDTOV2025)
|
|
51706
|
+
const localVarPath = `/access-model-metadata/attributes`;
|
|
51432
51707
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51433
51708
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51434
51709
|
let baseOptions;
|
|
@@ -51436,7 +51711,7 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51436
51711
|
baseOptions = configuration.baseOptions;
|
|
51437
51712
|
}
|
|
51438
51713
|
|
|
51439
|
-
const localVarRequestOptions = { method: '
|
|
51714
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
51440
51715
|
const localVarHeaderParameter = {} as any;
|
|
51441
51716
|
const localVarQueryParameter = {} as any;
|
|
51442
51717
|
|
|
@@ -51454,9 +51729,12 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51454
51729
|
|
|
51455
51730
|
|
|
51456
51731
|
|
|
51732
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
51733
|
+
|
|
51457
51734
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
51458
51735
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
51459
51736
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
51737
|
+
localVarRequestOptions.data = serializeDataIfNeeded(attributeDTOV2025, localVarRequestOptions, configuration)
|
|
51460
51738
|
|
|
51461
51739
|
return {
|
|
51462
51740
|
url: toPathString(localVarUrlObj),
|
|
@@ -51464,21 +51742,20 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51464
51742
|
};
|
|
51465
51743
|
},
|
|
51466
51744
|
/**
|
|
51467
|
-
*
|
|
51468
|
-
* @summary
|
|
51745
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
51746
|
+
* @summary Create access model metadata value
|
|
51469
51747
|
* @param {string} key Technical name of the Attribute.
|
|
51470
|
-
* @param {
|
|
51748
|
+
* @param {AttributeValueDTOV2025} attributeValueDTOV2025 Attribute value to create
|
|
51471
51749
|
* @param {*} [axiosOptions] Override http request option.
|
|
51472
51750
|
* @throws {RequiredError}
|
|
51473
51751
|
*/
|
|
51474
|
-
|
|
51752
|
+
createAccessModelMetadataAttributeValue: async (key: string, attributeValueDTOV2025: AttributeValueDTOV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51475
51753
|
// verify required parameter 'key' is not null or undefined
|
|
51476
|
-
assertParamExists('
|
|
51477
|
-
// verify required parameter '
|
|
51478
|
-
assertParamExists('
|
|
51479
|
-
const localVarPath = `/access-model-metadata/attributes/{key}/values
|
|
51480
|
-
.replace(`{${"key"}}`, encodeURIComponent(String(key)))
|
|
51481
|
-
.replace(`{${"value"}}`, encodeURIComponent(String(value)));
|
|
51754
|
+
assertParamExists('createAccessModelMetadataAttributeValue', 'key', key)
|
|
51755
|
+
// verify required parameter 'attributeValueDTOV2025' is not null or undefined
|
|
51756
|
+
assertParamExists('createAccessModelMetadataAttributeValue', 'attributeValueDTOV2025', attributeValueDTOV2025)
|
|
51757
|
+
const localVarPath = `/access-model-metadata/attributes/{key}/values`
|
|
51758
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
51482
51759
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51483
51760
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51484
51761
|
let baseOptions;
|
|
@@ -51486,7 +51763,7 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51486
51763
|
baseOptions = configuration.baseOptions;
|
|
51487
51764
|
}
|
|
51488
51765
|
|
|
51489
|
-
const localVarRequestOptions = { method: '
|
|
51766
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
51490
51767
|
const localVarHeaderParameter = {} as any;
|
|
51491
51768
|
const localVarQueryParameter = {} as any;
|
|
51492
51769
|
|
|
@@ -51504,9 +51781,12 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51504
51781
|
|
|
51505
51782
|
|
|
51506
51783
|
|
|
51784
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
51785
|
+
|
|
51507
51786
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
51508
51787
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
51509
51788
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
51789
|
+
localVarRequestOptions.data = serializeDataIfNeeded(attributeValueDTOV2025, localVarRequestOptions, configuration)
|
|
51510
51790
|
|
|
51511
51791
|
return {
|
|
51512
51792
|
url: toPathString(localVarUrlObj),
|
|
@@ -51514,18 +51794,17 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51514
51794
|
};
|
|
51515
51795
|
},
|
|
51516
51796
|
/**
|
|
51517
|
-
* Get
|
|
51518
|
-
* @summary
|
|
51519
|
-
* @param {string}
|
|
51520
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, key**
|
|
51521
|
-
* @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.
|
|
51522
|
-
* @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.
|
|
51523
|
-
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51797
|
+
* Get single Access Model Metadata Attribute
|
|
51798
|
+
* @summary Get access model metadata attribute
|
|
51799
|
+
* @param {string} key Technical name of the Attribute.
|
|
51524
51800
|
* @param {*} [axiosOptions] Override http request option.
|
|
51525
51801
|
* @throws {RequiredError}
|
|
51526
51802
|
*/
|
|
51527
|
-
|
|
51528
|
-
|
|
51803
|
+
getAccessModelMetadataAttribute: async (key: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51804
|
+
// verify required parameter 'key' is not null or undefined
|
|
51805
|
+
assertParamExists('getAccessModelMetadataAttribute', 'key', key)
|
|
51806
|
+
const localVarPath = `/access-model-metadata/attributes/{key}`
|
|
51807
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
51529
51808
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51530
51809
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51531
51810
|
let baseOptions;
|
|
@@ -51549,26 +51828,6 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51549
51828
|
// oauth required
|
|
51550
51829
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51551
51830
|
|
|
51552
|
-
if (filters !== undefined) {
|
|
51553
|
-
localVarQueryParameter['filters'] = filters;
|
|
51554
|
-
}
|
|
51555
|
-
|
|
51556
|
-
if (sorters !== undefined) {
|
|
51557
|
-
localVarQueryParameter['sorters'] = sorters;
|
|
51558
|
-
}
|
|
51559
|
-
|
|
51560
|
-
if (offset !== undefined) {
|
|
51561
|
-
localVarQueryParameter['offset'] = offset;
|
|
51562
|
-
}
|
|
51563
|
-
|
|
51564
|
-
if (limit !== undefined) {
|
|
51565
|
-
localVarQueryParameter['limit'] = limit;
|
|
51566
|
-
}
|
|
51567
|
-
|
|
51568
|
-
if (count !== undefined) {
|
|
51569
|
-
localVarQueryParameter['count'] = count;
|
|
51570
|
-
}
|
|
51571
|
-
|
|
51572
51831
|
|
|
51573
51832
|
|
|
51574
51833
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51581,20 +51840,21 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51581
51840
|
};
|
|
51582
51841
|
},
|
|
51583
51842
|
/**
|
|
51584
|
-
* Get
|
|
51585
|
-
* @summary
|
|
51843
|
+
* Get single Access Model Metadata Attribute Value
|
|
51844
|
+
* @summary Get access model metadata value
|
|
51586
51845
|
* @param {string} key Technical name of the Attribute.
|
|
51587
|
-
* @param {
|
|
51588
|
-
* @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.
|
|
51589
|
-
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51846
|
+
* @param {string} value Technical name of the Attribute value.
|
|
51590
51847
|
* @param {*} [axiosOptions] Override http request option.
|
|
51591
51848
|
* @throws {RequiredError}
|
|
51592
51849
|
*/
|
|
51593
|
-
|
|
51850
|
+
getAccessModelMetadataAttributeValue: async (key: string, value: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51594
51851
|
// verify required parameter 'key' is not null or undefined
|
|
51595
|
-
assertParamExists('
|
|
51596
|
-
|
|
51597
|
-
|
|
51852
|
+
assertParamExists('getAccessModelMetadataAttributeValue', 'key', key)
|
|
51853
|
+
// verify required parameter 'value' is not null or undefined
|
|
51854
|
+
assertParamExists('getAccessModelMetadataAttributeValue', 'value', value)
|
|
51855
|
+
const localVarPath = `/access-model-metadata/attributes/{key}/values/{value}`
|
|
51856
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)))
|
|
51857
|
+
.replace(`{${"value"}}`, encodeURIComponent(String(value)));
|
|
51598
51858
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51599
51859
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51600
51860
|
let baseOptions;
|
|
@@ -51618,8 +51878,58 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51618
51878
|
// oauth required
|
|
51619
51879
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51620
51880
|
|
|
51621
|
-
|
|
51622
|
-
|
|
51881
|
+
|
|
51882
|
+
|
|
51883
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
51884
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
51885
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
51886
|
+
|
|
51887
|
+
return {
|
|
51888
|
+
url: toPathString(localVarUrlObj),
|
|
51889
|
+
axiosOptions: localVarRequestOptions,
|
|
51890
|
+
};
|
|
51891
|
+
},
|
|
51892
|
+
/**
|
|
51893
|
+
* Get a list of Access Model Metadata Attributes
|
|
51894
|
+
* @summary List access model metadata attributes
|
|
51895
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
51896
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, key**
|
|
51897
|
+
* @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.
|
|
51898
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51899
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51900
|
+
* @throws {RequiredError}
|
|
51901
|
+
*/
|
|
51902
|
+
listAccessModelMetadataAttribute: async (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51903
|
+
const localVarPath = `/access-model-metadata/attributes`;
|
|
51904
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51905
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51906
|
+
let baseOptions;
|
|
51907
|
+
if (configuration) {
|
|
51908
|
+
baseOptions = configuration.baseOptions;
|
|
51909
|
+
}
|
|
51910
|
+
|
|
51911
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
51912
|
+
const localVarHeaderParameter = {} as any;
|
|
51913
|
+
const localVarQueryParameter = {} as any;
|
|
51914
|
+
|
|
51915
|
+
// authentication userAuth required
|
|
51916
|
+
// oauth required
|
|
51917
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51918
|
+
|
|
51919
|
+
// authentication userAuth required
|
|
51920
|
+
// oauth required
|
|
51921
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51922
|
+
|
|
51923
|
+
// authentication applicationAuth required
|
|
51924
|
+
// oauth required
|
|
51925
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51926
|
+
|
|
51927
|
+
if (filters !== undefined) {
|
|
51928
|
+
localVarQueryParameter['filters'] = filters;
|
|
51929
|
+
}
|
|
51930
|
+
|
|
51931
|
+
if (sorters !== undefined) {
|
|
51932
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
51623
51933
|
}
|
|
51624
51934
|
|
|
51625
51935
|
if (limit !== undefined) {
|
|
@@ -51641,6 +51951,170 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51641
51951
|
axiosOptions: localVarRequestOptions,
|
|
51642
51952
|
};
|
|
51643
51953
|
},
|
|
51954
|
+
/**
|
|
51955
|
+
* Get a list of Access Model Metadata Attribute Values
|
|
51956
|
+
* @summary List access model metadata values
|
|
51957
|
+
* @param {string} key Technical name of the Attribute.
|
|
51958
|
+
* @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.
|
|
51959
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51960
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51961
|
+
* @throws {RequiredError}
|
|
51962
|
+
*/
|
|
51963
|
+
listAccessModelMetadataAttributeValue: async (key: string, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51964
|
+
// verify required parameter 'key' is not null or undefined
|
|
51965
|
+
assertParamExists('listAccessModelMetadataAttributeValue', 'key', key)
|
|
51966
|
+
const localVarPath = `/access-model-metadata/attributes/{key}/values`
|
|
51967
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
51968
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51969
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51970
|
+
let baseOptions;
|
|
51971
|
+
if (configuration) {
|
|
51972
|
+
baseOptions = configuration.baseOptions;
|
|
51973
|
+
}
|
|
51974
|
+
|
|
51975
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
51976
|
+
const localVarHeaderParameter = {} as any;
|
|
51977
|
+
const localVarQueryParameter = {} as any;
|
|
51978
|
+
|
|
51979
|
+
// authentication userAuth required
|
|
51980
|
+
// oauth required
|
|
51981
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51982
|
+
|
|
51983
|
+
// authentication userAuth required
|
|
51984
|
+
// oauth required
|
|
51985
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51986
|
+
|
|
51987
|
+
// authentication applicationAuth required
|
|
51988
|
+
// oauth required
|
|
51989
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51990
|
+
|
|
51991
|
+
if (limit !== undefined) {
|
|
51992
|
+
localVarQueryParameter['limit'] = limit;
|
|
51993
|
+
}
|
|
51994
|
+
|
|
51995
|
+
if (count !== undefined) {
|
|
51996
|
+
localVarQueryParameter['count'] = count;
|
|
51997
|
+
}
|
|
51998
|
+
|
|
51999
|
+
|
|
52000
|
+
|
|
52001
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
52002
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52003
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
52004
|
+
|
|
52005
|
+
return {
|
|
52006
|
+
url: toPathString(localVarUrlObj),
|
|
52007
|
+
axiosOptions: localVarRequestOptions,
|
|
52008
|
+
};
|
|
52009
|
+
},
|
|
52010
|
+
/**
|
|
52011
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
52012
|
+
* @summary Update access model metadata attribute
|
|
52013
|
+
* @param {string} key Technical name of the Attribute.
|
|
52014
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
52015
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52016
|
+
* @throws {RequiredError}
|
|
52017
|
+
*/
|
|
52018
|
+
updateAccessModelMetadataAttribute: async (key: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52019
|
+
// verify required parameter 'key' is not null or undefined
|
|
52020
|
+
assertParamExists('updateAccessModelMetadataAttribute', 'key', key)
|
|
52021
|
+
// verify required parameter 'jsonPatchOperationV2025' is not null or undefined
|
|
52022
|
+
assertParamExists('updateAccessModelMetadataAttribute', 'jsonPatchOperationV2025', jsonPatchOperationV2025)
|
|
52023
|
+
const localVarPath = `/access-model-metadata/attributes/{key}`
|
|
52024
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
52025
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52026
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
52027
|
+
let baseOptions;
|
|
52028
|
+
if (configuration) {
|
|
52029
|
+
baseOptions = configuration.baseOptions;
|
|
52030
|
+
}
|
|
52031
|
+
|
|
52032
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
52033
|
+
const localVarHeaderParameter = {} as any;
|
|
52034
|
+
const localVarQueryParameter = {} as any;
|
|
52035
|
+
|
|
52036
|
+
// authentication userAuth required
|
|
52037
|
+
// oauth required
|
|
52038
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52039
|
+
|
|
52040
|
+
// authentication userAuth required
|
|
52041
|
+
// oauth required
|
|
52042
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52043
|
+
|
|
52044
|
+
// authentication applicationAuth required
|
|
52045
|
+
// oauth required
|
|
52046
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52047
|
+
|
|
52048
|
+
|
|
52049
|
+
|
|
52050
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
52051
|
+
|
|
52052
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
52053
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52054
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
52055
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2025, localVarRequestOptions, configuration)
|
|
52056
|
+
|
|
52057
|
+
return {
|
|
52058
|
+
url: toPathString(localVarUrlObj),
|
|
52059
|
+
axiosOptions: localVarRequestOptions,
|
|
52060
|
+
};
|
|
52061
|
+
},
|
|
52062
|
+
/**
|
|
52063
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
52064
|
+
* @summary Update access model metadata value
|
|
52065
|
+
* @param {string} key Technical name of the Attribute.
|
|
52066
|
+
* @param {string} value Technical name of the Attribute value.
|
|
52067
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
52068
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52069
|
+
* @throws {RequiredError}
|
|
52070
|
+
*/
|
|
52071
|
+
updateAccessModelMetadataAttributeValue: async (key: string, value: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52072
|
+
// verify required parameter 'key' is not null or undefined
|
|
52073
|
+
assertParamExists('updateAccessModelMetadataAttributeValue', 'key', key)
|
|
52074
|
+
// verify required parameter 'value' is not null or undefined
|
|
52075
|
+
assertParamExists('updateAccessModelMetadataAttributeValue', 'value', value)
|
|
52076
|
+
// verify required parameter 'jsonPatchOperationV2025' is not null or undefined
|
|
52077
|
+
assertParamExists('updateAccessModelMetadataAttributeValue', 'jsonPatchOperationV2025', jsonPatchOperationV2025)
|
|
52078
|
+
const localVarPath = `/access-model-metadata/attributes/{key}/values/{value}`
|
|
52079
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)))
|
|
52080
|
+
.replace(`{${"value"}}`, encodeURIComponent(String(value)));
|
|
52081
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52082
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
52083
|
+
let baseOptions;
|
|
52084
|
+
if (configuration) {
|
|
52085
|
+
baseOptions = configuration.baseOptions;
|
|
52086
|
+
}
|
|
52087
|
+
|
|
52088
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
52089
|
+
const localVarHeaderParameter = {} as any;
|
|
52090
|
+
const localVarQueryParameter = {} as any;
|
|
52091
|
+
|
|
52092
|
+
// authentication userAuth required
|
|
52093
|
+
// oauth required
|
|
52094
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52095
|
+
|
|
52096
|
+
// authentication userAuth required
|
|
52097
|
+
// oauth required
|
|
52098
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52099
|
+
|
|
52100
|
+
// authentication applicationAuth required
|
|
52101
|
+
// oauth required
|
|
52102
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52103
|
+
|
|
52104
|
+
|
|
52105
|
+
|
|
52106
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
52107
|
+
|
|
52108
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
52109
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52110
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
52111
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2025, localVarRequestOptions, configuration)
|
|
52112
|
+
|
|
52113
|
+
return {
|
|
52114
|
+
url: toPathString(localVarUrlObj),
|
|
52115
|
+
axiosOptions: localVarRequestOptions,
|
|
52116
|
+
};
|
|
52117
|
+
},
|
|
51644
52118
|
/**
|
|
51645
52119
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
51646
52120
|
* @summary Metadata Attribute update by filter
|
|
@@ -51786,6 +52260,33 @@ export const AccessModelMetadataV2025ApiAxiosParamCreator = function (configurat
|
|
|
51786
52260
|
export const AccessModelMetadataV2025ApiFp = function(configuration?: Configuration) {
|
|
51787
52261
|
const localVarAxiosParamCreator = AccessModelMetadataV2025ApiAxiosParamCreator(configuration)
|
|
51788
52262
|
return {
|
|
52263
|
+
/**
|
|
52264
|
+
* Create a new Access Model Metadata Attribute.
|
|
52265
|
+
* @summary Create access model metadata attribute
|
|
52266
|
+
* @param {AttributeDTOV2025} attributeDTOV2025 Attribute to create
|
|
52267
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52268
|
+
* @throws {RequiredError}
|
|
52269
|
+
*/
|
|
52270
|
+
async createAccessModelMetadataAttribute(attributeDTOV2025: AttributeDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>> {
|
|
52271
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataAttribute(attributeDTOV2025, axiosOptions);
|
|
52272
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52273
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2025Api.createAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
52274
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
52275
|
+
},
|
|
52276
|
+
/**
|
|
52277
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
52278
|
+
* @summary Create access model metadata value
|
|
52279
|
+
* @param {string} key Technical name of the Attribute.
|
|
52280
|
+
* @param {AttributeValueDTOV2025} attributeValueDTOV2025 Attribute value to create
|
|
52281
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52282
|
+
* @throws {RequiredError}
|
|
52283
|
+
*/
|
|
52284
|
+
async createAccessModelMetadataAttributeValue(key: string, attributeValueDTOV2025: AttributeValueDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>> {
|
|
52285
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataAttributeValue(key, attributeValueDTOV2025, axiosOptions);
|
|
52286
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52287
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2025Api.createAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
52288
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
52289
|
+
},
|
|
51789
52290
|
/**
|
|
51790
52291
|
* Get single Access Model Metadata Attribute
|
|
51791
52292
|
* @summary Get access model metadata attribute
|
|
@@ -51816,16 +52317,15 @@ export const AccessModelMetadataV2025ApiFp = function(configuration?: Configurat
|
|
|
51816
52317
|
/**
|
|
51817
52318
|
* Get a list of Access Model Metadata Attributes
|
|
51818
52319
|
* @summary List access model metadata attributes
|
|
51819
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
52320
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
51820
52321
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, key**
|
|
51821
|
-
* @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.
|
|
51822
52322
|
* @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.
|
|
51823
52323
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51824
52324
|
* @param {*} [axiosOptions] Override http request option.
|
|
51825
52325
|
* @throws {RequiredError}
|
|
51826
52326
|
*/
|
|
51827
|
-
async listAccessModelMetadataAttribute(filters?: string, sorters?: string,
|
|
51828
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters,
|
|
52327
|
+
async listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2025>>> {
|
|
52328
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters, limit, count, axiosOptions);
|
|
51829
52329
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
51830
52330
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2025Api.listAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
51831
52331
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -51834,18 +52334,46 @@ export const AccessModelMetadataV2025ApiFp = function(configuration?: Configurat
|
|
|
51834
52334
|
* Get a list of Access Model Metadata Attribute Values
|
|
51835
52335
|
* @summary List access model metadata values
|
|
51836
52336
|
* @param {string} key Technical name of the Attribute.
|
|
51837
|
-
* @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.
|
|
51838
52337
|
* @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.
|
|
51839
52338
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51840
52339
|
* @param {*} [axiosOptions] Override http request option.
|
|
51841
52340
|
* @throws {RequiredError}
|
|
51842
52341
|
*/
|
|
51843
|
-
async listAccessModelMetadataAttributeValue(key: string,
|
|
51844
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key,
|
|
52342
|
+
async listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2025>>> {
|
|
52343
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key, limit, count, axiosOptions);
|
|
51845
52344
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
51846
52345
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2025Api.listAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
51847
52346
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
51848
52347
|
},
|
|
52348
|
+
/**
|
|
52349
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
52350
|
+
* @summary Update access model metadata attribute
|
|
52351
|
+
* @param {string} key Technical name of the Attribute.
|
|
52352
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
52353
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52354
|
+
* @throws {RequiredError}
|
|
52355
|
+
*/
|
|
52356
|
+
async updateAccessModelMetadataAttribute(key: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>> {
|
|
52357
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccessModelMetadataAttribute(key, jsonPatchOperationV2025, axiosOptions);
|
|
52358
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52359
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2025Api.updateAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
52360
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
52361
|
+
},
|
|
52362
|
+
/**
|
|
52363
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
52364
|
+
* @summary Update access model metadata value
|
|
52365
|
+
* @param {string} key Technical name of the Attribute.
|
|
52366
|
+
* @param {string} value Technical name of the Attribute value.
|
|
52367
|
+
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 JSON Patch array to apply
|
|
52368
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52369
|
+
* @throws {RequiredError}
|
|
52370
|
+
*/
|
|
52371
|
+
async updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>> {
|
|
52372
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccessModelMetadataAttributeValue(key, value, jsonPatchOperationV2025, axiosOptions);
|
|
52373
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52374
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2025Api.updateAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
52375
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
52376
|
+
},
|
|
51849
52377
|
/**
|
|
51850
52378
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
51851
52379
|
* @summary Metadata Attribute update by filter
|
|
@@ -51898,6 +52426,26 @@ export const AccessModelMetadataV2025ApiFp = function(configuration?: Configurat
|
|
|
51898
52426
|
export const AccessModelMetadataV2025ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
51899
52427
|
const localVarFp = AccessModelMetadataV2025ApiFp(configuration)
|
|
51900
52428
|
return {
|
|
52429
|
+
/**
|
|
52430
|
+
* Create a new Access Model Metadata Attribute.
|
|
52431
|
+
* @summary Create access model metadata attribute
|
|
52432
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
52433
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52434
|
+
* @throws {RequiredError}
|
|
52435
|
+
*/
|
|
52436
|
+
createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2025> {
|
|
52437
|
+
return localVarFp.createAccessModelMetadataAttribute(requestParameters.attributeDTOV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
52438
|
+
},
|
|
52439
|
+
/**
|
|
52440
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
52441
|
+
* @summary Create access model metadata value
|
|
52442
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
52443
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52444
|
+
* @throws {RequiredError}
|
|
52445
|
+
*/
|
|
52446
|
+
createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2025> {
|
|
52447
|
+
return localVarFp.createAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.attributeValueDTOV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
52448
|
+
},
|
|
51901
52449
|
/**
|
|
51902
52450
|
* Get single Access Model Metadata Attribute
|
|
51903
52451
|
* @summary Get access model metadata attribute
|
|
@@ -51926,7 +52474,7 @@ export const AccessModelMetadataV2025ApiFactory = function (configuration?: Conf
|
|
|
51926
52474
|
* @throws {RequiredError}
|
|
51927
52475
|
*/
|
|
51928
52476
|
listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeDTOV2025>> {
|
|
51929
|
-
return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.
|
|
52477
|
+
return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
51930
52478
|
},
|
|
51931
52479
|
/**
|
|
51932
52480
|
* Get a list of Access Model Metadata Attribute Values
|
|
@@ -51936,7 +52484,27 @@ export const AccessModelMetadataV2025ApiFactory = function (configuration?: Conf
|
|
|
51936
52484
|
* @throws {RequiredError}
|
|
51937
52485
|
*/
|
|
51938
52486
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2025>> {
|
|
51939
|
-
return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.
|
|
52487
|
+
return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
52488
|
+
},
|
|
52489
|
+
/**
|
|
52490
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
52491
|
+
* @summary Update access model metadata attribute
|
|
52492
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
52493
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52494
|
+
* @throws {RequiredError}
|
|
52495
|
+
*/
|
|
52496
|
+
updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2025> {
|
|
52497
|
+
return localVarFp.updateAccessModelMetadataAttribute(requestParameters.key, requestParameters.jsonPatchOperationV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
52498
|
+
},
|
|
52499
|
+
/**
|
|
52500
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
52501
|
+
* @summary Update access model metadata value
|
|
52502
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
52503
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52504
|
+
* @throws {RequiredError}
|
|
52505
|
+
*/
|
|
52506
|
+
updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2025> {
|
|
52507
|
+
return localVarFp.updateAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, requestParameters.jsonPatchOperationV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
51940
52508
|
},
|
|
51941
52509
|
/**
|
|
51942
52510
|
* Bulk update Access Model Metadata Attribute Values using a filter
|
|
@@ -51974,6 +52542,41 @@ export const AccessModelMetadataV2025ApiFactory = function (configuration?: Conf
|
|
|
51974
52542
|
};
|
|
51975
52543
|
};
|
|
51976
52544
|
|
|
52545
|
+
/**
|
|
52546
|
+
* Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
52547
|
+
* @export
|
|
52548
|
+
* @interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest
|
|
52549
|
+
*/
|
|
52550
|
+
export interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest {
|
|
52551
|
+
/**
|
|
52552
|
+
* Attribute to create
|
|
52553
|
+
* @type {AttributeDTOV2025}
|
|
52554
|
+
* @memberof AccessModelMetadataV2025ApiCreateAccessModelMetadataAttribute
|
|
52555
|
+
*/
|
|
52556
|
+
readonly attributeDTOV2025: AttributeDTOV2025
|
|
52557
|
+
}
|
|
52558
|
+
|
|
52559
|
+
/**
|
|
52560
|
+
* Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
|
|
52561
|
+
* @export
|
|
52562
|
+
* @interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest
|
|
52563
|
+
*/
|
|
52564
|
+
export interface AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest {
|
|
52565
|
+
/**
|
|
52566
|
+
* Technical name of the Attribute.
|
|
52567
|
+
* @type {string}
|
|
52568
|
+
* @memberof AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValue
|
|
52569
|
+
*/
|
|
52570
|
+
readonly key: string
|
|
52571
|
+
|
|
52572
|
+
/**
|
|
52573
|
+
* Attribute value to create
|
|
52574
|
+
* @type {AttributeValueDTOV2025}
|
|
52575
|
+
* @memberof AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValue
|
|
52576
|
+
*/
|
|
52577
|
+
readonly attributeValueDTOV2025: AttributeValueDTOV2025
|
|
52578
|
+
}
|
|
52579
|
+
|
|
51977
52580
|
/**
|
|
51978
52581
|
* Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
51979
52582
|
* @export
|
|
@@ -52016,7 +52619,7 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
|
|
|
52016
52619
|
*/
|
|
52017
52620
|
export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequest {
|
|
52018
52621
|
/**
|
|
52019
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
52622
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
52020
52623
|
* @type {string}
|
|
52021
52624
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
52022
52625
|
*/
|
|
@@ -52029,13 +52632,6 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequ
|
|
|
52029
52632
|
*/
|
|
52030
52633
|
readonly sorters?: string
|
|
52031
52634
|
|
|
52032
|
-
/**
|
|
52033
|
-
* 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.
|
|
52034
|
-
* @type {number}
|
|
52035
|
-
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
52036
|
-
*/
|
|
52037
|
-
readonly offset?: number
|
|
52038
|
-
|
|
52039
52635
|
/**
|
|
52040
52636
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
52041
52637
|
* @type {number}
|
|
@@ -52064,13 +52660,6 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValu
|
|
|
52064
52660
|
*/
|
|
52065
52661
|
readonly key: string
|
|
52066
52662
|
|
|
52067
|
-
/**
|
|
52068
|
-
* 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.
|
|
52069
|
-
* @type {number}
|
|
52070
|
-
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
|
|
52071
|
-
*/
|
|
52072
|
-
readonly offset?: number
|
|
52073
|
-
|
|
52074
52663
|
/**
|
|
52075
52664
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
52076
52665
|
* @type {number}
|
|
@@ -52086,6 +52675,55 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValu
|
|
|
52086
52675
|
readonly count?: boolean
|
|
52087
52676
|
}
|
|
52088
52677
|
|
|
52678
|
+
/**
|
|
52679
|
+
* Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
52680
|
+
* @export
|
|
52681
|
+
* @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest
|
|
52682
|
+
*/
|
|
52683
|
+
export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest {
|
|
52684
|
+
/**
|
|
52685
|
+
* Technical name of the Attribute.
|
|
52686
|
+
* @type {string}
|
|
52687
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttribute
|
|
52688
|
+
*/
|
|
52689
|
+
readonly key: string
|
|
52690
|
+
|
|
52691
|
+
/**
|
|
52692
|
+
* JSON Patch array to apply
|
|
52693
|
+
* @type {Array<JsonPatchOperationV2025>}
|
|
52694
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttribute
|
|
52695
|
+
*/
|
|
52696
|
+
readonly jsonPatchOperationV2025: Array<JsonPatchOperationV2025>
|
|
52697
|
+
}
|
|
52698
|
+
|
|
52699
|
+
/**
|
|
52700
|
+
* Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
|
|
52701
|
+
* @export
|
|
52702
|
+
* @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest
|
|
52703
|
+
*/
|
|
52704
|
+
export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest {
|
|
52705
|
+
/**
|
|
52706
|
+
* Technical name of the Attribute.
|
|
52707
|
+
* @type {string}
|
|
52708
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValue
|
|
52709
|
+
*/
|
|
52710
|
+
readonly key: string
|
|
52711
|
+
|
|
52712
|
+
/**
|
|
52713
|
+
* Technical name of the Attribute value.
|
|
52714
|
+
* @type {string}
|
|
52715
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValue
|
|
52716
|
+
*/
|
|
52717
|
+
readonly value: string
|
|
52718
|
+
|
|
52719
|
+
/**
|
|
52720
|
+
* JSON Patch array to apply
|
|
52721
|
+
* @type {Array<JsonPatchOperationV2025>}
|
|
52722
|
+
* @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValue
|
|
52723
|
+
*/
|
|
52724
|
+
readonly jsonPatchOperationV2025: Array<JsonPatchOperationV2025>
|
|
52725
|
+
}
|
|
52726
|
+
|
|
52089
52727
|
/**
|
|
52090
52728
|
* Request parameters for updateAccessModelMetadataByFilter operation in AccessModelMetadataV2025Api.
|
|
52091
52729
|
* @export
|
|
@@ -52135,6 +52773,30 @@ export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequ
|
|
|
52135
52773
|
* @extends {BaseAPI}
|
|
52136
52774
|
*/
|
|
52137
52775
|
export class AccessModelMetadataV2025Api extends BaseAPI {
|
|
52776
|
+
/**
|
|
52777
|
+
* Create a new Access Model Metadata Attribute.
|
|
52778
|
+
* @summary Create access model metadata attribute
|
|
52779
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
52780
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52781
|
+
* @throws {RequiredError}
|
|
52782
|
+
* @memberof AccessModelMetadataV2025Api
|
|
52783
|
+
*/
|
|
52784
|
+
public createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
52785
|
+
return AccessModelMetadataV2025ApiFp(this.configuration).createAccessModelMetadataAttribute(requestParameters.attributeDTOV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
52786
|
+
}
|
|
52787
|
+
|
|
52788
|
+
/**
|
|
52789
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
52790
|
+
* @summary Create access model metadata value
|
|
52791
|
+
* @param {AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
52792
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52793
|
+
* @throws {RequiredError}
|
|
52794
|
+
* @memberof AccessModelMetadataV2025Api
|
|
52795
|
+
*/
|
|
52796
|
+
public createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
52797
|
+
return AccessModelMetadataV2025ApiFp(this.configuration).createAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.attributeValueDTOV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
52798
|
+
}
|
|
52799
|
+
|
|
52138
52800
|
/**
|
|
52139
52801
|
* Get single Access Model Metadata Attribute
|
|
52140
52802
|
* @summary Get access model metadata attribute
|
|
@@ -52168,7 +52830,7 @@ export class AccessModelMetadataV2025Api extends BaseAPI {
|
|
|
52168
52830
|
* @memberof AccessModelMetadataV2025Api
|
|
52169
52831
|
*/
|
|
52170
52832
|
public listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
52171
|
-
return AccessModelMetadataV2025ApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.
|
|
52833
|
+
return AccessModelMetadataV2025ApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
52172
52834
|
}
|
|
52173
52835
|
|
|
52174
52836
|
/**
|
|
@@ -52180,7 +52842,31 @@ export class AccessModelMetadataV2025Api extends BaseAPI {
|
|
|
52180
52842
|
* @memberof AccessModelMetadataV2025Api
|
|
52181
52843
|
*/
|
|
52182
52844
|
public listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
52183
|
-
return AccessModelMetadataV2025ApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.
|
|
52845
|
+
return AccessModelMetadataV2025ApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
52846
|
+
}
|
|
52847
|
+
|
|
52848
|
+
/**
|
|
52849
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
52850
|
+
* @summary Update access model metadata attribute
|
|
52851
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
52852
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52853
|
+
* @throws {RequiredError}
|
|
52854
|
+
* @memberof AccessModelMetadataV2025Api
|
|
52855
|
+
*/
|
|
52856
|
+
public updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
52857
|
+
return AccessModelMetadataV2025ApiFp(this.configuration).updateAccessModelMetadataAttribute(requestParameters.key, requestParameters.jsonPatchOperationV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
52858
|
+
}
|
|
52859
|
+
|
|
52860
|
+
/**
|
|
52861
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
52862
|
+
* @summary Update access model metadata value
|
|
52863
|
+
* @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
52864
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52865
|
+
* @throws {RequiredError}
|
|
52866
|
+
* @memberof AccessModelMetadataV2025Api
|
|
52867
|
+
*/
|
|
52868
|
+
public updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
52869
|
+
return AccessModelMetadataV2025ApiFp(this.configuration).updateAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, requestParameters.jsonPatchOperationV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
52184
52870
|
}
|
|
52185
52871
|
|
|
52186
52872
|
/**
|
|
@@ -54569,7 +55255,7 @@ export const AccessRequestsV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
54569
55255
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
54570
55256
|
* @param {number} [limit] Max number of results to return.
|
|
54571
55257
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
54572
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq,
|
|
55258
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
54573
55259
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
54574
55260
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
54575
55261
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54952,7 +55638,7 @@ export const AccessRequestsV2025ApiFp = function(configuration?: Configuration)
|
|
|
54952
55638
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
54953
55639
|
* @param {number} [limit] Max number of results to return.
|
|
54954
55640
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
54955
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq,
|
|
55641
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
54956
55642
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
54957
55643
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
54958
55644
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55283,7 +55969,7 @@ export interface AccessRequestsV2025ApiListAccessRequestStatusRequest {
|
|
|
55283
55969
|
readonly offset?: number
|
|
55284
55970
|
|
|
55285
55971
|
/**
|
|
55286
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq,
|
|
55972
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
55287
55973
|
* @type {string}
|
|
55288
55974
|
* @memberof AccessRequestsV2025ApiListAccessRequestStatus
|
|
55289
55975
|
*/
|
|
@@ -57948,7 +58634,7 @@ export type ListAccountsDetailLevelV2025 = typeof ListAccountsDetailLevelV2025[k
|
|
|
57948
58634
|
export const ApiUsageV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
57949
58635
|
return {
|
|
57950
58636
|
/**
|
|
57951
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
58637
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
57952
58638
|
* @summary Total number of API requests
|
|
57953
58639
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57954
58640
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -58003,7 +58689,7 @@ export const ApiUsageV2025ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
58003
58689
|
};
|
|
58004
58690
|
},
|
|
58005
58691
|
/**
|
|
58006
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
58692
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58007
58693
|
* @summary Get Api Summary
|
|
58008
58694
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58009
58695
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -58078,7 +58764,7 @@ export const ApiUsageV2025ApiFp = function(configuration?: Configuration) {
|
|
|
58078
58764
|
const localVarAxiosParamCreator = ApiUsageV2025ApiAxiosParamCreator(configuration)
|
|
58079
58765
|
return {
|
|
58080
58766
|
/**
|
|
58081
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
58767
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58082
58768
|
* @summary Total number of API requests
|
|
58083
58769
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58084
58770
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -58092,7 +58778,7 @@ export const ApiUsageV2025ApiFp = function(configuration?: Configuration) {
|
|
|
58092
58778
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
58093
58779
|
},
|
|
58094
58780
|
/**
|
|
58095
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
58781
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58096
58782
|
* @summary Get Api Summary
|
|
58097
58783
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58098
58784
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **method**: *eq* **startDate**: *gt, eq* **endDate**: *lt, eq*
|
|
@@ -58118,7 +58804,7 @@ export const ApiUsageV2025ApiFactory = function (configuration?: Configuration,
|
|
|
58118
58804
|
const localVarFp = ApiUsageV2025ApiFp(configuration)
|
|
58119
58805
|
return {
|
|
58120
58806
|
/**
|
|
58121
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
58807
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58122
58808
|
* @summary Total number of API requests
|
|
58123
58809
|
* @param {ApiUsageV2025ApiGetTotalCountRequest} requestParameters Request parameters.
|
|
58124
58810
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58128,7 +58814,7 @@ export const ApiUsageV2025ApiFactory = function (configuration?: Configuration,
|
|
|
58128
58814
|
return localVarFp.getTotalCount(requestParameters.xSailPointExperimental, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
58129
58815
|
},
|
|
58130
58816
|
/**
|
|
58131
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
58817
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58132
58818
|
* @summary Get Api Summary
|
|
58133
58819
|
* @param {ApiUsageV2025ApiListApiSummaryRequest} requestParameters Request parameters.
|
|
58134
58820
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58204,7 +58890,7 @@ export interface ApiUsageV2025ApiListApiSummaryRequest {
|
|
|
58204
58890
|
*/
|
|
58205
58891
|
export class ApiUsageV2025Api extends BaseAPI {
|
|
58206
58892
|
/**
|
|
58207
|
-
* This API gets an aggregated number of all API calls from an org in a
|
|
58893
|
+
* This API gets an aggregated number of all API calls from an org in a specific timespan. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58208
58894
|
* @summary Total number of API requests
|
|
58209
58895
|
* @param {ApiUsageV2025ApiGetTotalCountRequest} requestParameters Request parameters.
|
|
58210
58896
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58216,7 +58902,7 @@ export class ApiUsageV2025Api extends BaseAPI {
|
|
|
58216
58902
|
}
|
|
58217
58903
|
|
|
58218
58904
|
/**
|
|
58219
|
-
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls.
|
|
58905
|
+
* This API gets a list of APIs called by the org in a specific timespan, sorted by number of calls. Unless specified, the results are aggregated between the first day of the current month and today.
|
|
58220
58906
|
* @summary Get Api Summary
|
|
58221
58907
|
* @param {ApiUsageV2025ApiListApiSummaryRequest} requestParameters Request parameters.
|
|
58222
58908
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58842,6 +59528,52 @@ export const ApprovalsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
58842
59528
|
axiosOptions: localVarRequestOptions,
|
|
58843
59529
|
};
|
|
58844
59530
|
},
|
|
59531
|
+
/**
|
|
59532
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
59533
|
+
* @summary Delete Approval Configuration
|
|
59534
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
59535
|
+
* @param {DeleteApprovalConfigRequestScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
59536
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
59537
|
+
* @throws {RequiredError}
|
|
59538
|
+
*/
|
|
59539
|
+
deleteApprovalConfigRequest: async (id: string, scope: DeleteApprovalConfigRequestScopeV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59540
|
+
// verify required parameter 'id' is not null or undefined
|
|
59541
|
+
assertParamExists('deleteApprovalConfigRequest', 'id', id)
|
|
59542
|
+
// verify required parameter 'scope' is not null or undefined
|
|
59543
|
+
assertParamExists('deleteApprovalConfigRequest', 'scope', scope)
|
|
59544
|
+
const localVarPath = `/generic-approvals/config/{id}/{scope}`
|
|
59545
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)))
|
|
59546
|
+
.replace(`{${"scope"}}`, encodeURIComponent(String(scope)));
|
|
59547
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59548
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59549
|
+
let baseOptions;
|
|
59550
|
+
if (configuration) {
|
|
59551
|
+
baseOptions = configuration.baseOptions;
|
|
59552
|
+
}
|
|
59553
|
+
|
|
59554
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
59555
|
+
const localVarHeaderParameter = {} as any;
|
|
59556
|
+
const localVarQueryParameter = {} as any;
|
|
59557
|
+
|
|
59558
|
+
// authentication userAuth required
|
|
59559
|
+
// oauth required
|
|
59560
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59561
|
+
|
|
59562
|
+
// authentication userAuth required
|
|
59563
|
+
// oauth required
|
|
59564
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59565
|
+
|
|
59566
|
+
|
|
59567
|
+
|
|
59568
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59569
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59570
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
59571
|
+
|
|
59572
|
+
return {
|
|
59573
|
+
url: toPathString(localVarUrlObj),
|
|
59574
|
+
axiosOptions: localVarRequestOptions,
|
|
59575
|
+
};
|
|
59576
|
+
},
|
|
58845
59577
|
/**
|
|
58846
59578
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
58847
59579
|
* @summary Get an approval
|
|
@@ -59079,16 +59811,22 @@ export const ApprovalsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
59079
59811
|
/**
|
|
59080
59812
|
* Upserts a singular approval configuration that matches the given configID and configScope. If id and scope are not provided, it will default to setting the tenant config.
|
|
59081
59813
|
* @summary Put Approval Config
|
|
59814
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
59815
|
+
* @param {PutApprovalsConfigScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
59082
59816
|
* @param {ApprovalConfigV2025} approvalConfigV2025
|
|
59083
|
-
* @param {string} [id] The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
59084
|
-
* @param {string} [scope] The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
59085
59817
|
* @param {*} [axiosOptions] Override http request option.
|
|
59086
59818
|
* @throws {RequiredError}
|
|
59087
59819
|
*/
|
|
59088
|
-
putApprovalsConfig: async (
|
|
59820
|
+
putApprovalsConfig: async (id: string, scope: PutApprovalsConfigScopeV2025, approvalConfigV2025: ApprovalConfigV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59821
|
+
// verify required parameter 'id' is not null or undefined
|
|
59822
|
+
assertParamExists('putApprovalsConfig', 'id', id)
|
|
59823
|
+
// verify required parameter 'scope' is not null or undefined
|
|
59824
|
+
assertParamExists('putApprovalsConfig', 'scope', scope)
|
|
59089
59825
|
// verify required parameter 'approvalConfigV2025' is not null or undefined
|
|
59090
59826
|
assertParamExists('putApprovalsConfig', 'approvalConfigV2025', approvalConfigV2025)
|
|
59091
|
-
const localVarPath = `/generic-approvals/config
|
|
59827
|
+
const localVarPath = `/generic-approvals/config/{id}/{scope}`
|
|
59828
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)))
|
|
59829
|
+
.replace(`{${"scope"}}`, encodeURIComponent(String(scope)));
|
|
59092
59830
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59093
59831
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59094
59832
|
let baseOptions;
|
|
@@ -59108,14 +59846,6 @@ export const ApprovalsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
59108
59846
|
// oauth required
|
|
59109
59847
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59110
59848
|
|
|
59111
|
-
if (id !== undefined) {
|
|
59112
|
-
localVarQueryParameter['id'] = id;
|
|
59113
|
-
}
|
|
59114
|
-
|
|
59115
|
-
if (scope !== undefined) {
|
|
59116
|
-
localVarQueryParameter['scope'] = scope;
|
|
59117
|
-
}
|
|
59118
|
-
|
|
59119
59849
|
|
|
59120
59850
|
|
|
59121
59851
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -59414,6 +60144,20 @@ export const ApprovalsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
59414
60144
|
const localVarOperationServerBasePath = operationServerMap['ApprovalsV2025Api.cancelApproval']?.[localVarOperationServerIndex]?.url;
|
|
59415
60145
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
59416
60146
|
},
|
|
60147
|
+
/**
|
|
60148
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
60149
|
+
* @summary Delete Approval Configuration
|
|
60150
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60151
|
+
* @param {DeleteApprovalConfigRequestScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60152
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60153
|
+
* @throws {RequiredError}
|
|
60154
|
+
*/
|
|
60155
|
+
async deleteApprovalConfigRequest(id: string, scope: DeleteApprovalConfigRequestScopeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
60156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApprovalConfigRequest(id, scope, axiosOptions);
|
|
60157
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
60158
|
+
const localVarOperationServerBasePath = operationServerMap['ApprovalsV2025Api.deleteApprovalConfigRequest']?.[localVarOperationServerIndex]?.url;
|
|
60159
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
60160
|
+
},
|
|
59417
60161
|
/**
|
|
59418
60162
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
59419
60163
|
* @summary Get an approval
|
|
@@ -59481,14 +60225,14 @@ export const ApprovalsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
59481
60225
|
/**
|
|
59482
60226
|
* Upserts a singular approval configuration that matches the given configID and configScope. If id and scope are not provided, it will default to setting the tenant config.
|
|
59483
60227
|
* @summary Put Approval Config
|
|
60228
|
+
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60229
|
+
* @param {PutApprovalsConfigScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
59484
60230
|
* @param {ApprovalConfigV2025} approvalConfigV2025
|
|
59485
|
-
* @param {string} [id] The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
59486
|
-
* @param {string} [scope] The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
|
|
59487
60231
|
* @param {*} [axiosOptions] Override http request option.
|
|
59488
60232
|
* @throws {RequiredError}
|
|
59489
60233
|
*/
|
|
59490
|
-
async putApprovalsConfig(
|
|
59491
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putApprovalsConfig(
|
|
60234
|
+
async putApprovalsConfig(id: string, scope: PutApprovalsConfigScopeV2025, approvalConfigV2025: ApprovalConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalConfigV2025>> {
|
|
60235
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putApprovalsConfig(id, scope, approvalConfigV2025, axiosOptions);
|
|
59492
60236
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
59493
60237
|
const localVarOperationServerBasePath = operationServerMap['ApprovalsV2025Api.putApprovalsConfig']?.[localVarOperationServerIndex]?.url;
|
|
59494
60238
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -59602,6 +60346,16 @@ export const ApprovalsV2025ApiFactory = function (configuration?: Configuration,
|
|
|
59602
60346
|
cancelApproval(requestParameters: ApprovalsV2025ApiCancelApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
59603
60347
|
return localVarFp.cancelApproval(requestParameters.bulkCancelRequestDTOV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
59604
60348
|
},
|
|
60349
|
+
/**
|
|
60350
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
60351
|
+
* @summary Delete Approval Configuration
|
|
60352
|
+
* @param {ApprovalsV2025ApiDeleteApprovalConfigRequestRequest} requestParameters Request parameters.
|
|
60353
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60354
|
+
* @throws {RequiredError}
|
|
60355
|
+
*/
|
|
60356
|
+
deleteApprovalConfigRequest(requestParameters: ApprovalsV2025ApiDeleteApprovalConfigRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
60357
|
+
return localVarFp.deleteApprovalConfigRequest(requestParameters.id, requestParameters.scope, axiosOptions).then((request) => request(axios, basePath));
|
|
60358
|
+
},
|
|
59605
60359
|
/**
|
|
59606
60360
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
59607
60361
|
* @summary Get an approval
|
|
@@ -59650,7 +60404,7 @@ export const ApprovalsV2025ApiFactory = function (configuration?: Configuration,
|
|
|
59650
60404
|
* @throws {RequiredError}
|
|
59651
60405
|
*/
|
|
59652
60406
|
putApprovalsConfig(requestParameters: ApprovalsV2025ApiPutApprovalsConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalConfigV2025> {
|
|
59653
|
-
return localVarFp.putApprovalsConfig(requestParameters.
|
|
60407
|
+
return localVarFp.putApprovalsConfig(requestParameters.id, requestParameters.scope, requestParameters.approvalConfigV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
59654
60408
|
},
|
|
59655
60409
|
/**
|
|
59656
60410
|
* Currently this endpoint only supports Entitlement Description Approvals. Rejects a specified approval request on behalf of the caller. If called by an admin and the admin is not listed as an approver, the approval request will be reassigned from a random approver to the admin user.
|
|
@@ -59754,6 +60508,27 @@ export interface ApprovalsV2025ApiCancelApprovalRequest {
|
|
|
59754
60508
|
readonly bulkCancelRequestDTOV2025: BulkCancelRequestDTOV2025
|
|
59755
60509
|
}
|
|
59756
60510
|
|
|
60511
|
+
/**
|
|
60512
|
+
* Request parameters for deleteApprovalConfigRequest operation in ApprovalsV2025Api.
|
|
60513
|
+
* @export
|
|
60514
|
+
* @interface ApprovalsV2025ApiDeleteApprovalConfigRequestRequest
|
|
60515
|
+
*/
|
|
60516
|
+
export interface ApprovalsV2025ApiDeleteApprovalConfigRequestRequest {
|
|
60517
|
+
/**
|
|
60518
|
+
* The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60519
|
+
* @type {string}
|
|
60520
|
+
* @memberof ApprovalsV2025ApiDeleteApprovalConfigRequest
|
|
60521
|
+
*/
|
|
60522
|
+
readonly id: string
|
|
60523
|
+
|
|
60524
|
+
/**
|
|
60525
|
+
* The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60526
|
+
* @type {'DOMAIN_OBJECT' | 'ROLE' | 'APPLICATION' | 'ACCESS_PROFILE' | 'ENTITLEMENT' | 'APPROVAL_TYPE' | 'TENANT' | 'SOURCE'}
|
|
60527
|
+
* @memberof ApprovalsV2025ApiDeleteApprovalConfigRequest
|
|
60528
|
+
*/
|
|
60529
|
+
readonly scope: DeleteApprovalConfigRequestScopeV2025
|
|
60530
|
+
}
|
|
60531
|
+
|
|
59757
60532
|
/**
|
|
59758
60533
|
* Request parameters for getApproval operation in ApprovalsV2025Api.
|
|
59759
60534
|
* @export
|
|
@@ -59901,25 +60676,25 @@ export interface ApprovalsV2025ApiMoveApprovalRequest {
|
|
|
59901
60676
|
*/
|
|
59902
60677
|
export interface ApprovalsV2025ApiPutApprovalsConfigRequest {
|
|
59903
60678
|
/**
|
|
59904
|
-
*
|
|
59905
|
-
* @type {
|
|
60679
|
+
* The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60680
|
+
* @type {string}
|
|
59906
60681
|
* @memberof ApprovalsV2025ApiPutApprovalsConfig
|
|
59907
60682
|
*/
|
|
59908
|
-
readonly
|
|
60683
|
+
readonly id: string
|
|
59909
60684
|
|
|
59910
60685
|
/**
|
|
59911
|
-
* The
|
|
59912
|
-
* @type {
|
|
60686
|
+
* The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
60687
|
+
* @type {'DOMAIN_OBJECT' | 'ROLE' | 'APPLICATION' | 'ACCESS_PROFILE' | 'ENTITLEMENT' | 'APPROVAL_TYPE' | 'TENANT' | 'SOURCE'}
|
|
59913
60688
|
* @memberof ApprovalsV2025ApiPutApprovalsConfig
|
|
59914
60689
|
*/
|
|
59915
|
-
readonly
|
|
60690
|
+
readonly scope: PutApprovalsConfigScopeV2025
|
|
59916
60691
|
|
|
59917
60692
|
/**
|
|
59918
|
-
*
|
|
59919
|
-
* @type {
|
|
60693
|
+
*
|
|
60694
|
+
* @type {ApprovalConfigV2025}
|
|
59920
60695
|
* @memberof ApprovalsV2025ApiPutApprovalsConfig
|
|
59921
60696
|
*/
|
|
59922
|
-
readonly
|
|
60697
|
+
readonly approvalConfigV2025: ApprovalConfigV2025
|
|
59923
60698
|
}
|
|
59924
60699
|
|
|
59925
60700
|
/**
|
|
@@ -60063,6 +60838,18 @@ export class ApprovalsV2025Api extends BaseAPI {
|
|
|
60063
60838
|
return ApprovalsV2025ApiFp(this.configuration).cancelApproval(requestParameters.bulkCancelRequestDTOV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
60064
60839
|
}
|
|
60065
60840
|
|
|
60841
|
+
/**
|
|
60842
|
+
* Deletes an approval configuration. Configurations at the APPROVAL_REQUEST scope cannot be deleted.
|
|
60843
|
+
* @summary Delete Approval Configuration
|
|
60844
|
+
* @param {ApprovalsV2025ApiDeleteApprovalConfigRequestRequest} requestParameters Request parameters.
|
|
60845
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60846
|
+
* @throws {RequiredError}
|
|
60847
|
+
* @memberof ApprovalsV2025Api
|
|
60848
|
+
*/
|
|
60849
|
+
public deleteApprovalConfigRequest(requestParameters: ApprovalsV2025ApiDeleteApprovalConfigRequestRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
60850
|
+
return ApprovalsV2025ApiFp(this.configuration).deleteApprovalConfigRequest(requestParameters.id, requestParameters.scope, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
60851
|
+
}
|
|
60852
|
+
|
|
60066
60853
|
/**
|
|
60067
60854
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
60068
60855
|
* @summary Get an approval
|
|
@@ -60120,7 +60907,7 @@ export class ApprovalsV2025Api extends BaseAPI {
|
|
|
60120
60907
|
* @memberof ApprovalsV2025Api
|
|
60121
60908
|
*/
|
|
60122
60909
|
public putApprovalsConfig(requestParameters: ApprovalsV2025ApiPutApprovalsConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
60123
|
-
return ApprovalsV2025ApiFp(this.configuration).putApprovalsConfig(requestParameters.
|
|
60910
|
+
return ApprovalsV2025ApiFp(this.configuration).putApprovalsConfig(requestParameters.id, requestParameters.scope, requestParameters.approvalConfigV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
60124
60911
|
}
|
|
60125
60912
|
|
|
60126
60913
|
/**
|
|
@@ -60184,6 +60971,34 @@ export class ApprovalsV2025Api extends BaseAPI {
|
|
|
60184
60971
|
}
|
|
60185
60972
|
}
|
|
60186
60973
|
|
|
60974
|
+
/**
|
|
60975
|
+
* @export
|
|
60976
|
+
*/
|
|
60977
|
+
export const DeleteApprovalConfigRequestScopeV2025 = {
|
|
60978
|
+
DomainObject: 'DOMAIN_OBJECT',
|
|
60979
|
+
Role: 'ROLE',
|
|
60980
|
+
Application: 'APPLICATION',
|
|
60981
|
+
AccessProfile: 'ACCESS_PROFILE',
|
|
60982
|
+
Entitlement: 'ENTITLEMENT',
|
|
60983
|
+
ApprovalType: 'APPROVAL_TYPE',
|
|
60984
|
+
Tenant: 'TENANT',
|
|
60985
|
+
Source: 'SOURCE'
|
|
60986
|
+
} as const;
|
|
60987
|
+
export type DeleteApprovalConfigRequestScopeV2025 = typeof DeleteApprovalConfigRequestScopeV2025[keyof typeof DeleteApprovalConfigRequestScopeV2025];
|
|
60988
|
+
/**
|
|
60989
|
+
* @export
|
|
60990
|
+
*/
|
|
60991
|
+
export const PutApprovalsConfigScopeV2025 = {
|
|
60992
|
+
DomainObject: 'DOMAIN_OBJECT',
|
|
60993
|
+
Role: 'ROLE',
|
|
60994
|
+
Application: 'APPLICATION',
|
|
60995
|
+
AccessProfile: 'ACCESS_PROFILE',
|
|
60996
|
+
Entitlement: 'ENTITLEMENT',
|
|
60997
|
+
ApprovalType: 'APPROVAL_TYPE',
|
|
60998
|
+
Tenant: 'TENANT',
|
|
60999
|
+
Source: 'SOURCE'
|
|
61000
|
+
} as const;
|
|
61001
|
+
export type PutApprovalsConfigScopeV2025 = typeof PutApprovalsConfigScopeV2025[keyof typeof PutApprovalsConfigScopeV2025];
|
|
60187
61002
|
|
|
60188
61003
|
|
|
60189
61004
|
/**
|
|
@@ -60497,7 +61312,7 @@ export const AppsV2025ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
60497
61312
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60498
61313
|
* @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.
|
|
60499
61314
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, owner.id, accountSource.id**
|
|
60500
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
61315
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
60501
61316
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60502
61317
|
* @param {*} [axiosOptions] Override http request option.
|
|
60503
61318
|
* @throws {RequiredError}
|
|
@@ -61175,7 +61990,7 @@ export const AppsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
61175
61990
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
61176
61991
|
* @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.
|
|
61177
61992
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, owner.id, accountSource.id**
|
|
61178
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
61993
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
61179
61994
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
61180
61995
|
* @param {*} [axiosOptions] Override http request option.
|
|
61181
61996
|
* @throws {RequiredError}
|
|
@@ -61644,7 +62459,7 @@ export interface AppsV2025ApiListAllSourceAppRequest {
|
|
|
61644
62459
|
readonly sorters?: string
|
|
61645
62460
|
|
|
61646
62461
|
/**
|
|
61647
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
62462
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
61648
62463
|
* @type {string}
|
|
61649
62464
|
* @memberof AppsV2025ApiListAllSourceApp
|
|
61650
62465
|
*/
|
|
@@ -100683,8 +101498,8 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
100683
101498
|
* @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.
|
|
100684
101499
|
* @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.
|
|
100685
101500
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
100686
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in
|
|
100687
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
101501
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
101502
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
100688
101503
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
100689
101504
|
* @param {*} [axiosOptions] Override http request option.
|
|
100690
101505
|
* @throws {RequiredError}
|
|
@@ -100980,8 +101795,8 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
100980
101795
|
* @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.
|
|
100981
101796
|
* @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.
|
|
100982
101797
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
100983
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in
|
|
100984
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
101798
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
101799
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
100985
101800
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
100986
101801
|
* @param {*} [axiosOptions] Override http request option.
|
|
100987
101802
|
* @throws {RequiredError}
|
|
@@ -101336,14 +102151,14 @@ export interface MachineAccountsV2025ApiListMachineAccountsRequest {
|
|
|
101336
102151
|
readonly count?: boolean
|
|
101337
102152
|
|
|
101338
102153
|
/**
|
|
101339
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in
|
|
102154
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
101340
102155
|
* @type {string}
|
|
101341
102156
|
* @memberof MachineAccountsV2025ApiListMachineAccounts
|
|
101342
102157
|
*/
|
|
101343
102158
|
readonly filters?: string
|
|
101344
102159
|
|
|
101345
102160
|
/**
|
|
101346
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
102161
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
101347
102162
|
* @type {string}
|
|
101348
102163
|
* @memberof MachineAccountsV2025ApiListMachineAccounts
|
|
101349
102164
|
*/
|
|
@@ -118406,6 +119221,466 @@ export class RoleInsightsV2025Api extends BaseAPI {
|
|
|
118406
119221
|
|
|
118407
119222
|
|
|
118408
119223
|
|
|
119224
|
+
/**
|
|
119225
|
+
* RolePropagationV2025Api - axios parameter creator
|
|
119226
|
+
* @export
|
|
119227
|
+
*/
|
|
119228
|
+
export const RolePropagationV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
119229
|
+
return {
|
|
119230
|
+
/**
|
|
119231
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
119232
|
+
* @summary Terminate Role Propagation process
|
|
119233
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119234
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119235
|
+
* @throws {RequiredError}
|
|
119236
|
+
*/
|
|
119237
|
+
cancelRolePropagation: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119238
|
+
if (xSailPointExperimental === undefined) {
|
|
119239
|
+
xSailPointExperimental = 'true';
|
|
119240
|
+
}
|
|
119241
|
+
|
|
119242
|
+
const localVarPath = `/role-propagation/terminate`;
|
|
119243
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119244
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
119245
|
+
let baseOptions;
|
|
119246
|
+
if (configuration) {
|
|
119247
|
+
baseOptions = configuration.baseOptions;
|
|
119248
|
+
}
|
|
119249
|
+
|
|
119250
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
119251
|
+
const localVarHeaderParameter = {} as any;
|
|
119252
|
+
const localVarQueryParameter = {} as any;
|
|
119253
|
+
|
|
119254
|
+
// authentication userAuth required
|
|
119255
|
+
// oauth required
|
|
119256
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119257
|
+
|
|
119258
|
+
// authentication userAuth required
|
|
119259
|
+
// oauth required
|
|
119260
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119261
|
+
|
|
119262
|
+
// authentication applicationAuth required
|
|
119263
|
+
// oauth required
|
|
119264
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
119265
|
+
|
|
119266
|
+
|
|
119267
|
+
|
|
119268
|
+
if (xSailPointExperimental != null) {
|
|
119269
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119270
|
+
}
|
|
119271
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119272
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119273
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
119274
|
+
|
|
119275
|
+
return {
|
|
119276
|
+
url: toPathString(localVarUrlObj),
|
|
119277
|
+
axiosOptions: localVarRequestOptions,
|
|
119278
|
+
};
|
|
119279
|
+
},
|
|
119280
|
+
/**
|
|
119281
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119282
|
+
* @summary Get ongoing Role Propagation process
|
|
119283
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119284
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119285
|
+
* @throws {RequiredError}
|
|
119286
|
+
*/
|
|
119287
|
+
getOngoingRolePropagation: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119288
|
+
if (xSailPointExperimental === undefined) {
|
|
119289
|
+
xSailPointExperimental = 'true';
|
|
119290
|
+
}
|
|
119291
|
+
|
|
119292
|
+
const localVarPath = `/role-propagation/is-running`;
|
|
119293
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119294
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
119295
|
+
let baseOptions;
|
|
119296
|
+
if (configuration) {
|
|
119297
|
+
baseOptions = configuration.baseOptions;
|
|
119298
|
+
}
|
|
119299
|
+
|
|
119300
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
119301
|
+
const localVarHeaderParameter = {} as any;
|
|
119302
|
+
const localVarQueryParameter = {} as any;
|
|
119303
|
+
|
|
119304
|
+
// authentication userAuth required
|
|
119305
|
+
// oauth required
|
|
119306
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119307
|
+
|
|
119308
|
+
// authentication userAuth required
|
|
119309
|
+
// oauth required
|
|
119310
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119311
|
+
|
|
119312
|
+
// authentication applicationAuth required
|
|
119313
|
+
// oauth required
|
|
119314
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
119315
|
+
|
|
119316
|
+
|
|
119317
|
+
|
|
119318
|
+
if (xSailPointExperimental != null) {
|
|
119319
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119320
|
+
}
|
|
119321
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119322
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119323
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
119324
|
+
|
|
119325
|
+
return {
|
|
119326
|
+
url: toPathString(localVarUrlObj),
|
|
119327
|
+
axiosOptions: localVarRequestOptions,
|
|
119328
|
+
};
|
|
119329
|
+
},
|
|
119330
|
+
/**
|
|
119331
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119332
|
+
* @summary Get status of Role-Propagation process
|
|
119333
|
+
* @param {string} rolePropagationId The ID of the role propagation process to retrieve the status for.
|
|
119334
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119335
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119336
|
+
* @throws {RequiredError}
|
|
119337
|
+
*/
|
|
119338
|
+
getRolePropagationStatus: async (rolePropagationId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119339
|
+
// verify required parameter 'rolePropagationId' is not null or undefined
|
|
119340
|
+
assertParamExists('getRolePropagationStatus', 'rolePropagationId', rolePropagationId)
|
|
119341
|
+
if (xSailPointExperimental === undefined) {
|
|
119342
|
+
xSailPointExperimental = 'true';
|
|
119343
|
+
}
|
|
119344
|
+
|
|
119345
|
+
const localVarPath = `/role-propagation/{rolePropagationId}/status`
|
|
119346
|
+
.replace(`{${"rolePropagationId"}}`, encodeURIComponent(String(rolePropagationId)));
|
|
119347
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119348
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
119349
|
+
let baseOptions;
|
|
119350
|
+
if (configuration) {
|
|
119351
|
+
baseOptions = configuration.baseOptions;
|
|
119352
|
+
}
|
|
119353
|
+
|
|
119354
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
119355
|
+
const localVarHeaderParameter = {} as any;
|
|
119356
|
+
const localVarQueryParameter = {} as any;
|
|
119357
|
+
|
|
119358
|
+
// authentication userAuth required
|
|
119359
|
+
// oauth required
|
|
119360
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119361
|
+
|
|
119362
|
+
// authentication userAuth required
|
|
119363
|
+
// oauth required
|
|
119364
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119365
|
+
|
|
119366
|
+
// authentication applicationAuth required
|
|
119367
|
+
// oauth required
|
|
119368
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
119369
|
+
|
|
119370
|
+
|
|
119371
|
+
|
|
119372
|
+
if (xSailPointExperimental != null) {
|
|
119373
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119374
|
+
}
|
|
119375
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119376
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119377
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
119378
|
+
|
|
119379
|
+
return {
|
|
119380
|
+
url: toPathString(localVarUrlObj),
|
|
119381
|
+
axiosOptions: localVarRequestOptions,
|
|
119382
|
+
};
|
|
119383
|
+
},
|
|
119384
|
+
/**
|
|
119385
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
119386
|
+
* @summary Initiate Role Propagation process
|
|
119387
|
+
* @param {boolean} [skipRoleRefresh] When true, the role refresh is not performed. Keeping it false is recommended.
|
|
119388
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119389
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119390
|
+
* @throws {RequiredError}
|
|
119391
|
+
*/
|
|
119392
|
+
startRolePropagation: async (skipRoleRefresh?: boolean, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119393
|
+
if (xSailPointExperimental === undefined) {
|
|
119394
|
+
xSailPointExperimental = 'true';
|
|
119395
|
+
}
|
|
119396
|
+
|
|
119397
|
+
const localVarPath = `/role-propagation`;
|
|
119398
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119399
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
119400
|
+
let baseOptions;
|
|
119401
|
+
if (configuration) {
|
|
119402
|
+
baseOptions = configuration.baseOptions;
|
|
119403
|
+
}
|
|
119404
|
+
|
|
119405
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
119406
|
+
const localVarHeaderParameter = {} as any;
|
|
119407
|
+
const localVarQueryParameter = {} as any;
|
|
119408
|
+
|
|
119409
|
+
// authentication userAuth required
|
|
119410
|
+
// oauth required
|
|
119411
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119412
|
+
|
|
119413
|
+
// authentication userAuth required
|
|
119414
|
+
// oauth required
|
|
119415
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119416
|
+
|
|
119417
|
+
// authentication applicationAuth required
|
|
119418
|
+
// oauth required
|
|
119419
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
119420
|
+
|
|
119421
|
+
if (skipRoleRefresh !== undefined) {
|
|
119422
|
+
localVarQueryParameter['skipRoleRefresh'] = skipRoleRefresh;
|
|
119423
|
+
}
|
|
119424
|
+
|
|
119425
|
+
|
|
119426
|
+
|
|
119427
|
+
if (xSailPointExperimental != null) {
|
|
119428
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119429
|
+
}
|
|
119430
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119431
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119432
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
119433
|
+
|
|
119434
|
+
return {
|
|
119435
|
+
url: toPathString(localVarUrlObj),
|
|
119436
|
+
axiosOptions: localVarRequestOptions,
|
|
119437
|
+
};
|
|
119438
|
+
},
|
|
119439
|
+
}
|
|
119440
|
+
};
|
|
119441
|
+
|
|
119442
|
+
/**
|
|
119443
|
+
* RolePropagationV2025Api - functional programming interface
|
|
119444
|
+
* @export
|
|
119445
|
+
*/
|
|
119446
|
+
export const RolePropagationV2025ApiFp = function(configuration?: Configuration) {
|
|
119447
|
+
const localVarAxiosParamCreator = RolePropagationV2025ApiAxiosParamCreator(configuration)
|
|
119448
|
+
return {
|
|
119449
|
+
/**
|
|
119450
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
119451
|
+
* @summary Terminate Role Propagation process
|
|
119452
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119453
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119454
|
+
* @throws {RequiredError}
|
|
119455
|
+
*/
|
|
119456
|
+
async cancelRolePropagation(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
119457
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.cancelRolePropagation(xSailPointExperimental, axiosOptions);
|
|
119458
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119459
|
+
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.cancelRolePropagation']?.[localVarOperationServerIndex]?.url;
|
|
119460
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
119461
|
+
},
|
|
119462
|
+
/**
|
|
119463
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119464
|
+
* @summary Get ongoing Role Propagation process
|
|
119465
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119466
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119467
|
+
* @throws {RequiredError}
|
|
119468
|
+
*/
|
|
119469
|
+
async getOngoingRolePropagation(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationOngoingResponseV2025>> {
|
|
119470
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getOngoingRolePropagation(xSailPointExperimental, axiosOptions);
|
|
119471
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119472
|
+
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.getOngoingRolePropagation']?.[localVarOperationServerIndex]?.url;
|
|
119473
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
119474
|
+
},
|
|
119475
|
+
/**
|
|
119476
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119477
|
+
* @summary Get status of Role-Propagation process
|
|
119478
|
+
* @param {string} rolePropagationId The ID of the role propagation process to retrieve the status for.
|
|
119479
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119480
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119481
|
+
* @throws {RequiredError}
|
|
119482
|
+
*/
|
|
119483
|
+
async getRolePropagationStatus(rolePropagationId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationStatusResponseV2025>> {
|
|
119484
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRolePropagationStatus(rolePropagationId, xSailPointExperimental, axiosOptions);
|
|
119485
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119486
|
+
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.getRolePropagationStatus']?.[localVarOperationServerIndex]?.url;
|
|
119487
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
119488
|
+
},
|
|
119489
|
+
/**
|
|
119490
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
119491
|
+
* @summary Initiate Role Propagation process
|
|
119492
|
+
* @param {boolean} [skipRoleRefresh] When true, the role refresh is not performed. Keeping it false is recommended.
|
|
119493
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119494
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119495
|
+
* @throws {RequiredError}
|
|
119496
|
+
*/
|
|
119497
|
+
async startRolePropagation(skipRoleRefresh?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationResponseV2025>> {
|
|
119498
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startRolePropagation(skipRoleRefresh, xSailPointExperimental, axiosOptions);
|
|
119499
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119500
|
+
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.startRolePropagation']?.[localVarOperationServerIndex]?.url;
|
|
119501
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
119502
|
+
},
|
|
119503
|
+
}
|
|
119504
|
+
};
|
|
119505
|
+
|
|
119506
|
+
/**
|
|
119507
|
+
* RolePropagationV2025Api - factory interface
|
|
119508
|
+
* @export
|
|
119509
|
+
*/
|
|
119510
|
+
export const RolePropagationV2025ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
119511
|
+
const localVarFp = RolePropagationV2025ApiFp(configuration)
|
|
119512
|
+
return {
|
|
119513
|
+
/**
|
|
119514
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
119515
|
+
* @summary Terminate Role Propagation process
|
|
119516
|
+
* @param {RolePropagationV2025ApiCancelRolePropagationRequest} requestParameters Request parameters.
|
|
119517
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119518
|
+
* @throws {RequiredError}
|
|
119519
|
+
*/
|
|
119520
|
+
cancelRolePropagation(requestParameters: RolePropagationV2025ApiCancelRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
119521
|
+
return localVarFp.cancelRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
119522
|
+
},
|
|
119523
|
+
/**
|
|
119524
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119525
|
+
* @summary Get ongoing Role Propagation process
|
|
119526
|
+
* @param {RolePropagationV2025ApiGetOngoingRolePropagationRequest} requestParameters Request parameters.
|
|
119527
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119528
|
+
* @throws {RequiredError}
|
|
119529
|
+
*/
|
|
119530
|
+
getOngoingRolePropagation(requestParameters: RolePropagationV2025ApiGetOngoingRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationOngoingResponseV2025> {
|
|
119531
|
+
return localVarFp.getOngoingRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
119532
|
+
},
|
|
119533
|
+
/**
|
|
119534
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119535
|
+
* @summary Get status of Role-Propagation process
|
|
119536
|
+
* @param {RolePropagationV2025ApiGetRolePropagationStatusRequest} requestParameters Request parameters.
|
|
119537
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119538
|
+
* @throws {RequiredError}
|
|
119539
|
+
*/
|
|
119540
|
+
getRolePropagationStatus(requestParameters: RolePropagationV2025ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationStatusResponseV2025> {
|
|
119541
|
+
return localVarFp.getRolePropagationStatus(requestParameters.rolePropagationId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
119542
|
+
},
|
|
119543
|
+
/**
|
|
119544
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
119545
|
+
* @summary Initiate Role Propagation process
|
|
119546
|
+
* @param {RolePropagationV2025ApiStartRolePropagationRequest} requestParameters Request parameters.
|
|
119547
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119548
|
+
* @throws {RequiredError}
|
|
119549
|
+
*/
|
|
119550
|
+
startRolePropagation(requestParameters: RolePropagationV2025ApiStartRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationResponseV2025> {
|
|
119551
|
+
return localVarFp.startRolePropagation(requestParameters.skipRoleRefresh, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
119552
|
+
},
|
|
119553
|
+
};
|
|
119554
|
+
};
|
|
119555
|
+
|
|
119556
|
+
/**
|
|
119557
|
+
* Request parameters for cancelRolePropagation operation in RolePropagationV2025Api.
|
|
119558
|
+
* @export
|
|
119559
|
+
* @interface RolePropagationV2025ApiCancelRolePropagationRequest
|
|
119560
|
+
*/
|
|
119561
|
+
export interface RolePropagationV2025ApiCancelRolePropagationRequest {
|
|
119562
|
+
/**
|
|
119563
|
+
* Use this header to enable this experimental API.
|
|
119564
|
+
* @type {string}
|
|
119565
|
+
* @memberof RolePropagationV2025ApiCancelRolePropagation
|
|
119566
|
+
*/
|
|
119567
|
+
readonly xSailPointExperimental?: string
|
|
119568
|
+
}
|
|
119569
|
+
|
|
119570
|
+
/**
|
|
119571
|
+
* Request parameters for getOngoingRolePropagation operation in RolePropagationV2025Api.
|
|
119572
|
+
* @export
|
|
119573
|
+
* @interface RolePropagationV2025ApiGetOngoingRolePropagationRequest
|
|
119574
|
+
*/
|
|
119575
|
+
export interface RolePropagationV2025ApiGetOngoingRolePropagationRequest {
|
|
119576
|
+
/**
|
|
119577
|
+
* Use this header to enable this experimental API.
|
|
119578
|
+
* @type {string}
|
|
119579
|
+
* @memberof RolePropagationV2025ApiGetOngoingRolePropagation
|
|
119580
|
+
*/
|
|
119581
|
+
readonly xSailPointExperimental?: string
|
|
119582
|
+
}
|
|
119583
|
+
|
|
119584
|
+
/**
|
|
119585
|
+
* Request parameters for getRolePropagationStatus operation in RolePropagationV2025Api.
|
|
119586
|
+
* @export
|
|
119587
|
+
* @interface RolePropagationV2025ApiGetRolePropagationStatusRequest
|
|
119588
|
+
*/
|
|
119589
|
+
export interface RolePropagationV2025ApiGetRolePropagationStatusRequest {
|
|
119590
|
+
/**
|
|
119591
|
+
* The ID of the role propagation process to retrieve the status for.
|
|
119592
|
+
* @type {string}
|
|
119593
|
+
* @memberof RolePropagationV2025ApiGetRolePropagationStatus
|
|
119594
|
+
*/
|
|
119595
|
+
readonly rolePropagationId: string
|
|
119596
|
+
|
|
119597
|
+
/**
|
|
119598
|
+
* Use this header to enable this experimental API.
|
|
119599
|
+
* @type {string}
|
|
119600
|
+
* @memberof RolePropagationV2025ApiGetRolePropagationStatus
|
|
119601
|
+
*/
|
|
119602
|
+
readonly xSailPointExperimental?: string
|
|
119603
|
+
}
|
|
119604
|
+
|
|
119605
|
+
/**
|
|
119606
|
+
* Request parameters for startRolePropagation operation in RolePropagationV2025Api.
|
|
119607
|
+
* @export
|
|
119608
|
+
* @interface RolePropagationV2025ApiStartRolePropagationRequest
|
|
119609
|
+
*/
|
|
119610
|
+
export interface RolePropagationV2025ApiStartRolePropagationRequest {
|
|
119611
|
+
/**
|
|
119612
|
+
* When true, the role refresh is not performed. Keeping it false is recommended.
|
|
119613
|
+
* @type {boolean}
|
|
119614
|
+
* @memberof RolePropagationV2025ApiStartRolePropagation
|
|
119615
|
+
*/
|
|
119616
|
+
readonly skipRoleRefresh?: boolean
|
|
119617
|
+
|
|
119618
|
+
/**
|
|
119619
|
+
* Use this header to enable this experimental API.
|
|
119620
|
+
* @type {string}
|
|
119621
|
+
* @memberof RolePropagationV2025ApiStartRolePropagation
|
|
119622
|
+
*/
|
|
119623
|
+
readonly xSailPointExperimental?: string
|
|
119624
|
+
}
|
|
119625
|
+
|
|
119626
|
+
/**
|
|
119627
|
+
* RolePropagationV2025Api - object-oriented interface
|
|
119628
|
+
* @export
|
|
119629
|
+
* @class RolePropagationV2025Api
|
|
119630
|
+
* @extends {BaseAPI}
|
|
119631
|
+
*/
|
|
119632
|
+
export class RolePropagationV2025Api extends BaseAPI {
|
|
119633
|
+
/**
|
|
119634
|
+
* This endpoint terminates the ongoing role change propagation process for a tenant.
|
|
119635
|
+
* @summary Terminate Role Propagation process
|
|
119636
|
+
* @param {RolePropagationV2025ApiCancelRolePropagationRequest} requestParameters Request parameters.
|
|
119637
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119638
|
+
* @throws {RequiredError}
|
|
119639
|
+
* @memberof RolePropagationV2025Api
|
|
119640
|
+
*/
|
|
119641
|
+
public cancelRolePropagation(requestParameters: RolePropagationV2025ApiCancelRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
119642
|
+
return RolePropagationV2025ApiFp(this.configuration).cancelRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119643
|
+
}
|
|
119644
|
+
|
|
119645
|
+
/**
|
|
119646
|
+
* This endpoint returns the information of ongoing role change propagation process for a tenant. It returns the information whether the role propagation process is currently running or not, If it is running it returns the details of the ongoing role propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119647
|
+
* @summary Get ongoing Role Propagation process
|
|
119648
|
+
* @param {RolePropagationV2025ApiGetOngoingRolePropagationRequest} requestParameters Request parameters.
|
|
119649
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119650
|
+
* @throws {RequiredError}
|
|
119651
|
+
* @memberof RolePropagationV2025Api
|
|
119652
|
+
*/
|
|
119653
|
+
public getOngoingRolePropagation(requestParameters: RolePropagationV2025ApiGetOngoingRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
119654
|
+
return RolePropagationV2025ApiFp(this.configuration).getOngoingRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119655
|
+
}
|
|
119656
|
+
|
|
119657
|
+
/**
|
|
119658
|
+
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
119659
|
+
* @summary Get status of Role-Propagation process
|
|
119660
|
+
* @param {RolePropagationV2025ApiGetRolePropagationStatusRequest} requestParameters Request parameters.
|
|
119661
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119662
|
+
* @throws {RequiredError}
|
|
119663
|
+
* @memberof RolePropagationV2025Api
|
|
119664
|
+
*/
|
|
119665
|
+
public getRolePropagationStatus(requestParameters: RolePropagationV2025ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
119666
|
+
return RolePropagationV2025ApiFp(this.configuration).getRolePropagationStatus(requestParameters.rolePropagationId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119667
|
+
}
|
|
119668
|
+
|
|
119669
|
+
/**
|
|
119670
|
+
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
119671
|
+
* @summary Initiate Role Propagation process
|
|
119672
|
+
* @param {RolePropagationV2025ApiStartRolePropagationRequest} requestParameters Request parameters.
|
|
119673
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
119674
|
+
* @throws {RequiredError}
|
|
119675
|
+
* @memberof RolePropagationV2025Api
|
|
119676
|
+
*/
|
|
119677
|
+
public startRolePropagation(requestParameters: RolePropagationV2025ApiStartRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
119678
|
+
return RolePropagationV2025ApiFp(this.configuration).startRolePropagation(requestParameters.skipRoleRefresh, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119679
|
+
}
|
|
119680
|
+
}
|
|
119681
|
+
|
|
119682
|
+
|
|
119683
|
+
|
|
118409
119684
|
/**
|
|
118410
119685
|
* RolesV2025Api - axios parameter creator
|
|
118411
119686
|
* @export
|
|
@@ -125229,7 +126504,7 @@ export const SearchV2025ApiAxiosParamCreator = function (configuration?: Configu
|
|
|
125229
126504
|
};
|
|
125230
126505
|
},
|
|
125231
126506
|
/**
|
|
125232
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
126507
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
125233
126508
|
* @summary Perform search
|
|
125234
126509
|
* @param {SearchV2025} searchV2025
|
|
125235
126510
|
* @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.
|
|
@@ -125345,7 +126620,7 @@ export const SearchV2025ApiFp = function(configuration?: Configuration) {
|
|
|
125345
126620
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
125346
126621
|
},
|
|
125347
126622
|
/**
|
|
125348
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
126623
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
125349
126624
|
* @summary Perform search
|
|
125350
126625
|
* @param {SearchV2025} searchV2025
|
|
125351
126626
|
* @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.
|
|
@@ -125401,7 +126676,7 @@ export const SearchV2025ApiFactory = function (configuration?: Configuration, ba
|
|
|
125401
126676
|
return localVarFp.searchGet(requestParameters.index, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
125402
126677
|
},
|
|
125403
126678
|
/**
|
|
125404
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
126679
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
125405
126680
|
* @summary Perform search
|
|
125406
126681
|
* @param {SearchV2025ApiSearchPostRequest} requestParameters Request parameters.
|
|
125407
126682
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -125562,7 +126837,7 @@ export class SearchV2025Api extends BaseAPI {
|
|
|
125562
126837
|
}
|
|
125563
126838
|
|
|
125564
126839
|
/**
|
|
125565
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
126840
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
125566
126841
|
* @summary Perform search
|
|
125567
126842
|
* @param {SearchV2025ApiSearchPostRequest} requestParameters Request parameters.
|
|
125568
126843
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -139393,19 +140668,14 @@ export const WorkItemsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
139393
140668
|
* @summary Forward a work item
|
|
139394
140669
|
* @param {string} id The ID of the work item
|
|
139395
140670
|
* @param {WorkItemForwardV2025} workItemForwardV2025
|
|
139396
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
139397
140671
|
* @param {*} [axiosOptions] Override http request option.
|
|
139398
140672
|
* @throws {RequiredError}
|
|
139399
140673
|
*/
|
|
139400
|
-
forwardWorkItem: async (id: string, workItemForwardV2025: WorkItemForwardV2025,
|
|
140674
|
+
forwardWorkItem: async (id: string, workItemForwardV2025: WorkItemForwardV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
139401
140675
|
// verify required parameter 'id' is not null or undefined
|
|
139402
140676
|
assertParamExists('forwardWorkItem', 'id', id)
|
|
139403
140677
|
// verify required parameter 'workItemForwardV2025' is not null or undefined
|
|
139404
140678
|
assertParamExists('forwardWorkItem', 'workItemForwardV2025', workItemForwardV2025)
|
|
139405
|
-
if (xSailPointExperimental === undefined) {
|
|
139406
|
-
xSailPointExperimental = 'true';
|
|
139407
|
-
}
|
|
139408
|
-
|
|
139409
140679
|
const localVarPath = `/work-items/{id}/forward`
|
|
139410
140680
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
139411
140681
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -139431,9 +140701,6 @@ export const WorkItemsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
139431
140701
|
|
|
139432
140702
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
139433
140703
|
|
|
139434
|
-
if (xSailPointExperimental != null) {
|
|
139435
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
139436
|
-
}
|
|
139437
140704
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
139438
140705
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
139439
140706
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -139506,15 +140773,10 @@ export const WorkItemsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
139506
140773
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
139507
140774
|
* @summary Count completed work items
|
|
139508
140775
|
* @param {string} [ownerId] ID of the work item owner.
|
|
139509
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
139510
140776
|
* @param {*} [axiosOptions] Override http request option.
|
|
139511
140777
|
* @throws {RequiredError}
|
|
139512
140778
|
*/
|
|
139513
|
-
getCountCompletedWorkItems: async (ownerId?: string,
|
|
139514
|
-
if (xSailPointExperimental === undefined) {
|
|
139515
|
-
xSailPointExperimental = 'true';
|
|
139516
|
-
}
|
|
139517
|
-
|
|
140779
|
+
getCountCompletedWorkItems: async (ownerId?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
139518
140780
|
const localVarPath = `/work-items/completed/count`;
|
|
139519
140781
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
139520
140782
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -139541,9 +140803,6 @@ export const WorkItemsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
139541
140803
|
|
|
139542
140804
|
|
|
139543
140805
|
|
|
139544
|
-
if (xSailPointExperimental != null) {
|
|
139545
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
139546
|
-
}
|
|
139547
140806
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
139548
140807
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
139549
140808
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -139931,12 +141190,11 @@ export const WorkItemsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
139931
141190
|
* @summary Forward a work item
|
|
139932
141191
|
* @param {string} id The ID of the work item
|
|
139933
141192
|
* @param {WorkItemForwardV2025} workItemForwardV2025
|
|
139934
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
139935
141193
|
* @param {*} [axiosOptions] Override http request option.
|
|
139936
141194
|
* @throws {RequiredError}
|
|
139937
141195
|
*/
|
|
139938
|
-
async forwardWorkItem(id: string, workItemForwardV2025: WorkItemForwardV2025,
|
|
139939
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardWorkItem(id, workItemForwardV2025,
|
|
141196
|
+
async forwardWorkItem(id: string, workItemForwardV2025: WorkItemForwardV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
141197
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardWorkItem(id, workItemForwardV2025, axiosOptions);
|
|
139940
141198
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
139941
141199
|
const localVarOperationServerBasePath = operationServerMap['WorkItemsV2025Api.forwardWorkItem']?.[localVarOperationServerIndex]?.url;
|
|
139942
141200
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -139961,12 +141219,11 @@ export const WorkItemsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
139961
141219
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
139962
141220
|
* @summary Count completed work items
|
|
139963
141221
|
* @param {string} [ownerId] ID of the work item owner.
|
|
139964
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
139965
141222
|
* @param {*} [axiosOptions] Override http request option.
|
|
139966
141223
|
* @throws {RequiredError}
|
|
139967
141224
|
*/
|
|
139968
|
-
async getCountCompletedWorkItems(ownerId?: string,
|
|
139969
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getCountCompletedWorkItems(ownerId,
|
|
141225
|
+
async getCountCompletedWorkItems(ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsCountV2025>> {
|
|
141226
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCountCompletedWorkItems(ownerId, axiosOptions);
|
|
139970
141227
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
139971
141228
|
const localVarOperationServerBasePath = operationServerMap['WorkItemsV2025Api.getCountCompletedWorkItems']?.[localVarOperationServerIndex]?.url;
|
|
139972
141229
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -140115,7 +141372,7 @@ export const WorkItemsV2025ApiFactory = function (configuration?: Configuration,
|
|
|
140115
141372
|
* @throws {RequiredError}
|
|
140116
141373
|
*/
|
|
140117
141374
|
forwardWorkItem(requestParameters: WorkItemsV2025ApiForwardWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
140118
|
-
return localVarFp.forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2025,
|
|
141375
|
+
return localVarFp.forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
140119
141376
|
},
|
|
140120
141377
|
/**
|
|
140121
141378
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
@@ -140135,7 +141392,7 @@ export const WorkItemsV2025ApiFactory = function (configuration?: Configuration,
|
|
|
140135
141392
|
* @throws {RequiredError}
|
|
140136
141393
|
*/
|
|
140137
141394
|
getCountCompletedWorkItems(requestParameters: WorkItemsV2025ApiGetCountCompletedWorkItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkItemsCountV2025> {
|
|
140138
|
-
return localVarFp.getCountCompletedWorkItems(requestParameters.ownerId,
|
|
141395
|
+
return localVarFp.getCountCompletedWorkItems(requestParameters.ownerId, axiosOptions).then((request) => request(axios, basePath));
|
|
140139
141396
|
},
|
|
140140
141397
|
/**
|
|
140141
141398
|
* This gets a count of work items belonging to either the specified user(admin required), or the current user.
|
|
@@ -140285,13 +141542,6 @@ export interface WorkItemsV2025ApiForwardWorkItemRequest {
|
|
|
140285
141542
|
* @memberof WorkItemsV2025ApiForwardWorkItem
|
|
140286
141543
|
*/
|
|
140287
141544
|
readonly workItemForwardV2025: WorkItemForwardV2025
|
|
140288
|
-
|
|
140289
|
-
/**
|
|
140290
|
-
* Use this header to enable this experimental API.
|
|
140291
|
-
* @type {string}
|
|
140292
|
-
* @memberof WorkItemsV2025ApiForwardWorkItem
|
|
140293
|
-
*/
|
|
140294
|
-
readonly xSailPointExperimental?: string
|
|
140295
141545
|
}
|
|
140296
141546
|
|
|
140297
141547
|
/**
|
|
@@ -140341,13 +141591,6 @@ export interface WorkItemsV2025ApiGetCountCompletedWorkItemsRequest {
|
|
|
140341
141591
|
* @memberof WorkItemsV2025ApiGetCountCompletedWorkItems
|
|
140342
141592
|
*/
|
|
140343
141593
|
readonly ownerId?: string
|
|
140344
|
-
|
|
140345
|
-
/**
|
|
140346
|
-
* Use this header to enable this experimental API.
|
|
140347
|
-
* @type {string}
|
|
140348
|
-
* @memberof WorkItemsV2025ApiGetCountCompletedWorkItems
|
|
140349
|
-
*/
|
|
140350
|
-
readonly xSailPointExperimental?: string
|
|
140351
141594
|
}
|
|
140352
141595
|
|
|
140353
141596
|
/**
|
|
@@ -140535,7 +141778,7 @@ export class WorkItemsV2025Api extends BaseAPI {
|
|
|
140535
141778
|
* @memberof WorkItemsV2025Api
|
|
140536
141779
|
*/
|
|
140537
141780
|
public forwardWorkItem(requestParameters: WorkItemsV2025ApiForwardWorkItemRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
140538
|
-
return WorkItemsV2025ApiFp(this.configuration).forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2025,
|
|
141781
|
+
return WorkItemsV2025ApiFp(this.configuration).forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
140539
141782
|
}
|
|
140540
141783
|
|
|
140541
141784
|
/**
|
|
@@ -140559,7 +141802,7 @@ export class WorkItemsV2025Api extends BaseAPI {
|
|
|
140559
141802
|
* @memberof WorkItemsV2025Api
|
|
140560
141803
|
*/
|
|
140561
141804
|
public getCountCompletedWorkItems(requestParameters: WorkItemsV2025ApiGetCountCompletedWorkItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
140562
|
-
return WorkItemsV2025ApiFp(this.configuration).getCountCompletedWorkItems(requestParameters.ownerId,
|
|
141805
|
+
return WorkItemsV2025ApiFp(this.configuration).getCountCompletedWorkItems(requestParameters.ownerId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
140563
141806
|
}
|
|
140564
141807
|
|
|
140565
141808
|
/**
|