sailpoint-api-client 1.7.0 → 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 +2593 -256
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +1253 -109
- package/dist/beta/api.js +3218 -425
- 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 +481 -129
- package/dist/v2024/api.js +3695 -738
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +5063 -240
- package/dist/v2025/api.js +7783 -1068
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/api.d.ts +23 -15
- package/dist/v2026/api.js +22 -14
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +197 -16
- package/dist/v3/api.js +1279 -289
- 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 +1993 -438
- 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 +8350 -604
- 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/api.ts +23 -15
- 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 +689 -114
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v3/api.ts
CHANGED
|
@@ -259,6 +259,35 @@ export const AccessCriteriaRequestCriteriaListInnerTypeV3 = {
|
|
|
259
259
|
|
|
260
260
|
export type AccessCriteriaRequestCriteriaListInnerTypeV3 = typeof AccessCriteriaRequestCriteriaListInnerTypeV3[keyof typeof AccessCriteriaRequestCriteriaListInnerTypeV3];
|
|
261
261
|
|
|
262
|
+
/**
|
|
263
|
+
*
|
|
264
|
+
* @export
|
|
265
|
+
* @interface AccessDuration
|
|
266
|
+
*/
|
|
267
|
+
export interface AccessDuration {
|
|
268
|
+
/**
|
|
269
|
+
* The numeric value representing the amount of time, which is defined in the **timeUnit**.
|
|
270
|
+
* @type {number}
|
|
271
|
+
* @memberof AccessDuration
|
|
272
|
+
*/
|
|
273
|
+
'value'?: number;
|
|
274
|
+
/**
|
|
275
|
+
* The unit of time that corresponds to the **value**. It defines the scale of the time period.
|
|
276
|
+
* @type {string}
|
|
277
|
+
* @memberof AccessDuration
|
|
278
|
+
*/
|
|
279
|
+
'timeUnit'?: AccessDurationTimeUnitV3;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
export const AccessDurationTimeUnitV3 = {
|
|
283
|
+
Hours: 'HOURS',
|
|
284
|
+
Days: 'DAYS',
|
|
285
|
+
Weeks: 'WEEKS',
|
|
286
|
+
Months: 'MONTHS'
|
|
287
|
+
} as const;
|
|
288
|
+
|
|
289
|
+
export type AccessDurationTimeUnitV3 = typeof AccessDurationTimeUnitV3[keyof typeof AccessDurationTimeUnitV3];
|
|
290
|
+
|
|
262
291
|
/**
|
|
263
292
|
* Identity the access item is requested for.
|
|
264
293
|
* @export
|
|
@@ -519,12 +548,24 @@ export interface AccessProfile {
|
|
|
519
548
|
* @memberof AccessProfile
|
|
520
549
|
*/
|
|
521
550
|
'segments'?: Array<string> | null;
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {AttributeDTOList}
|
|
554
|
+
* @memberof AccessProfile
|
|
555
|
+
*/
|
|
556
|
+
'accessModelMetadata'?: AttributeDTOList;
|
|
522
557
|
/**
|
|
523
558
|
*
|
|
524
559
|
* @type {ProvisioningCriteriaLevel1}
|
|
525
560
|
* @memberof AccessProfile
|
|
526
561
|
*/
|
|
527
562
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1 | null;
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @type {Array<OwnerReference>}
|
|
566
|
+
* @memberof AccessProfile
|
|
567
|
+
*/
|
|
568
|
+
'additionalOwners'?: Array<OwnerReference> | null;
|
|
528
569
|
}
|
|
529
570
|
/**
|
|
530
571
|
*
|
|
@@ -1413,14 +1454,15 @@ export interface AccessRequestTracking {
|
|
|
1413
1454
|
'accessRequestIds'?: Array<string>;
|
|
1414
1455
|
}
|
|
1415
1456
|
/**
|
|
1416
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
1457
|
+
* 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.
|
|
1417
1458
|
* @export
|
|
1418
1459
|
* @enum {string}
|
|
1419
1460
|
*/
|
|
1420
1461
|
|
|
1421
1462
|
export const AccessRequestType = {
|
|
1422
1463
|
GrantAccess: 'GRANT_ACCESS',
|
|
1423
|
-
RevokeAccess: 'REVOKE_ACCESS'
|
|
1464
|
+
RevokeAccess: 'REVOKE_ACCESS',
|
|
1465
|
+
ModifyAccess: 'MODIFY_ACCESS'
|
|
1424
1466
|
} as const;
|
|
1425
1467
|
|
|
1426
1468
|
export type AccessRequestType = typeof AccessRequestType[keyof typeof AccessRequestType];
|
|
@@ -6381,6 +6423,12 @@ export interface CompletedApproval {
|
|
|
6381
6423
|
* @memberof CompletedApproval
|
|
6382
6424
|
*/
|
|
6383
6425
|
'privilegeLevel'?: string | null;
|
|
6426
|
+
/**
|
|
6427
|
+
*
|
|
6428
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
6429
|
+
* @memberof CompletedApproval
|
|
6430
|
+
*/
|
|
6431
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
6384
6432
|
}
|
|
6385
6433
|
|
|
6386
6434
|
|
|
@@ -12966,6 +13014,42 @@ export interface ManagedCluster {
|
|
|
12966
13014
|
* @memberof ManagedCluster
|
|
12967
13015
|
*/
|
|
12968
13016
|
'updatedAt'?: string | null;
|
|
13017
|
+
/**
|
|
13018
|
+
* The date/time this cluster was notified for the last release
|
|
13019
|
+
* @type {string}
|
|
13020
|
+
* @memberof ManagedCluster
|
|
13021
|
+
*/
|
|
13022
|
+
'lastReleaseNotifiedAt'?: string | null;
|
|
13023
|
+
/**
|
|
13024
|
+
*
|
|
13025
|
+
* @type {ManagedClusterUpdatePreferences}
|
|
13026
|
+
* @memberof ManagedCluster
|
|
13027
|
+
*/
|
|
13028
|
+
'updatePreferences'?: ManagedClusterUpdatePreferences;
|
|
13029
|
+
/**
|
|
13030
|
+
* The current installed release on the Managed cluster
|
|
13031
|
+
* @type {string}
|
|
13032
|
+
* @memberof ManagedCluster
|
|
13033
|
+
*/
|
|
13034
|
+
'currentInstalledReleaseVersion'?: string | null;
|
|
13035
|
+
/**
|
|
13036
|
+
* New available updates for the Managed cluster
|
|
13037
|
+
* @type {string}
|
|
13038
|
+
* @memberof ManagedCluster
|
|
13039
|
+
*/
|
|
13040
|
+
'updatePackage'?: string | null;
|
|
13041
|
+
/**
|
|
13042
|
+
* The time at which out of date notification was sent for the Managed cluster
|
|
13043
|
+
* @type {string}
|
|
13044
|
+
* @memberof ManagedCluster
|
|
13045
|
+
*/
|
|
13046
|
+
'isOutOfDateNotifiedAt'?: string | null;
|
|
13047
|
+
/**
|
|
13048
|
+
* The consolidated Health Status for the Managed cluster
|
|
13049
|
+
* @type {string}
|
|
13050
|
+
* @memberof ManagedCluster
|
|
13051
|
+
*/
|
|
13052
|
+
'consolidatedHealthIndicatorsStatus'?: ManagedClusterConsolidatedHealthIndicatorsStatusV3 | null;
|
|
12969
13053
|
}
|
|
12970
13054
|
|
|
12971
13055
|
export const ManagedClusterStatusV3 = {
|
|
@@ -12977,6 +13061,13 @@ export const ManagedClusterStatusV3 = {
|
|
|
12977
13061
|
} as const;
|
|
12978
13062
|
|
|
12979
13063
|
export type ManagedClusterStatusV3 = typeof ManagedClusterStatusV3[keyof typeof ManagedClusterStatusV3];
|
|
13064
|
+
export const ManagedClusterConsolidatedHealthIndicatorsStatusV3 = {
|
|
13065
|
+
Normal: 'NORMAL',
|
|
13066
|
+
Warning: 'WARNING',
|
|
13067
|
+
Error: 'ERROR'
|
|
13068
|
+
} as const;
|
|
13069
|
+
|
|
13070
|
+
export type ManagedClusterConsolidatedHealthIndicatorsStatusV3 = typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3[keyof typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3];
|
|
12980
13071
|
|
|
12981
13072
|
/**
|
|
12982
13073
|
* Managed Cluster Attributes for Cluster Configuration. Supported Cluster Types [sqsCluster, spConnectCluster]
|
|
@@ -13115,19 +13206,60 @@ export interface ManagedClusterRequest {
|
|
|
13115
13206
|
|
|
13116
13207
|
|
|
13117
13208
|
/**
|
|
13118
|
-
* The Type of Cluster
|
|
13209
|
+
* The Type of Cluster: * `idn` - IDN VA type * `iai` - IAI harvester VA * `spConnectCluster` - Saas 2.0 connector cluster (this should be one per org) * `sqsCluster` - This should be unused * `das-rc` - Data Access Security Resources Collector * `das-pc` - Data Access Security Permissions Collector * `das-dc` - Data Access Security Data Classification Collector * `pag` - Privilege Action Gateway VA * `das-am` - Data Access Security Activity Monitor * `standard` - Standard Cluster type for running multiple products
|
|
13119
13210
|
* @export
|
|
13120
13211
|
* @enum {string}
|
|
13121
13212
|
*/
|
|
13122
13213
|
|
|
13123
13214
|
export const ManagedClusterTypes = {
|
|
13124
13215
|
Idn: 'idn',
|
|
13125
|
-
Iai: 'iai'
|
|
13216
|
+
Iai: 'iai',
|
|
13217
|
+
SpConnectCluster: 'spConnectCluster',
|
|
13218
|
+
SqsCluster: 'sqsCluster',
|
|
13219
|
+
DasRc: 'das-rc',
|
|
13220
|
+
DasPc: 'das-pc',
|
|
13221
|
+
DasDc: 'das-dc',
|
|
13222
|
+
Pag: 'pag',
|
|
13223
|
+
DasAm: 'das-am',
|
|
13224
|
+
Standard: 'standard'
|
|
13126
13225
|
} as const;
|
|
13127
13226
|
|
|
13128
13227
|
export type ManagedClusterTypes = typeof ManagedClusterTypes[keyof typeof ManagedClusterTypes];
|
|
13129
13228
|
|
|
13130
13229
|
|
|
13230
|
+
/**
|
|
13231
|
+
* The preference for applying updates for the cluster
|
|
13232
|
+
* @export
|
|
13233
|
+
* @interface ManagedClusterUpdatePreferences
|
|
13234
|
+
*/
|
|
13235
|
+
export interface ManagedClusterUpdatePreferences {
|
|
13236
|
+
/**
|
|
13237
|
+
* The processGroups for updatePreferences
|
|
13238
|
+
* @type {string}
|
|
13239
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
13240
|
+
*/
|
|
13241
|
+
'processGroups'?: string | null;
|
|
13242
|
+
/**
|
|
13243
|
+
* The current updateState for the cluster
|
|
13244
|
+
* @type {string}
|
|
13245
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
13246
|
+
*/
|
|
13247
|
+
'updateState'?: ManagedClusterUpdatePreferencesUpdateStateV3 | null;
|
|
13248
|
+
/**
|
|
13249
|
+
* The mail id to which new releases will be notified
|
|
13250
|
+
* @type {string}
|
|
13251
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
13252
|
+
*/
|
|
13253
|
+
'notificationEmail'?: string | null;
|
|
13254
|
+
}
|
|
13255
|
+
|
|
13256
|
+
export const ManagedClusterUpdatePreferencesUpdateStateV3 = {
|
|
13257
|
+
Auto: 'AUTO',
|
|
13258
|
+
Disabled: 'DISABLED'
|
|
13259
|
+
} as const;
|
|
13260
|
+
|
|
13261
|
+
export type ManagedClusterUpdatePreferencesUpdateStateV3 = typeof ManagedClusterUpdatePreferencesUpdateStateV3[keyof typeof ManagedClusterUpdatePreferencesUpdateStateV3];
|
|
13262
|
+
|
|
13131
13263
|
/**
|
|
13132
13264
|
*
|
|
13133
13265
|
* @export
|
|
@@ -15879,6 +16011,12 @@ export interface PendingApproval {
|
|
|
15879
16011
|
* @memberof PendingApproval
|
|
15880
16012
|
*/
|
|
15881
16013
|
'privilegeLevel'?: string | null;
|
|
16014
|
+
/**
|
|
16015
|
+
*
|
|
16016
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
16017
|
+
* @memberof PendingApproval
|
|
16018
|
+
*/
|
|
16019
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
15882
16020
|
}
|
|
15883
16021
|
|
|
15884
16022
|
|
|
@@ -15897,6 +16035,35 @@ export const PendingApprovalAction = {
|
|
|
15897
16035
|
export type PendingApprovalAction = typeof PendingApprovalAction[keyof typeof PendingApprovalAction];
|
|
15898
16036
|
|
|
15899
16037
|
|
|
16038
|
+
/**
|
|
16039
|
+
* The maximum duration for which the access is permitted.
|
|
16040
|
+
* @export
|
|
16041
|
+
* @interface PendingApprovalMaxPermittedAccessDuration
|
|
16042
|
+
*/
|
|
16043
|
+
export interface PendingApprovalMaxPermittedAccessDuration {
|
|
16044
|
+
/**
|
|
16045
|
+
* The numeric value of the duration.
|
|
16046
|
+
* @type {number}
|
|
16047
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
16048
|
+
*/
|
|
16049
|
+
'value'?: number;
|
|
16050
|
+
/**
|
|
16051
|
+
* The time unit for the duration.
|
|
16052
|
+
* @type {string}
|
|
16053
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
16054
|
+
*/
|
|
16055
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationTimeUnitV3;
|
|
16056
|
+
}
|
|
16057
|
+
|
|
16058
|
+
export const PendingApprovalMaxPermittedAccessDurationTimeUnitV3 = {
|
|
16059
|
+
Hours: 'HOURS',
|
|
16060
|
+
Days: 'DAYS',
|
|
16061
|
+
Weeks: 'WEEKS',
|
|
16062
|
+
Months: 'MONTHS'
|
|
16063
|
+
} as const;
|
|
16064
|
+
|
|
16065
|
+
export type PendingApprovalMaxPermittedAccessDurationTimeUnitV3 = typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3[keyof typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3];
|
|
16066
|
+
|
|
15900
16067
|
/**
|
|
15901
16068
|
* Access item owner\'s identity.
|
|
15902
16069
|
* @export
|
|
@@ -17276,6 +17443,18 @@ export interface Requestability {
|
|
|
17276
17443
|
* @memberof Requestability
|
|
17277
17444
|
*/
|
|
17278
17445
|
'reauthorizationRequired'?: boolean | null;
|
|
17446
|
+
/**
|
|
17447
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
17448
|
+
* @type {boolean}
|
|
17449
|
+
* @memberof Requestability
|
|
17450
|
+
*/
|
|
17451
|
+
'requireEndDate'?: boolean | null;
|
|
17452
|
+
/**
|
|
17453
|
+
*
|
|
17454
|
+
* @type {AccessDuration}
|
|
17455
|
+
* @memberof Requestability
|
|
17456
|
+
*/
|
|
17457
|
+
'maxPermittedAccessDuration'?: AccessDuration | null;
|
|
17279
17458
|
/**
|
|
17280
17459
|
* List describing the steps involved in approving the request.
|
|
17281
17460
|
* @type {Array<AccessProfileApprovalScheme>}
|
|
@@ -17307,6 +17486,18 @@ export interface RequestabilityForRole {
|
|
|
17307
17486
|
* @memberof RequestabilityForRole
|
|
17308
17487
|
*/
|
|
17309
17488
|
'reauthorizationRequired'?: boolean | null;
|
|
17489
|
+
/**
|
|
17490
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
17491
|
+
* @type {boolean}
|
|
17492
|
+
* @memberof RequestabilityForRole
|
|
17493
|
+
*/
|
|
17494
|
+
'requireEndDate'?: boolean;
|
|
17495
|
+
/**
|
|
17496
|
+
*
|
|
17497
|
+
* @type {AccessDuration}
|
|
17498
|
+
* @memberof RequestabilityForRole
|
|
17499
|
+
*/
|
|
17500
|
+
'maxPermittedAccessDuration'?: AccessDuration | null;
|
|
17310
17501
|
/**
|
|
17311
17502
|
* List describing the steps in approving the request
|
|
17312
17503
|
* @type {Array<ApprovalSchemeForRole>}
|
|
@@ -25538,10 +25729,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25538
25729
|
// oauth required
|
|
25539
25730
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25540
25731
|
|
|
25541
|
-
// authentication applicationAuth required
|
|
25542
|
-
// oauth required
|
|
25543
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25544
|
-
|
|
25545
25732
|
|
|
25546
25733
|
|
|
25547
25734
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25587,10 +25774,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25587
25774
|
// oauth required
|
|
25588
25775
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25589
25776
|
|
|
25590
|
-
// authentication applicationAuth required
|
|
25591
|
-
// oauth required
|
|
25592
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25593
|
-
|
|
25594
25777
|
|
|
25595
25778
|
|
|
25596
25779
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -25632,10 +25815,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25632
25815
|
// oauth required
|
|
25633
25816
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25634
25817
|
|
|
25635
|
-
// authentication applicationAuth required
|
|
25636
|
-
// oauth required
|
|
25637
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25638
|
-
|
|
25639
25818
|
|
|
25640
25819
|
|
|
25641
25820
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25681,10 +25860,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25681
25860
|
// oauth required
|
|
25682
25861
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25683
25862
|
|
|
25684
|
-
// authentication applicationAuth required
|
|
25685
|
-
// oauth required
|
|
25686
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25687
|
-
|
|
25688
25863
|
|
|
25689
25864
|
|
|
25690
25865
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -25732,10 +25907,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25732
25907
|
// oauth required
|
|
25733
25908
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25734
25909
|
|
|
25735
|
-
// authentication applicationAuth required
|
|
25736
|
-
// oauth required
|
|
25737
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25738
|
-
|
|
25739
25910
|
if (limit !== undefined) {
|
|
25740
25911
|
localVarQueryParameter['limit'] = limit;
|
|
25741
25912
|
}
|
|
@@ -25802,10 +25973,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25802
25973
|
// oauth required
|
|
25803
25974
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25804
25975
|
|
|
25805
|
-
// authentication applicationAuth required
|
|
25806
|
-
// oauth required
|
|
25807
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25808
|
-
|
|
25809
25976
|
if (forSubadmin !== undefined) {
|
|
25810
25977
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
25811
25978
|
}
|
|
@@ -25883,10 +26050,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25883
26050
|
// oauth required
|
|
25884
26051
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25885
26052
|
|
|
25886
|
-
// authentication applicationAuth required
|
|
25887
|
-
// oauth required
|
|
25888
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25889
|
-
|
|
25890
26053
|
|
|
25891
26054
|
|
|
25892
26055
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -26461,11 +26624,11 @@ export const AccessRequestApprovalsApiAxiosParamCreator = function (configuratio
|
|
|
26461
26624
|
|
|
26462
26625
|
// authentication userAuth required
|
|
26463
26626
|
// oauth required
|
|
26464
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26627
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26465
26628
|
|
|
26466
26629
|
// authentication userAuth required
|
|
26467
26630
|
// oauth required
|
|
26468
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26631
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26469
26632
|
|
|
26470
26633
|
|
|
26471
26634
|
|
|
@@ -26693,11 +26856,11 @@ export const AccessRequestApprovalsApiAxiosParamCreator = function (configuratio
|
|
|
26693
26856
|
|
|
26694
26857
|
// authentication userAuth required
|
|
26695
26858
|
// oauth required
|
|
26696
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26859
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26697
26860
|
|
|
26698
26861
|
// authentication userAuth required
|
|
26699
26862
|
// oauth required
|
|
26700
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26863
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26701
26864
|
|
|
26702
26865
|
|
|
26703
26866
|
|
|
@@ -27294,7 +27457,7 @@ export const AccessRequestsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
27294
27457
|
* @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.
|
|
27295
27458
|
* @param {number} [limit] Max number of results to return.
|
|
27296
27459
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
27297
|
-
* @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,
|
|
27460
|
+
* @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*
|
|
27298
27461
|
* @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**
|
|
27299
27462
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
27300
27463
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -27474,7 +27637,7 @@ export const AccessRequestsApiFp = function(configuration?: Configuration) {
|
|
|
27474
27637
|
* @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.
|
|
27475
27638
|
* @param {number} [limit] Max number of results to return.
|
|
27476
27639
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
27477
|
-
* @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,
|
|
27640
|
+
* @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*
|
|
27478
27641
|
* @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**
|
|
27479
27642
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
27480
27643
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -27645,7 +27808,7 @@ export interface AccessRequestsApiListAccessRequestStatusRequest {
|
|
|
27645
27808
|
readonly offset?: number
|
|
27646
27809
|
|
|
27647
27810
|
/**
|
|
27648
|
-
* 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,
|
|
27811
|
+
* 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*
|
|
27649
27812
|
* @type {string}
|
|
27650
27813
|
* @memberof AccessRequestsApiListAccessRequestStatus
|
|
27651
27814
|
*/
|
|
@@ -28103,6 +28266,10 @@ export const AccountUsagesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
28103
28266
|
// oauth required
|
|
28104
28267
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28105
28268
|
|
|
28269
|
+
// authentication applicationAuth required
|
|
28270
|
+
// oauth required
|
|
28271
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28272
|
+
|
|
28106
28273
|
if (limit !== undefined) {
|
|
28107
28274
|
localVarQueryParameter['limit'] = limit;
|
|
28108
28275
|
}
|
|
@@ -28280,6 +28447,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28280
28447
|
// oauth required
|
|
28281
28448
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28282
28449
|
|
|
28450
|
+
// authentication applicationAuth required
|
|
28451
|
+
// oauth required
|
|
28452
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28453
|
+
|
|
28283
28454
|
|
|
28284
28455
|
|
|
28285
28456
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28325,6 +28496,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28325
28496
|
// oauth required
|
|
28326
28497
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28327
28498
|
|
|
28499
|
+
// authentication applicationAuth required
|
|
28500
|
+
// oauth required
|
|
28501
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28502
|
+
|
|
28328
28503
|
|
|
28329
28504
|
|
|
28330
28505
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28370,6 +28545,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28370
28545
|
// oauth required
|
|
28371
28546
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28372
28547
|
|
|
28548
|
+
// authentication applicationAuth required
|
|
28549
|
+
// oauth required
|
|
28550
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28551
|
+
|
|
28373
28552
|
|
|
28374
28553
|
|
|
28375
28554
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28418,6 +28597,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28418
28597
|
// oauth required
|
|
28419
28598
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28420
28599
|
|
|
28600
|
+
// authentication applicationAuth required
|
|
28601
|
+
// oauth required
|
|
28602
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28603
|
+
|
|
28421
28604
|
|
|
28422
28605
|
|
|
28423
28606
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28463,6 +28646,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28463
28646
|
// oauth required
|
|
28464
28647
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28465
28648
|
|
|
28649
|
+
// authentication applicationAuth required
|
|
28650
|
+
// oauth required
|
|
28651
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28652
|
+
|
|
28466
28653
|
|
|
28467
28654
|
|
|
28468
28655
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28508,6 +28695,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28508
28695
|
// oauth required
|
|
28509
28696
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28510
28697
|
|
|
28698
|
+
// authentication applicationAuth required
|
|
28699
|
+
// oauth required
|
|
28700
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28701
|
+
|
|
28511
28702
|
if (limit !== undefined) {
|
|
28512
28703
|
localVarQueryParameter['limit'] = limit;
|
|
28513
28704
|
}
|
|
@@ -28564,6 +28755,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28564
28755
|
// oauth required
|
|
28565
28756
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28566
28757
|
|
|
28758
|
+
// authentication applicationAuth required
|
|
28759
|
+
// oauth required
|
|
28760
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28761
|
+
|
|
28567
28762
|
if (limit !== undefined) {
|
|
28568
28763
|
localVarQueryParameter['limit'] = limit;
|
|
28569
28764
|
}
|
|
@@ -28633,6 +28828,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28633
28828
|
// oauth required
|
|
28634
28829
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28635
28830
|
|
|
28831
|
+
// authentication applicationAuth required
|
|
28832
|
+
// oauth required
|
|
28833
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28834
|
+
|
|
28636
28835
|
|
|
28637
28836
|
|
|
28638
28837
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28678,6 +28877,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28678
28877
|
// oauth required
|
|
28679
28878
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28680
28879
|
|
|
28880
|
+
// authentication applicationAuth required
|
|
28881
|
+
// oauth required
|
|
28882
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28883
|
+
|
|
28681
28884
|
|
|
28682
28885
|
|
|
28683
28886
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28723,6 +28926,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28723
28926
|
// oauth required
|
|
28724
28927
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28725
28928
|
|
|
28929
|
+
// authentication applicationAuth required
|
|
28930
|
+
// oauth required
|
|
28931
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28932
|
+
|
|
28726
28933
|
|
|
28727
28934
|
|
|
28728
28935
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28771,6 +28978,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28771
28978
|
// oauth required
|
|
28772
28979
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28773
28980
|
|
|
28981
|
+
// authentication applicationAuth required
|
|
28982
|
+
// oauth required
|
|
28983
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28984
|
+
|
|
28774
28985
|
|
|
28775
28986
|
|
|
28776
28987
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -29607,6 +29818,10 @@ export const ApplicationDiscoveryApiAxiosParamCreator = function (configuration?
|
|
|
29607
29818
|
// oauth required
|
|
29608
29819
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
29609
29820
|
|
|
29821
|
+
// authentication applicationAuth required
|
|
29822
|
+
// oauth required
|
|
29823
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
29824
|
+
|
|
29610
29825
|
|
|
29611
29826
|
if (file !== undefined) {
|
|
29612
29827
|
localVarFormParams.append('file', file as any);
|
|
@@ -34521,7 +34736,7 @@ export const CertificationsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
34521
34736
|
};
|
|
34522
34737
|
},
|
|
34523
34738
|
/**
|
|
34524
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
34739
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
34525
34740
|
* @summary List identity campaign certifications
|
|
34526
34741
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
34527
34742
|
* @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.
|
|
@@ -34547,11 +34762,11 @@ export const CertificationsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
34547
34762
|
|
|
34548
34763
|
// authentication userAuth required
|
|
34549
34764
|
// oauth required
|
|
34550
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34765
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34551
34766
|
|
|
34552
34767
|
// authentication userAuth required
|
|
34553
34768
|
// oauth required
|
|
34554
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34769
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34555
34770
|
|
|
34556
34771
|
if (reviewerIdentity !== undefined) {
|
|
34557
34772
|
localVarQueryParameter['reviewer-identity'] = reviewerIdentity;
|
|
@@ -34664,11 +34879,11 @@ export const CertificationsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
34664
34879
|
|
|
34665
34880
|
// authentication userAuth required
|
|
34666
34881
|
// oauth required
|
|
34667
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34882
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34668
34883
|
|
|
34669
34884
|
// authentication userAuth required
|
|
34670
34885
|
// oauth required
|
|
34671
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34886
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34672
34887
|
|
|
34673
34888
|
|
|
34674
34889
|
|
|
@@ -34885,7 +35100,7 @@ export const CertificationsApiFp = function(configuration?: Configuration) {
|
|
|
34885
35100
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
34886
35101
|
},
|
|
34887
35102
|
/**
|
|
34888
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
35103
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
34889
35104
|
* @summary List identity campaign certifications
|
|
34890
35105
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
34891
35106
|
* @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.
|
|
@@ -35028,7 +35243,7 @@ export const CertificationsApiFactory = function (configuration?: Configuration,
|
|
|
35028
35243
|
return localVarFp.listIdentityAccessReviewItems(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.entitlements, requestParameters.accessProfiles, requestParameters.roles, axiosOptions).then((request) => request(axios, basePath));
|
|
35029
35244
|
},
|
|
35030
35245
|
/**
|
|
35031
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
35246
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
35032
35247
|
* @summary List identity campaign certifications
|
|
35033
35248
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
35034
35249
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -35524,7 +35739,7 @@ export class CertificationsApi extends BaseAPI {
|
|
|
35524
35739
|
}
|
|
35525
35740
|
|
|
35526
35741
|
/**
|
|
35527
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
35742
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
35528
35743
|
* @summary List identity campaign certifications
|
|
35529
35744
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
35530
35745
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -37841,6 +38056,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37841
38056
|
// oauth required
|
|
37842
38057
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37843
38058
|
|
|
38059
|
+
// authentication applicationAuth required
|
|
38060
|
+
// oauth required
|
|
38061
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38062
|
+
|
|
37844
38063
|
|
|
37845
38064
|
|
|
37846
38065
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -37882,6 +38101,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37882
38101
|
// oauth required
|
|
37883
38102
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37884
38103
|
|
|
38104
|
+
// authentication applicationAuth required
|
|
38105
|
+
// oauth required
|
|
38106
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38107
|
+
|
|
37885
38108
|
|
|
37886
38109
|
|
|
37887
38110
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37920,6 +38143,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37920
38143
|
// oauth required
|
|
37921
38144
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37922
38145
|
|
|
38146
|
+
// authentication applicationAuth required
|
|
38147
|
+
// oauth required
|
|
38148
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38149
|
+
|
|
37923
38150
|
|
|
37924
38151
|
|
|
37925
38152
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37958,6 +38185,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37958
38185
|
// oauth required
|
|
37959
38186
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37960
38187
|
|
|
38188
|
+
// authentication applicationAuth required
|
|
38189
|
+
// oauth required
|
|
38190
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38191
|
+
|
|
37961
38192
|
|
|
37962
38193
|
|
|
37963
38194
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37996,6 +38227,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37996
38227
|
// oauth required
|
|
37997
38228
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37998
38229
|
|
|
38230
|
+
// authentication applicationAuth required
|
|
38231
|
+
// oauth required
|
|
38232
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38233
|
+
|
|
37999
38234
|
|
|
38000
38235
|
|
|
38001
38236
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -38037,6 +38272,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38037
38272
|
// oauth required
|
|
38038
38273
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38039
38274
|
|
|
38275
|
+
// authentication applicationAuth required
|
|
38276
|
+
// oauth required
|
|
38277
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38278
|
+
|
|
38040
38279
|
|
|
38041
38280
|
|
|
38042
38281
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38081,6 +38320,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38081
38320
|
// oauth required
|
|
38082
38321
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38083
38322
|
|
|
38323
|
+
// authentication applicationAuth required
|
|
38324
|
+
// oauth required
|
|
38325
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38326
|
+
|
|
38084
38327
|
|
|
38085
38328
|
|
|
38086
38329
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38125,6 +38368,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38125
38368
|
// oauth required
|
|
38126
38369
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38127
38370
|
|
|
38371
|
+
// authentication applicationAuth required
|
|
38372
|
+
// oauth required
|
|
38373
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38374
|
+
|
|
38128
38375
|
|
|
38129
38376
|
|
|
38130
38377
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38169,6 +38416,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38169
38416
|
// oauth required
|
|
38170
38417
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38171
38418
|
|
|
38419
|
+
// authentication applicationAuth required
|
|
38420
|
+
// oauth required
|
|
38421
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38422
|
+
|
|
38172
38423
|
|
|
38173
38424
|
|
|
38174
38425
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38757,6 +39008,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
38757
39008
|
// oauth required
|
|
38758
39009
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38759
39010
|
|
|
39011
|
+
// authentication applicationAuth required
|
|
39012
|
+
// oauth required
|
|
39013
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39014
|
+
|
|
38760
39015
|
if (limit !== undefined) {
|
|
38761
39016
|
localVarQueryParameter['limit'] = limit;
|
|
38762
39017
|
}
|
|
@@ -39908,6 +40163,10 @@ export const LifecycleStatesApiAxiosParamCreator = function (configuration?: Con
|
|
|
39908
40163
|
// oauth required
|
|
39909
40164
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39910
40165
|
|
|
40166
|
+
// authentication applicationAuth required
|
|
40167
|
+
// oauth required
|
|
40168
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
40169
|
+
|
|
39911
40170
|
|
|
39912
40171
|
|
|
39913
40172
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -41987,6 +42246,10 @@ export const ManagedClientsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
41987
42246
|
// oauth required
|
|
41988
42247
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
41989
42248
|
|
|
42249
|
+
// authentication applicationAuth required
|
|
42250
|
+
// oauth required
|
|
42251
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
42252
|
+
|
|
41990
42253
|
|
|
41991
42254
|
|
|
41992
42255
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -42032,6 +42295,10 @@ export const ManagedClientsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
42032
42295
|
// oauth required
|
|
42033
42296
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
42034
42297
|
|
|
42298
|
+
// authentication applicationAuth required
|
|
42299
|
+
// oauth required
|
|
42300
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
42301
|
+
|
|
42035
42302
|
if (type !== undefined) {
|
|
42036
42303
|
localVarQueryParameter['type'] = type;
|
|
42037
42304
|
}
|
|
@@ -42078,6 +42345,10 @@ export const ManagedClientsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
42078
42345
|
// oauth required
|
|
42079
42346
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
42080
42347
|
|
|
42348
|
+
// authentication applicationAuth required
|
|
42349
|
+
// oauth required
|
|
42350
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
42351
|
+
|
|
42081
42352
|
if (offset !== undefined) {
|
|
42082
42353
|
localVarQueryParameter['offset'] = offset;
|
|
42083
42354
|
}
|
|
@@ -42707,7 +42978,7 @@ export const ManagedClustersApiAxiosParamCreator = function (configuration?: Con
|
|
|
42707
42978
|
* @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.
|
|
42708
42979
|
* @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.
|
|
42709
42980
|
* @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.
|
|
42710
|
-
* @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: **operational**: *eq*
|
|
42981
|
+
* @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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
42711
42982
|
* @param {*} [axiosOptions] Override http request option.
|
|
42712
42983
|
* @throws {RequiredError}
|
|
42713
42984
|
*/
|
|
@@ -42924,7 +43195,7 @@ export const ManagedClustersApiFp = function(configuration?: Configuration) {
|
|
|
42924
43195
|
* @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.
|
|
42925
43196
|
* @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.
|
|
42926
43197
|
* @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.
|
|
42927
|
-
* @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: **operational**: *eq*
|
|
43198
|
+
* @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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
42928
43199
|
* @param {*} [axiosOptions] Override http request option.
|
|
42929
43200
|
* @throws {RequiredError}
|
|
42930
43201
|
*/
|
|
@@ -43136,7 +43407,7 @@ export interface ManagedClustersApiGetManagedClustersRequest {
|
|
|
43136
43407
|
readonly count?: boolean
|
|
43137
43408
|
|
|
43138
43409
|
/**
|
|
43139
|
-
* 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: **operational**: *eq*
|
|
43410
|
+
* 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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
43140
43411
|
* @type {string}
|
|
43141
43412
|
* @memberof ManagedClustersApiGetManagedClusters
|
|
43142
43413
|
*/
|
|
@@ -43357,11 +43628,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43357
43628
|
|
|
43358
43629
|
// authentication userAuth required
|
|
43359
43630
|
// oauth required
|
|
43360
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43631
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43361
43632
|
|
|
43362
43633
|
// authentication userAuth required
|
|
43363
43634
|
// oauth required
|
|
43364
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43635
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43636
|
+
|
|
43637
|
+
// authentication applicationAuth required
|
|
43638
|
+
// oauth required
|
|
43639
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43365
43640
|
|
|
43366
43641
|
|
|
43367
43642
|
|
|
@@ -43407,6 +43682,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43407
43682
|
// oauth required
|
|
43408
43683
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43409
43684
|
|
|
43685
|
+
// authentication applicationAuth required
|
|
43686
|
+
// oauth required
|
|
43687
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43688
|
+
|
|
43410
43689
|
|
|
43411
43690
|
|
|
43412
43691
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -43451,6 +43730,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43451
43730
|
// oauth required
|
|
43452
43731
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43453
43732
|
|
|
43733
|
+
// authentication applicationAuth required
|
|
43734
|
+
// oauth required
|
|
43735
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43736
|
+
|
|
43454
43737
|
|
|
43455
43738
|
|
|
43456
43739
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -43493,11 +43776,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43493
43776
|
|
|
43494
43777
|
// authentication userAuth required
|
|
43495
43778
|
// oauth required
|
|
43496
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43779
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43497
43780
|
|
|
43498
43781
|
// authentication userAuth required
|
|
43499
43782
|
// oauth required
|
|
43500
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43783
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43784
|
+
|
|
43785
|
+
// authentication applicationAuth required
|
|
43786
|
+
// oauth required
|
|
43787
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43501
43788
|
|
|
43502
43789
|
|
|
43503
43790
|
|
|
@@ -43538,11 +43825,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43538
43825
|
|
|
43539
43826
|
// authentication userAuth required
|
|
43540
43827
|
// oauth required
|
|
43541
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43828
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43542
43829
|
|
|
43543
43830
|
// authentication userAuth required
|
|
43544
43831
|
// oauth required
|
|
43545
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43832
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43833
|
+
|
|
43834
|
+
// authentication applicationAuth required
|
|
43835
|
+
// oauth required
|
|
43836
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43546
43837
|
|
|
43547
43838
|
|
|
43548
43839
|
|
|
@@ -43579,11 +43870,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43579
43870
|
|
|
43580
43871
|
// authentication userAuth required
|
|
43581
43872
|
// oauth required
|
|
43582
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43873
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43583
43874
|
|
|
43584
43875
|
// authentication userAuth required
|
|
43585
43876
|
// oauth required
|
|
43586
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43877
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43878
|
+
|
|
43879
|
+
// authentication applicationAuth required
|
|
43880
|
+
// oauth required
|
|
43881
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43587
43882
|
|
|
43588
43883
|
|
|
43589
43884
|
|
|
@@ -43624,11 +43919,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43624
43919
|
|
|
43625
43920
|
// authentication userAuth required
|
|
43626
43921
|
// oauth required
|
|
43627
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43922
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43628
43923
|
|
|
43629
43924
|
// authentication userAuth required
|
|
43630
43925
|
// oauth required
|
|
43631
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43926
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43927
|
+
|
|
43928
|
+
// authentication applicationAuth required
|
|
43929
|
+
// oauth required
|
|
43930
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43632
43931
|
|
|
43633
43932
|
|
|
43634
43933
|
|
|
@@ -43670,11 +43969,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43670
43969
|
|
|
43671
43970
|
// authentication userAuth required
|
|
43672
43971
|
// oauth required
|
|
43673
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43972
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43674
43973
|
|
|
43675
43974
|
// authentication userAuth required
|
|
43676
43975
|
// oauth required
|
|
43677
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43976
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43977
|
+
|
|
43978
|
+
// authentication applicationAuth required
|
|
43979
|
+
// oauth required
|
|
43980
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43678
43981
|
|
|
43679
43982
|
|
|
43680
43983
|
|
|
@@ -43712,11 +44015,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43712
44015
|
|
|
43713
44016
|
// authentication userAuth required
|
|
43714
44017
|
// oauth required
|
|
43715
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44018
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43716
44019
|
|
|
43717
44020
|
// authentication userAuth required
|
|
43718
44021
|
// oauth required
|
|
43719
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44022
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44023
|
+
|
|
44024
|
+
// authentication applicationAuth required
|
|
44025
|
+
// oauth required
|
|
44026
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43720
44027
|
|
|
43721
44028
|
|
|
43722
44029
|
|
|
@@ -43754,11 +44061,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43754
44061
|
|
|
43755
44062
|
// authentication userAuth required
|
|
43756
44063
|
// oauth required
|
|
43757
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44064
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43758
44065
|
|
|
43759
44066
|
// authentication userAuth required
|
|
43760
44067
|
// oauth required
|
|
43761
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44068
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44069
|
+
|
|
44070
|
+
// authentication applicationAuth required
|
|
44071
|
+
// oauth required
|
|
44072
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43762
44073
|
|
|
43763
44074
|
|
|
43764
44075
|
|
|
@@ -43796,11 +44107,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43796
44107
|
|
|
43797
44108
|
// authentication userAuth required
|
|
43798
44109
|
// oauth required
|
|
43799
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44110
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43800
44111
|
|
|
43801
44112
|
// authentication userAuth required
|
|
43802
44113
|
// oauth required
|
|
43803
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44114
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44115
|
+
|
|
44116
|
+
// authentication applicationAuth required
|
|
44117
|
+
// oauth required
|
|
44118
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43804
44119
|
|
|
43805
44120
|
|
|
43806
44121
|
|
|
@@ -43838,11 +44153,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43838
44153
|
|
|
43839
44154
|
// authentication userAuth required
|
|
43840
44155
|
// oauth required
|
|
43841
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44156
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43842
44157
|
|
|
43843
44158
|
// authentication userAuth required
|
|
43844
44159
|
// oauth required
|
|
43845
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44160
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44161
|
+
|
|
44162
|
+
// authentication applicationAuth required
|
|
44163
|
+
// oauth required
|
|
44164
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43846
44165
|
|
|
43847
44166
|
|
|
43848
44167
|
|
|
@@ -43933,6 +44252,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43933
44252
|
// oauth required
|
|
43934
44253
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43935
44254
|
|
|
44255
|
+
// authentication applicationAuth required
|
|
44256
|
+
// oauth required
|
|
44257
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44258
|
+
|
|
43936
44259
|
|
|
43937
44260
|
|
|
43938
44261
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -43969,11 +44292,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43969
44292
|
|
|
43970
44293
|
// authentication userAuth required
|
|
43971
44294
|
// oauth required
|
|
43972
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44295
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43973
44296
|
|
|
43974
44297
|
// authentication userAuth required
|
|
43975
44298
|
// oauth required
|
|
43976
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44299
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44300
|
+
|
|
44301
|
+
// authentication applicationAuth required
|
|
44302
|
+
// oauth required
|
|
44303
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43977
44304
|
|
|
43978
44305
|
|
|
43979
44306
|
|
|
@@ -44011,11 +44338,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44011
44338
|
|
|
44012
44339
|
// authentication userAuth required
|
|
44013
44340
|
// oauth required
|
|
44014
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44341
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44015
44342
|
|
|
44016
44343
|
// authentication userAuth required
|
|
44017
44344
|
// oauth required
|
|
44018
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44345
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44346
|
+
|
|
44347
|
+
// authentication applicationAuth required
|
|
44348
|
+
// oauth required
|
|
44349
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44019
44350
|
|
|
44020
44351
|
|
|
44021
44352
|
|
|
@@ -44059,6 +44390,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44059
44390
|
// oauth required
|
|
44060
44391
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44061
44392
|
|
|
44393
|
+
// authentication applicationAuth required
|
|
44394
|
+
// oauth required
|
|
44395
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44396
|
+
|
|
44062
44397
|
|
|
44063
44398
|
|
|
44064
44399
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44101,6 +44436,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44101
44436
|
// oauth required
|
|
44102
44437
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44103
44438
|
|
|
44439
|
+
// authentication applicationAuth required
|
|
44440
|
+
// oauth required
|
|
44441
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44442
|
+
|
|
44104
44443
|
|
|
44105
44444
|
|
|
44106
44445
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44147,6 +44486,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44147
44486
|
// oauth required
|
|
44148
44487
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44149
44488
|
|
|
44489
|
+
// authentication applicationAuth required
|
|
44490
|
+
// oauth required
|
|
44491
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44492
|
+
|
|
44150
44493
|
|
|
44151
44494
|
|
|
44152
44495
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44189,6 +44532,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44189
44532
|
// oauth required
|
|
44190
44533
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44191
44534
|
|
|
44535
|
+
// authentication applicationAuth required
|
|
44536
|
+
// oauth required
|
|
44537
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44538
|
+
|
|
44192
44539
|
|
|
44193
44540
|
|
|
44194
44541
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44231,6 +44578,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44231
44578
|
// oauth required
|
|
44232
44579
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44233
44580
|
|
|
44581
|
+
// authentication applicationAuth required
|
|
44582
|
+
// oauth required
|
|
44583
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44584
|
+
|
|
44234
44585
|
|
|
44235
44586
|
|
|
44236
44587
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44277,6 +44628,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44277
44628
|
// oauth required
|
|
44278
44629
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44279
44630
|
|
|
44631
|
+
// authentication applicationAuth required
|
|
44632
|
+
// oauth required
|
|
44633
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44634
|
+
|
|
44280
44635
|
|
|
44281
44636
|
if (data !== undefined) {
|
|
44282
44637
|
localVarFormParams.append('data', data as any);
|
|
@@ -44328,6 +44683,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44328
44683
|
// oauth required
|
|
44329
44684
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44330
44685
|
|
|
44686
|
+
// authentication applicationAuth required
|
|
44687
|
+
// oauth required
|
|
44688
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44689
|
+
|
|
44331
44690
|
if (requestedFor !== undefined) {
|
|
44332
44691
|
localVarQueryParameter['requested-for'] = requestedFor;
|
|
44333
44692
|
}
|
|
@@ -44395,6 +44754,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44395
44754
|
// oauth required
|
|
44396
44755
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44397
44756
|
|
|
44757
|
+
// authentication applicationAuth required
|
|
44758
|
+
// oauth required
|
|
44759
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44760
|
+
|
|
44398
44761
|
if (limit !== undefined) {
|
|
44399
44762
|
localVarQueryParameter['limit'] = limit;
|
|
44400
44763
|
}
|
|
@@ -44461,6 +44824,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44461
44824
|
// oauth required
|
|
44462
44825
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44463
44826
|
|
|
44827
|
+
// authentication applicationAuth required
|
|
44828
|
+
// oauth required
|
|
44829
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44830
|
+
|
|
44464
44831
|
if (limit !== undefined) {
|
|
44465
44832
|
localVarQueryParameter['limit'] = limit;
|
|
44466
44833
|
}
|
|
@@ -44529,6 +44896,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44529
44896
|
// oauth required
|
|
44530
44897
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44531
44898
|
|
|
44899
|
+
// authentication applicationAuth required
|
|
44900
|
+
// oauth required
|
|
44901
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44902
|
+
|
|
44532
44903
|
if (limit !== undefined) {
|
|
44533
44904
|
localVarQueryParameter['limit'] = limit;
|
|
44534
44905
|
}
|
|
@@ -44644,11 +45015,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44644
45015
|
|
|
44645
45016
|
// authentication userAuth required
|
|
44646
45017
|
// oauth required
|
|
44647
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45018
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44648
45019
|
|
|
44649
45020
|
// authentication userAuth required
|
|
44650
45021
|
// oauth required
|
|
44651
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45022
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45023
|
+
|
|
45024
|
+
// authentication applicationAuth required
|
|
45025
|
+
// oauth required
|
|
45026
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44652
45027
|
|
|
44653
45028
|
|
|
44654
45029
|
|
|
@@ -44692,11 +45067,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44692
45067
|
|
|
44693
45068
|
// authentication userAuth required
|
|
44694
45069
|
// oauth required
|
|
44695
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45070
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44696
45071
|
|
|
44697
45072
|
// authentication userAuth required
|
|
44698
45073
|
// oauth required
|
|
44699
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45074
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45075
|
+
|
|
45076
|
+
// authentication applicationAuth required
|
|
45077
|
+
// oauth required
|
|
45078
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44700
45079
|
|
|
44701
45080
|
|
|
44702
45081
|
|
|
@@ -46780,6 +47159,10 @@ export const OAuthClientsApiAxiosParamCreator = function (configuration?: Config
|
|
|
46780
47159
|
// oauth required
|
|
46781
47160
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46782
47161
|
|
|
47162
|
+
// authentication applicationAuth required
|
|
47163
|
+
// oauth required
|
|
47164
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47165
|
+
|
|
46783
47166
|
|
|
46784
47167
|
|
|
46785
47168
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -47204,6 +47587,10 @@ export const PasswordConfigurationApiAxiosParamCreator = function (configuration
|
|
|
47204
47587
|
// oauth required
|
|
47205
47588
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47206
47589
|
|
|
47590
|
+
// authentication applicationAuth required
|
|
47591
|
+
// oauth required
|
|
47592
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47593
|
+
|
|
47207
47594
|
|
|
47208
47595
|
|
|
47209
47596
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -47245,6 +47632,10 @@ export const PasswordConfigurationApiAxiosParamCreator = function (configuration
|
|
|
47245
47632
|
// oauth required
|
|
47246
47633
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47247
47634
|
|
|
47635
|
+
// authentication applicationAuth required
|
|
47636
|
+
// oauth required
|
|
47637
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47638
|
+
|
|
47248
47639
|
|
|
47249
47640
|
|
|
47250
47641
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -47286,6 +47677,10 @@ export const PasswordConfigurationApiAxiosParamCreator = function (configuration
|
|
|
47286
47677
|
// oauth required
|
|
47287
47678
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47288
47679
|
|
|
47680
|
+
// authentication applicationAuth required
|
|
47681
|
+
// oauth required
|
|
47682
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47683
|
+
|
|
47289
47684
|
|
|
47290
47685
|
|
|
47291
47686
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -47742,6 +48137,14 @@ export const PasswordManagementApiAxiosParamCreator = function (configuration?:
|
|
|
47742
48137
|
const localVarHeaderParameter = {} as any;
|
|
47743
48138
|
const localVarQueryParameter = {} as any;
|
|
47744
48139
|
|
|
48140
|
+
// authentication userAuth required
|
|
48141
|
+
// oauth required
|
|
48142
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48143
|
+
|
|
48144
|
+
// authentication userAuth required
|
|
48145
|
+
// oauth required
|
|
48146
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48147
|
+
|
|
47745
48148
|
// authentication applicationAuth required
|
|
47746
48149
|
// oauth required
|
|
47747
48150
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
@@ -47782,6 +48185,14 @@ export const PasswordManagementApiAxiosParamCreator = function (configuration?:
|
|
|
47782
48185
|
const localVarHeaderParameter = {} as any;
|
|
47783
48186
|
const localVarQueryParameter = {} as any;
|
|
47784
48187
|
|
|
48188
|
+
// authentication userAuth required
|
|
48189
|
+
// oauth required
|
|
48190
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48191
|
+
|
|
48192
|
+
// authentication userAuth required
|
|
48193
|
+
// oauth required
|
|
48194
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48195
|
+
|
|
47785
48196
|
// authentication applicationAuth required
|
|
47786
48197
|
// oauth required
|
|
47787
48198
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
@@ -48103,6 +48514,10 @@ export const PasswordPoliciesApiAxiosParamCreator = function (configuration?: Co
|
|
|
48103
48514
|
// oauth required
|
|
48104
48515
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48105
48516
|
|
|
48517
|
+
// authentication applicationAuth required
|
|
48518
|
+
// oauth required
|
|
48519
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
48520
|
+
|
|
48106
48521
|
|
|
48107
48522
|
|
|
48108
48523
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -48144,6 +48559,10 @@ export const PasswordPoliciesApiAxiosParamCreator = function (configuration?: Co
|
|
|
48144
48559
|
// oauth required
|
|
48145
48560
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48146
48561
|
|
|
48562
|
+
// authentication applicationAuth required
|
|
48563
|
+
// oauth required
|
|
48564
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
48565
|
+
|
|
48147
48566
|
if (limit !== undefined) {
|
|
48148
48567
|
localVarQueryParameter['limit'] = limit;
|
|
48149
48568
|
}
|
|
@@ -48640,6 +49059,10 @@ export const PasswordSyncGroupsApiAxiosParamCreator = function (configuration?:
|
|
|
48640
49059
|
// oauth required
|
|
48641
49060
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48642
49061
|
|
|
49062
|
+
// authentication applicationAuth required
|
|
49063
|
+
// oauth required
|
|
49064
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
49065
|
+
|
|
48643
49066
|
|
|
48644
49067
|
|
|
48645
49068
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -48681,6 +49104,10 @@ export const PasswordSyncGroupsApiAxiosParamCreator = function (configuration?:
|
|
|
48681
49104
|
// oauth required
|
|
48682
49105
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48683
49106
|
|
|
49107
|
+
// authentication applicationAuth required
|
|
49108
|
+
// oauth required
|
|
49109
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
49110
|
+
|
|
48684
49111
|
if (limit !== undefined) {
|
|
48685
49112
|
localVarQueryParameter['limit'] = limit;
|
|
48686
49113
|
}
|
|
@@ -49969,6 +50396,10 @@ export const ReportsDataExtractionApiAxiosParamCreator = function (configuration
|
|
|
49969
50396
|
// oauth required
|
|
49970
50397
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
49971
50398
|
|
|
50399
|
+
// authentication applicationAuth required
|
|
50400
|
+
// oauth required
|
|
50401
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50402
|
+
|
|
49972
50403
|
if (fileFormat !== undefined) {
|
|
49973
50404
|
localVarQueryParameter['fileFormat'] = fileFormat;
|
|
49974
50405
|
}
|
|
@@ -50024,6 +50455,10 @@ export const ReportsDataExtractionApiAxiosParamCreator = function (configuration
|
|
|
50024
50455
|
// oauth required
|
|
50025
50456
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50026
50457
|
|
|
50458
|
+
// authentication applicationAuth required
|
|
50459
|
+
// oauth required
|
|
50460
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50461
|
+
|
|
50027
50462
|
if (completed !== undefined) {
|
|
50028
50463
|
localVarQueryParameter['completed'] = completed;
|
|
50029
50464
|
}
|
|
@@ -50766,6 +51201,10 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
50766
51201
|
// oauth required
|
|
50767
51202
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50768
51203
|
|
|
51204
|
+
// authentication applicationAuth required
|
|
51205
|
+
// oauth required
|
|
51206
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51207
|
+
|
|
50769
51208
|
|
|
50770
51209
|
|
|
50771
51210
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50813,6 +51252,10 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
50813
51252
|
// oauth required
|
|
50814
51253
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50815
51254
|
|
|
51255
|
+
// authentication applicationAuth required
|
|
51256
|
+
// oauth required
|
|
51257
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51258
|
+
|
|
50816
51259
|
if (limit !== undefined) {
|
|
50817
51260
|
localVarQueryParameter['limit'] = limit;
|
|
50818
51261
|
}
|
|
@@ -50879,6 +51322,10 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
50879
51322
|
// oauth required
|
|
50880
51323
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50881
51324
|
|
|
51325
|
+
// authentication applicationAuth required
|
|
51326
|
+
// oauth required
|
|
51327
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51328
|
+
|
|
50882
51329
|
if (forSubadmin !== undefined) {
|
|
50883
51330
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
50884
51331
|
}
|
|
@@ -51624,6 +52071,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51624
52071
|
// oauth required
|
|
51625
52072
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51626
52073
|
|
|
52074
|
+
// authentication applicationAuth required
|
|
52075
|
+
// oauth required
|
|
52076
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52077
|
+
|
|
51627
52078
|
|
|
51628
52079
|
|
|
51629
52080
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51666,6 +52117,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51666
52117
|
// oauth required
|
|
51667
52118
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51668
52119
|
|
|
52120
|
+
// authentication applicationAuth required
|
|
52121
|
+
// oauth required
|
|
52122
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52123
|
+
|
|
51669
52124
|
|
|
51670
52125
|
|
|
51671
52126
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51704,6 +52159,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51704
52159
|
// oauth required
|
|
51705
52160
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51706
52161
|
|
|
52162
|
+
// authentication applicationAuth required
|
|
52163
|
+
// oauth required
|
|
52164
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52165
|
+
|
|
51707
52166
|
|
|
51708
52167
|
|
|
51709
52168
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51830,6 +52289,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51830
52289
|
// oauth required
|
|
51831
52290
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51832
52291
|
|
|
52292
|
+
// authentication applicationAuth required
|
|
52293
|
+
// oauth required
|
|
52294
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52295
|
+
|
|
51833
52296
|
|
|
51834
52297
|
|
|
51835
52298
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51872,6 +52335,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51872
52335
|
// oauth required
|
|
51873
52336
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51874
52337
|
|
|
52338
|
+
// authentication applicationAuth required
|
|
52339
|
+
// oauth required
|
|
52340
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52341
|
+
|
|
51875
52342
|
|
|
51876
52343
|
|
|
51877
52344
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -52121,6 +52588,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
52121
52588
|
// oauth required
|
|
52122
52589
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52123
52590
|
|
|
52591
|
+
// authentication applicationAuth required
|
|
52592
|
+
// oauth required
|
|
52593
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52594
|
+
|
|
52124
52595
|
|
|
52125
52596
|
|
|
52126
52597
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -52160,6 +52631,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
52160
52631
|
// oauth required
|
|
52161
52632
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52162
52633
|
|
|
52634
|
+
// authentication applicationAuth required
|
|
52635
|
+
// oauth required
|
|
52636
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52637
|
+
|
|
52163
52638
|
|
|
52164
52639
|
|
|
52165
52640
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -52205,6 +52680,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
52205
52680
|
// oauth required
|
|
52206
52681
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52207
52682
|
|
|
52683
|
+
// authentication applicationAuth required
|
|
52684
|
+
// oauth required
|
|
52685
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52686
|
+
|
|
52208
52687
|
|
|
52209
52688
|
|
|
52210
52689
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -53221,6 +53700,10 @@ export const SODViolationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
53221
53700
|
// oauth required
|
|
53222
53701
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53223
53702
|
|
|
53703
|
+
// authentication applicationAuth required
|
|
53704
|
+
// oauth required
|
|
53705
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53706
|
+
|
|
53224
53707
|
|
|
53225
53708
|
|
|
53226
53709
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -53441,11 +53924,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53441
53924
|
|
|
53442
53925
|
// authentication userAuth required
|
|
53443
53926
|
// oauth required
|
|
53444
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53927
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53445
53928
|
|
|
53446
53929
|
// authentication userAuth required
|
|
53447
53930
|
// oauth required
|
|
53448
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53931
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53449
53932
|
|
|
53450
53933
|
|
|
53451
53934
|
|
|
@@ -53486,11 +53969,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53486
53969
|
|
|
53487
53970
|
// authentication userAuth required
|
|
53488
53971
|
// oauth required
|
|
53489
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53972
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53490
53973
|
|
|
53491
53974
|
// authentication userAuth required
|
|
53492
53975
|
// oauth required
|
|
53493
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53976
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53494
53977
|
|
|
53495
53978
|
|
|
53496
53979
|
|
|
@@ -53531,11 +54014,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53531
54014
|
|
|
53532
54015
|
// authentication userAuth required
|
|
53533
54016
|
// oauth required
|
|
53534
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54017
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53535
54018
|
|
|
53536
54019
|
// authentication userAuth required
|
|
53537
54020
|
// oauth required
|
|
53538
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54021
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53539
54022
|
|
|
53540
54023
|
|
|
53541
54024
|
|
|
@@ -53634,11 +54117,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53634
54117
|
|
|
53635
54118
|
// authentication userAuth required
|
|
53636
54119
|
// oauth required
|
|
53637
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54120
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53638
54121
|
|
|
53639
54122
|
// authentication userAuth required
|
|
53640
54123
|
// oauth required
|
|
53641
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54124
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53642
54125
|
|
|
53643
54126
|
|
|
53644
54127
|
|
|
@@ -54051,11 +54534,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54051
54534
|
|
|
54052
54535
|
// authentication userAuth required
|
|
54053
54536
|
// oauth required
|
|
54054
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54537
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54055
54538
|
|
|
54056
54539
|
// authentication userAuth required
|
|
54057
54540
|
// oauth required
|
|
54058
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54541
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54059
54542
|
|
|
54060
54543
|
|
|
54061
54544
|
|
|
@@ -54096,11 +54579,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54096
54579
|
|
|
54097
54580
|
// authentication userAuth required
|
|
54098
54581
|
// oauth required
|
|
54099
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54582
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54100
54583
|
|
|
54101
54584
|
// authentication userAuth required
|
|
54102
54585
|
// oauth required
|
|
54103
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54586
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54104
54587
|
|
|
54105
54588
|
|
|
54106
54589
|
|
|
@@ -54136,14 +54619,6 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54136
54619
|
const localVarHeaderParameter = {} as any;
|
|
54137
54620
|
const localVarQueryParameter = {} as any;
|
|
54138
54621
|
|
|
54139
|
-
// authentication userAuth required
|
|
54140
|
-
// oauth required
|
|
54141
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
54142
|
-
|
|
54143
|
-
// authentication userAuth required
|
|
54144
|
-
// oauth required
|
|
54145
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
54146
|
-
|
|
54147
54622
|
|
|
54148
54623
|
|
|
54149
54624
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -54180,11 +54655,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54180
54655
|
|
|
54181
54656
|
// authentication userAuth required
|
|
54182
54657
|
// oauth required
|
|
54183
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54658
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54184
54659
|
|
|
54185
54660
|
// authentication userAuth required
|
|
54186
54661
|
// oauth required
|
|
54187
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54662
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54188
54663
|
|
|
54189
54664
|
if (offset !== undefined) {
|
|
54190
54665
|
localVarQueryParameter['offset'] = offset;
|
|
@@ -54289,11 +54764,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54289
54764
|
|
|
54290
54765
|
// authentication userAuth required
|
|
54291
54766
|
// oauth required
|
|
54292
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54767
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54293
54768
|
|
|
54294
54769
|
// authentication userAuth required
|
|
54295
54770
|
// oauth required
|
|
54296
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54771
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54297
54772
|
|
|
54298
54773
|
|
|
54299
54774
|
|
|
@@ -54715,6 +55190,10 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
54715
55190
|
// oauth required
|
|
54716
55191
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54717
55192
|
|
|
55193
|
+
// authentication applicationAuth required
|
|
55194
|
+
// oauth required
|
|
55195
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
55196
|
+
|
|
54718
55197
|
if (offset !== undefined) {
|
|
54719
55198
|
localVarQueryParameter['offset'] = offset;
|
|
54720
55199
|
}
|
|
@@ -54771,6 +55250,10 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
54771
55250
|
// oauth required
|
|
54772
55251
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54773
55252
|
|
|
55253
|
+
// authentication applicationAuth required
|
|
55254
|
+
// oauth required
|
|
55255
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
55256
|
+
|
|
54774
55257
|
|
|
54775
55258
|
|
|
54776
55259
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -54836,7 +55319,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
54836
55319
|
};
|
|
54837
55320
|
},
|
|
54838
55321
|
/**
|
|
54839
|
-
* 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.
|
|
55322
|
+
* 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).
|
|
54840
55323
|
* @summary Perform search
|
|
54841
55324
|
* @param {Search} search
|
|
54842
55325
|
* @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.
|
|
@@ -54952,7 +55435,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
54952
55435
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
54953
55436
|
},
|
|
54954
55437
|
/**
|
|
54955
|
-
* 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.
|
|
55438
|
+
* 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).
|
|
54956
55439
|
* @summary Perform search
|
|
54957
55440
|
* @param {Search} search
|
|
54958
55441
|
* @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.
|
|
@@ -55008,7 +55491,7 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
|
|
|
55008
55491
|
return localVarFp.searchGet(requestParameters.index, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
55009
55492
|
},
|
|
55010
55493
|
/**
|
|
55011
|
-
* 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.
|
|
55494
|
+
* 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).
|
|
55012
55495
|
* @summary Perform search
|
|
55013
55496
|
* @param {SearchApiSearchPostRequest} requestParameters Request parameters.
|
|
55014
55497
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55169,7 +55652,7 @@ export class SearchApi extends BaseAPI {
|
|
|
55169
55652
|
}
|
|
55170
55653
|
|
|
55171
55654
|
/**
|
|
55172
|
-
* 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.
|
|
55655
|
+
* 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).
|
|
55173
55656
|
* @summary Perform search
|
|
55174
55657
|
* @param {SearchApiSearchPostRequest} requestParameters Request parameters.
|
|
55175
55658
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57305,6 +57788,10 @@ export const SourceUsagesApiAxiosParamCreator = function (configuration?: Config
|
|
|
57305
57788
|
// oauth required
|
|
57306
57789
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57307
57790
|
|
|
57791
|
+
// authentication applicationAuth required
|
|
57792
|
+
// oauth required
|
|
57793
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
57794
|
+
|
|
57308
57795
|
|
|
57309
57796
|
|
|
57310
57797
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -57351,6 +57838,10 @@ export const SourceUsagesApiAxiosParamCreator = function (configuration?: Config
|
|
|
57351
57838
|
// oauth required
|
|
57352
57839
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57353
57840
|
|
|
57841
|
+
// authentication applicationAuth required
|
|
57842
|
+
// oauth required
|
|
57843
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
57844
|
+
|
|
57354
57845
|
if (limit !== undefined) {
|
|
57355
57846
|
localVarQueryParameter['limit'] = limit;
|
|
57356
57847
|
}
|
|
@@ -57581,6 +58072,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57581
58072
|
// oauth required
|
|
57582
58073
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57583
58074
|
|
|
58075
|
+
// authentication applicationAuth required
|
|
58076
|
+
// oauth required
|
|
58077
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58078
|
+
|
|
57584
58079
|
|
|
57585
58080
|
|
|
57586
58081
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -57626,6 +58121,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57626
58121
|
// oauth required
|
|
57627
58122
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57628
58123
|
|
|
58124
|
+
// authentication applicationAuth required
|
|
58125
|
+
// oauth required
|
|
58126
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58127
|
+
|
|
57629
58128
|
if (provisionAsCsv !== undefined) {
|
|
57630
58129
|
localVarQueryParameter['provisionAsCsv'] = provisionAsCsv;
|
|
57631
58130
|
}
|
|
@@ -57773,6 +58272,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57773
58272
|
// oauth required
|
|
57774
58273
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57775
58274
|
|
|
58275
|
+
// authentication applicationAuth required
|
|
58276
|
+
// oauth required
|
|
58277
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58278
|
+
|
|
57776
58279
|
|
|
57777
58280
|
|
|
57778
58281
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -57813,11 +58316,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57813
58316
|
|
|
57814
58317
|
// authentication userAuth required
|
|
57815
58318
|
// oauth required
|
|
57816
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58319
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57817
58320
|
|
|
57818
58321
|
// authentication userAuth required
|
|
57819
58322
|
// oauth required
|
|
57820
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58323
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57821
58324
|
|
|
57822
58325
|
|
|
57823
58326
|
|
|
@@ -58000,6 +58503,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58000
58503
|
// oauth required
|
|
58001
58504
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58002
58505
|
|
|
58506
|
+
// authentication applicationAuth required
|
|
58507
|
+
// oauth required
|
|
58508
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58509
|
+
|
|
58003
58510
|
|
|
58004
58511
|
|
|
58005
58512
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -58042,6 +58549,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58042
58549
|
// oauth required
|
|
58043
58550
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58044
58551
|
|
|
58552
|
+
// authentication applicationAuth required
|
|
58553
|
+
// oauth required
|
|
58554
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58555
|
+
|
|
58045
58556
|
|
|
58046
58557
|
|
|
58047
58558
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -58084,6 +58595,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58084
58595
|
// oauth required
|
|
58085
58596
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58086
58597
|
|
|
58598
|
+
// authentication applicationAuth required
|
|
58599
|
+
// oauth required
|
|
58600
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58601
|
+
|
|
58087
58602
|
|
|
58088
58603
|
|
|
58089
58604
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -58124,11 +58639,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58124
58639
|
|
|
58125
58640
|
// authentication userAuth required
|
|
58126
58641
|
// oauth required
|
|
58127
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58642
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58128
58643
|
|
|
58129
58644
|
// authentication userAuth required
|
|
58130
58645
|
// oauth required
|
|
58131
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58646
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58132
58647
|
|
|
58133
58648
|
|
|
58134
58649
|
|
|
@@ -58564,6 +59079,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58564
59079
|
// oauth required
|
|
58565
59080
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58566
59081
|
|
|
59082
|
+
// authentication applicationAuth required
|
|
59083
|
+
// oauth required
|
|
59084
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
59085
|
+
|
|
58567
59086
|
|
|
58568
59087
|
|
|
58569
59088
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -58610,11 +59129,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58610
59129
|
|
|
58611
59130
|
// authentication userAuth required
|
|
58612
59131
|
// oauth required
|
|
58613
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59132
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58614
59133
|
|
|
58615
59134
|
// authentication userAuth required
|
|
58616
59135
|
// oauth required
|
|
58617
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59136
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58618
59137
|
|
|
58619
59138
|
|
|
58620
59139
|
|
|
@@ -58772,6 +59291,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58772
59291
|
// oauth required
|
|
58773
59292
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58774
59293
|
|
|
59294
|
+
// authentication applicationAuth required
|
|
59295
|
+
// oauth required
|
|
59296
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
59297
|
+
|
|
58775
59298
|
|
|
58776
59299
|
|
|
58777
59300
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -58818,11 +59341,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58818
59341
|
|
|
58819
59342
|
// authentication userAuth required
|
|
58820
59343
|
// oauth required
|
|
58821
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59344
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58822
59345
|
|
|
58823
59346
|
// authentication userAuth required
|
|
58824
59347
|
// oauth required
|
|
58825
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59348
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58826
59349
|
|
|
58827
59350
|
|
|
58828
59351
|
|
|
@@ -60442,6 +60965,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60442
60965
|
// oauth required
|
|
60443
60966
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60444
60967
|
|
|
60968
|
+
// authentication applicationAuth required
|
|
60969
|
+
// oauth required
|
|
60970
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
60971
|
+
|
|
60445
60972
|
|
|
60446
60973
|
|
|
60447
60974
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -60536,6 +61063,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60536
61063
|
// oauth required
|
|
60537
61064
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60538
61065
|
|
|
61066
|
+
// authentication applicationAuth required
|
|
61067
|
+
// oauth required
|
|
61068
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61069
|
+
|
|
60539
61070
|
|
|
60540
61071
|
|
|
60541
61072
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -60578,6 +61109,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60578
61109
|
// oauth required
|
|
60579
61110
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60580
61111
|
|
|
61112
|
+
// authentication applicationAuth required
|
|
61113
|
+
// oauth required
|
|
61114
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61115
|
+
|
|
60581
61116
|
if (limit !== undefined) {
|
|
60582
61117
|
localVarQueryParameter['limit'] = limit;
|
|
60583
61118
|
}
|
|
@@ -60640,6 +61175,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60640
61175
|
// oauth required
|
|
60641
61176
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60642
61177
|
|
|
61178
|
+
// authentication applicationAuth required
|
|
61179
|
+
// oauth required
|
|
61180
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61181
|
+
|
|
60643
61182
|
if (limit !== undefined) {
|
|
60644
61183
|
localVarQueryParameter['limit'] = limit;
|
|
60645
61184
|
}
|
|
@@ -60705,6 +61244,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60705
61244
|
// oauth required
|
|
60706
61245
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60707
61246
|
|
|
61247
|
+
// authentication applicationAuth required
|
|
61248
|
+
// oauth required
|
|
61249
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61250
|
+
|
|
60708
61251
|
|
|
60709
61252
|
|
|
60710
61253
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -60749,6 +61292,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60749
61292
|
// oauth required
|
|
60750
61293
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60751
61294
|
|
|
61295
|
+
// authentication applicationAuth required
|
|
61296
|
+
// oauth required
|
|
61297
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61298
|
+
|
|
60752
61299
|
|
|
60753
61300
|
|
|
60754
61301
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -61416,6 +61963,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61416
61963
|
// oauth required
|
|
61417
61964
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61418
61965
|
|
|
61966
|
+
// authentication applicationAuth required
|
|
61967
|
+
// oauth required
|
|
61968
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61969
|
+
|
|
61419
61970
|
|
|
61420
61971
|
|
|
61421
61972
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -61461,6 +62012,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61461
62012
|
// oauth required
|
|
61462
62013
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61463
62014
|
|
|
62015
|
+
// authentication applicationAuth required
|
|
62016
|
+
// oauth required
|
|
62017
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62018
|
+
|
|
61464
62019
|
|
|
61465
62020
|
|
|
61466
62021
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -61503,6 +62058,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61503
62058
|
// oauth required
|
|
61504
62059
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61505
62060
|
|
|
62061
|
+
// authentication applicationAuth required
|
|
62062
|
+
// oauth required
|
|
62063
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62064
|
+
|
|
61506
62065
|
|
|
61507
62066
|
|
|
61508
62067
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -61546,6 +62105,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61546
62105
|
// oauth required
|
|
61547
62106
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61548
62107
|
|
|
62108
|
+
// authentication applicationAuth required
|
|
62109
|
+
// oauth required
|
|
62110
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62111
|
+
|
|
61549
62112
|
if (offset !== undefined) {
|
|
61550
62113
|
localVarQueryParameter['offset'] = offset;
|
|
61551
62114
|
}
|
|
@@ -61609,6 +62172,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61609
62172
|
// oauth required
|
|
61610
62173
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61611
62174
|
|
|
62175
|
+
// authentication applicationAuth required
|
|
62176
|
+
// oauth required
|
|
62177
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62178
|
+
|
|
61612
62179
|
|
|
61613
62180
|
|
|
61614
62181
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -63390,6 +63957,10 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
63390
63957
|
// oauth required
|
|
63391
63958
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
63392
63959
|
|
|
63960
|
+
// authentication applicationAuth required
|
|
63961
|
+
// oauth required
|
|
63962
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
63963
|
+
|
|
63393
63964
|
|
|
63394
63965
|
|
|
63395
63966
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -64099,6 +64670,10 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
64099
64670
|
// oauth required
|
|
64100
64671
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
64101
64672
|
|
|
64673
|
+
// authentication applicationAuth required
|
|
64674
|
+
// oauth required
|
|
64675
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
64676
|
+
|
|
64102
64677
|
|
|
64103
64678
|
|
|
64104
64679
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|