sailpoint-api-client 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +2109 -201
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +995 -70
- package/dist/beta/api.js +2743 -397
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +206 -60
- package/dist/v2024/api.js +3283 -760
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +4215 -146
- package/dist/v2025/api.js +6582 -965
- 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 +176 -8
- package/dist/v3/api.js +1270 -281
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +1443 -288
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +6947 -444
- package/v2025/common.ts +2 -2
- package/v2025/package.json +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/README.md +2 -2
- package/v3/api.ts +667 -105
- 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
|
*
|
|
@@ -6381,6 +6422,12 @@ export interface CompletedApproval {
|
|
|
6381
6422
|
* @memberof CompletedApproval
|
|
6382
6423
|
*/
|
|
6383
6424
|
'privilegeLevel'?: string | null;
|
|
6425
|
+
/**
|
|
6426
|
+
*
|
|
6427
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
6428
|
+
* @memberof CompletedApproval
|
|
6429
|
+
*/
|
|
6430
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
6384
6431
|
}
|
|
6385
6432
|
|
|
6386
6433
|
|
|
@@ -12966,6 +13013,42 @@ export interface ManagedCluster {
|
|
|
12966
13013
|
* @memberof ManagedCluster
|
|
12967
13014
|
*/
|
|
12968
13015
|
'updatedAt'?: string | null;
|
|
13016
|
+
/**
|
|
13017
|
+
* The date/time this cluster was notified for the last release
|
|
13018
|
+
* @type {string}
|
|
13019
|
+
* @memberof ManagedCluster
|
|
13020
|
+
*/
|
|
13021
|
+
'lastReleaseNotifiedAt'?: string | null;
|
|
13022
|
+
/**
|
|
13023
|
+
*
|
|
13024
|
+
* @type {ManagedClusterUpdatePreferences}
|
|
13025
|
+
* @memberof ManagedCluster
|
|
13026
|
+
*/
|
|
13027
|
+
'updatePreferences'?: ManagedClusterUpdatePreferences;
|
|
13028
|
+
/**
|
|
13029
|
+
* The current installed release on the Managed cluster
|
|
13030
|
+
* @type {string}
|
|
13031
|
+
* @memberof ManagedCluster
|
|
13032
|
+
*/
|
|
13033
|
+
'currentInstalledReleaseVersion'?: string | null;
|
|
13034
|
+
/**
|
|
13035
|
+
* New available updates for the Managed cluster
|
|
13036
|
+
* @type {string}
|
|
13037
|
+
* @memberof ManagedCluster
|
|
13038
|
+
*/
|
|
13039
|
+
'updatePackage'?: string | null;
|
|
13040
|
+
/**
|
|
13041
|
+
* The time at which out of date notification was sent for the Managed cluster
|
|
13042
|
+
* @type {string}
|
|
13043
|
+
* @memberof ManagedCluster
|
|
13044
|
+
*/
|
|
13045
|
+
'isOutOfDateNotifiedAt'?: string | null;
|
|
13046
|
+
/**
|
|
13047
|
+
* The consolidated Health Status for the Managed cluster
|
|
13048
|
+
* @type {string}
|
|
13049
|
+
* @memberof ManagedCluster
|
|
13050
|
+
*/
|
|
13051
|
+
'consolidatedHealthIndicatorsStatus'?: ManagedClusterConsolidatedHealthIndicatorsStatusV3 | null;
|
|
12969
13052
|
}
|
|
12970
13053
|
|
|
12971
13054
|
export const ManagedClusterStatusV3 = {
|
|
@@ -12977,6 +13060,13 @@ export const ManagedClusterStatusV3 = {
|
|
|
12977
13060
|
} as const;
|
|
12978
13061
|
|
|
12979
13062
|
export type ManagedClusterStatusV3 = typeof ManagedClusterStatusV3[keyof typeof ManagedClusterStatusV3];
|
|
13063
|
+
export const ManagedClusterConsolidatedHealthIndicatorsStatusV3 = {
|
|
13064
|
+
Normal: 'NORMAL',
|
|
13065
|
+
Warning: 'WARNING',
|
|
13066
|
+
Error: 'ERROR'
|
|
13067
|
+
} as const;
|
|
13068
|
+
|
|
13069
|
+
export type ManagedClusterConsolidatedHealthIndicatorsStatusV3 = typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3[keyof typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3];
|
|
12980
13070
|
|
|
12981
13071
|
/**
|
|
12982
13072
|
* Managed Cluster Attributes for Cluster Configuration. Supported Cluster Types [sqsCluster, spConnectCluster]
|
|
@@ -13115,19 +13205,60 @@ export interface ManagedClusterRequest {
|
|
|
13115
13205
|
|
|
13116
13206
|
|
|
13117
13207
|
/**
|
|
13118
|
-
* The Type of Cluster
|
|
13208
|
+
* 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
13209
|
* @export
|
|
13120
13210
|
* @enum {string}
|
|
13121
13211
|
*/
|
|
13122
13212
|
|
|
13123
13213
|
export const ManagedClusterTypes = {
|
|
13124
13214
|
Idn: 'idn',
|
|
13125
|
-
Iai: 'iai'
|
|
13215
|
+
Iai: 'iai',
|
|
13216
|
+
SpConnectCluster: 'spConnectCluster',
|
|
13217
|
+
SqsCluster: 'sqsCluster',
|
|
13218
|
+
DasRc: 'das-rc',
|
|
13219
|
+
DasPc: 'das-pc',
|
|
13220
|
+
DasDc: 'das-dc',
|
|
13221
|
+
Pag: 'pag',
|
|
13222
|
+
DasAm: 'das-am',
|
|
13223
|
+
Standard: 'standard'
|
|
13126
13224
|
} as const;
|
|
13127
13225
|
|
|
13128
13226
|
export type ManagedClusterTypes = typeof ManagedClusterTypes[keyof typeof ManagedClusterTypes];
|
|
13129
13227
|
|
|
13130
13228
|
|
|
13229
|
+
/**
|
|
13230
|
+
* The preference for applying updates for the cluster
|
|
13231
|
+
* @export
|
|
13232
|
+
* @interface ManagedClusterUpdatePreferences
|
|
13233
|
+
*/
|
|
13234
|
+
export interface ManagedClusterUpdatePreferences {
|
|
13235
|
+
/**
|
|
13236
|
+
* The processGroups for updatePreferences
|
|
13237
|
+
* @type {string}
|
|
13238
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
13239
|
+
*/
|
|
13240
|
+
'processGroups'?: string | null;
|
|
13241
|
+
/**
|
|
13242
|
+
* The current updateState for the cluster
|
|
13243
|
+
* @type {string}
|
|
13244
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
13245
|
+
*/
|
|
13246
|
+
'updateState'?: ManagedClusterUpdatePreferencesUpdateStateV3 | null;
|
|
13247
|
+
/**
|
|
13248
|
+
* The mail id to which new releases will be notified
|
|
13249
|
+
* @type {string}
|
|
13250
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
13251
|
+
*/
|
|
13252
|
+
'notificationEmail'?: string | null;
|
|
13253
|
+
}
|
|
13254
|
+
|
|
13255
|
+
export const ManagedClusterUpdatePreferencesUpdateStateV3 = {
|
|
13256
|
+
Auto: 'AUTO',
|
|
13257
|
+
Disabled: 'DISABLED'
|
|
13258
|
+
} as const;
|
|
13259
|
+
|
|
13260
|
+
export type ManagedClusterUpdatePreferencesUpdateStateV3 = typeof ManagedClusterUpdatePreferencesUpdateStateV3[keyof typeof ManagedClusterUpdatePreferencesUpdateStateV3];
|
|
13261
|
+
|
|
13131
13262
|
/**
|
|
13132
13263
|
*
|
|
13133
13264
|
* @export
|
|
@@ -15879,6 +16010,12 @@ export interface PendingApproval {
|
|
|
15879
16010
|
* @memberof PendingApproval
|
|
15880
16011
|
*/
|
|
15881
16012
|
'privilegeLevel'?: string | null;
|
|
16013
|
+
/**
|
|
16014
|
+
*
|
|
16015
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
16016
|
+
* @memberof PendingApproval
|
|
16017
|
+
*/
|
|
16018
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
15882
16019
|
}
|
|
15883
16020
|
|
|
15884
16021
|
|
|
@@ -15897,6 +16034,35 @@ export const PendingApprovalAction = {
|
|
|
15897
16034
|
export type PendingApprovalAction = typeof PendingApprovalAction[keyof typeof PendingApprovalAction];
|
|
15898
16035
|
|
|
15899
16036
|
|
|
16037
|
+
/**
|
|
16038
|
+
* The maximum duration for which the access is permitted.
|
|
16039
|
+
* @export
|
|
16040
|
+
* @interface PendingApprovalMaxPermittedAccessDuration
|
|
16041
|
+
*/
|
|
16042
|
+
export interface PendingApprovalMaxPermittedAccessDuration {
|
|
16043
|
+
/**
|
|
16044
|
+
* The numeric value of the duration.
|
|
16045
|
+
* @type {number}
|
|
16046
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
16047
|
+
*/
|
|
16048
|
+
'value'?: number;
|
|
16049
|
+
/**
|
|
16050
|
+
* The time unit for the duration.
|
|
16051
|
+
* @type {string}
|
|
16052
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
16053
|
+
*/
|
|
16054
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationTimeUnitV3;
|
|
16055
|
+
}
|
|
16056
|
+
|
|
16057
|
+
export const PendingApprovalMaxPermittedAccessDurationTimeUnitV3 = {
|
|
16058
|
+
Hours: 'HOURS',
|
|
16059
|
+
Days: 'DAYS',
|
|
16060
|
+
Weeks: 'WEEKS',
|
|
16061
|
+
Months: 'MONTHS'
|
|
16062
|
+
} as const;
|
|
16063
|
+
|
|
16064
|
+
export type PendingApprovalMaxPermittedAccessDurationTimeUnitV3 = typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3[keyof typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3];
|
|
16065
|
+
|
|
15900
16066
|
/**
|
|
15901
16067
|
* Access item owner\'s identity.
|
|
15902
16068
|
* @export
|
|
@@ -17276,6 +17442,18 @@ export interface Requestability {
|
|
|
17276
17442
|
* @memberof Requestability
|
|
17277
17443
|
*/
|
|
17278
17444
|
'reauthorizationRequired'?: boolean | null;
|
|
17445
|
+
/**
|
|
17446
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
17447
|
+
* @type {boolean}
|
|
17448
|
+
* @memberof Requestability
|
|
17449
|
+
*/
|
|
17450
|
+
'requireEndDate'?: boolean | null;
|
|
17451
|
+
/**
|
|
17452
|
+
*
|
|
17453
|
+
* @type {AccessDuration}
|
|
17454
|
+
* @memberof Requestability
|
|
17455
|
+
*/
|
|
17456
|
+
'maxPermittedAccessDuration'?: AccessDuration | null;
|
|
17279
17457
|
/**
|
|
17280
17458
|
* List describing the steps involved in approving the request.
|
|
17281
17459
|
* @type {Array<AccessProfileApprovalScheme>}
|
|
@@ -25538,10 +25716,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25538
25716
|
// oauth required
|
|
25539
25717
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25540
25718
|
|
|
25541
|
-
// authentication applicationAuth required
|
|
25542
|
-
// oauth required
|
|
25543
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25544
|
-
|
|
25545
25719
|
|
|
25546
25720
|
|
|
25547
25721
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25587,10 +25761,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25587
25761
|
// oauth required
|
|
25588
25762
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25589
25763
|
|
|
25590
|
-
// authentication applicationAuth required
|
|
25591
|
-
// oauth required
|
|
25592
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25593
|
-
|
|
25594
25764
|
|
|
25595
25765
|
|
|
25596
25766
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -25632,10 +25802,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25632
25802
|
// oauth required
|
|
25633
25803
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25634
25804
|
|
|
25635
|
-
// authentication applicationAuth required
|
|
25636
|
-
// oauth required
|
|
25637
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25638
|
-
|
|
25639
25805
|
|
|
25640
25806
|
|
|
25641
25807
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -25681,10 +25847,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25681
25847
|
// oauth required
|
|
25682
25848
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25683
25849
|
|
|
25684
|
-
// authentication applicationAuth required
|
|
25685
|
-
// oauth required
|
|
25686
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25687
|
-
|
|
25688
25850
|
|
|
25689
25851
|
|
|
25690
25852
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -25732,10 +25894,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25732
25894
|
// oauth required
|
|
25733
25895
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25734
25896
|
|
|
25735
|
-
// authentication applicationAuth required
|
|
25736
|
-
// oauth required
|
|
25737
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25738
|
-
|
|
25739
25897
|
if (limit !== undefined) {
|
|
25740
25898
|
localVarQueryParameter['limit'] = limit;
|
|
25741
25899
|
}
|
|
@@ -25802,10 +25960,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25802
25960
|
// oauth required
|
|
25803
25961
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25804
25962
|
|
|
25805
|
-
// authentication applicationAuth required
|
|
25806
|
-
// oauth required
|
|
25807
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25808
|
-
|
|
25809
25963
|
if (forSubadmin !== undefined) {
|
|
25810
25964
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
25811
25965
|
}
|
|
@@ -25883,10 +26037,6 @@ export const AccessProfilesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
25883
26037
|
// oauth required
|
|
25884
26038
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
25885
26039
|
|
|
25886
|
-
// authentication applicationAuth required
|
|
25887
|
-
// oauth required
|
|
25888
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
25889
|
-
|
|
25890
26040
|
|
|
25891
26041
|
|
|
25892
26042
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -26461,11 +26611,11 @@ export const AccessRequestApprovalsApiAxiosParamCreator = function (configuratio
|
|
|
26461
26611
|
|
|
26462
26612
|
// authentication userAuth required
|
|
26463
26613
|
// oauth required
|
|
26464
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26614
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26465
26615
|
|
|
26466
26616
|
// authentication userAuth required
|
|
26467
26617
|
// oauth required
|
|
26468
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26618
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26469
26619
|
|
|
26470
26620
|
|
|
26471
26621
|
|
|
@@ -26693,11 +26843,11 @@ export const AccessRequestApprovalsApiAxiosParamCreator = function (configuratio
|
|
|
26693
26843
|
|
|
26694
26844
|
// authentication userAuth required
|
|
26695
26845
|
// oauth required
|
|
26696
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26846
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26697
26847
|
|
|
26698
26848
|
// authentication userAuth required
|
|
26699
26849
|
// oauth required
|
|
26700
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
26850
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
26701
26851
|
|
|
26702
26852
|
|
|
26703
26853
|
|
|
@@ -28103,6 +28253,10 @@ export const AccountUsagesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
28103
28253
|
// oauth required
|
|
28104
28254
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28105
28255
|
|
|
28256
|
+
// authentication applicationAuth required
|
|
28257
|
+
// oauth required
|
|
28258
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28259
|
+
|
|
28106
28260
|
if (limit !== undefined) {
|
|
28107
28261
|
localVarQueryParameter['limit'] = limit;
|
|
28108
28262
|
}
|
|
@@ -28280,6 +28434,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28280
28434
|
// oauth required
|
|
28281
28435
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28282
28436
|
|
|
28437
|
+
// authentication applicationAuth required
|
|
28438
|
+
// oauth required
|
|
28439
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28440
|
+
|
|
28283
28441
|
|
|
28284
28442
|
|
|
28285
28443
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28325,6 +28483,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28325
28483
|
// oauth required
|
|
28326
28484
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28327
28485
|
|
|
28486
|
+
// authentication applicationAuth required
|
|
28487
|
+
// oauth required
|
|
28488
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28489
|
+
|
|
28328
28490
|
|
|
28329
28491
|
|
|
28330
28492
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28370,6 +28532,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28370
28532
|
// oauth required
|
|
28371
28533
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28372
28534
|
|
|
28535
|
+
// authentication applicationAuth required
|
|
28536
|
+
// oauth required
|
|
28537
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28538
|
+
|
|
28373
28539
|
|
|
28374
28540
|
|
|
28375
28541
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28418,6 +28584,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28418
28584
|
// oauth required
|
|
28419
28585
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28420
28586
|
|
|
28587
|
+
// authentication applicationAuth required
|
|
28588
|
+
// oauth required
|
|
28589
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28590
|
+
|
|
28421
28591
|
|
|
28422
28592
|
|
|
28423
28593
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28463,6 +28633,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28463
28633
|
// oauth required
|
|
28464
28634
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28465
28635
|
|
|
28636
|
+
// authentication applicationAuth required
|
|
28637
|
+
// oauth required
|
|
28638
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28639
|
+
|
|
28466
28640
|
|
|
28467
28641
|
|
|
28468
28642
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28508,6 +28682,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28508
28682
|
// oauth required
|
|
28509
28683
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28510
28684
|
|
|
28685
|
+
// authentication applicationAuth required
|
|
28686
|
+
// oauth required
|
|
28687
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28688
|
+
|
|
28511
28689
|
if (limit !== undefined) {
|
|
28512
28690
|
localVarQueryParameter['limit'] = limit;
|
|
28513
28691
|
}
|
|
@@ -28564,6 +28742,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28564
28742
|
// oauth required
|
|
28565
28743
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28566
28744
|
|
|
28745
|
+
// authentication applicationAuth required
|
|
28746
|
+
// oauth required
|
|
28747
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28748
|
+
|
|
28567
28749
|
if (limit !== undefined) {
|
|
28568
28750
|
localVarQueryParameter['limit'] = limit;
|
|
28569
28751
|
}
|
|
@@ -28633,6 +28815,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28633
28815
|
// oauth required
|
|
28634
28816
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28635
28817
|
|
|
28818
|
+
// authentication applicationAuth required
|
|
28819
|
+
// oauth required
|
|
28820
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28821
|
+
|
|
28636
28822
|
|
|
28637
28823
|
|
|
28638
28824
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28678,6 +28864,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28678
28864
|
// oauth required
|
|
28679
28865
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28680
28866
|
|
|
28867
|
+
// authentication applicationAuth required
|
|
28868
|
+
// oauth required
|
|
28869
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28870
|
+
|
|
28681
28871
|
|
|
28682
28872
|
|
|
28683
28873
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28723,6 +28913,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28723
28913
|
// oauth required
|
|
28724
28914
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28725
28915
|
|
|
28916
|
+
// authentication applicationAuth required
|
|
28917
|
+
// oauth required
|
|
28918
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28919
|
+
|
|
28726
28920
|
|
|
28727
28921
|
|
|
28728
28922
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28771,6 +28965,10 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
28771
28965
|
// oauth required
|
|
28772
28966
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
28773
28967
|
|
|
28968
|
+
// authentication applicationAuth required
|
|
28969
|
+
// oauth required
|
|
28970
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
28971
|
+
|
|
28774
28972
|
|
|
28775
28973
|
|
|
28776
28974
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -29607,6 +29805,10 @@ export const ApplicationDiscoveryApiAxiosParamCreator = function (configuration?
|
|
|
29607
29805
|
// oauth required
|
|
29608
29806
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
29609
29807
|
|
|
29808
|
+
// authentication applicationAuth required
|
|
29809
|
+
// oauth required
|
|
29810
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
29811
|
+
|
|
29610
29812
|
|
|
29611
29813
|
if (file !== undefined) {
|
|
29612
29814
|
localVarFormParams.append('file', file as any);
|
|
@@ -34521,7 +34723,7 @@ export const CertificationsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
34521
34723
|
};
|
|
34522
34724
|
},
|
|
34523
34725
|
/**
|
|
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.
|
|
34726
|
+
* 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
34727
|
* @summary List identity campaign certifications
|
|
34526
34728
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
34527
34729
|
* @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 +34749,11 @@ export const CertificationsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
34547
34749
|
|
|
34548
34750
|
// authentication userAuth required
|
|
34549
34751
|
// oauth required
|
|
34550
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34752
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34551
34753
|
|
|
34552
34754
|
// authentication userAuth required
|
|
34553
34755
|
// oauth required
|
|
34554
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34756
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34555
34757
|
|
|
34556
34758
|
if (reviewerIdentity !== undefined) {
|
|
34557
34759
|
localVarQueryParameter['reviewer-identity'] = reviewerIdentity;
|
|
@@ -34664,11 +34866,11 @@ export const CertificationsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
34664
34866
|
|
|
34665
34867
|
// authentication userAuth required
|
|
34666
34868
|
// oauth required
|
|
34667
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34869
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34668
34870
|
|
|
34669
34871
|
// authentication userAuth required
|
|
34670
34872
|
// oauth required
|
|
34671
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
34873
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
34672
34874
|
|
|
34673
34875
|
|
|
34674
34876
|
|
|
@@ -34885,7 +35087,7 @@ export const CertificationsApiFp = function(configuration?: Configuration) {
|
|
|
34885
35087
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
34886
35088
|
},
|
|
34887
35089
|
/**
|
|
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.
|
|
35090
|
+
* 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
35091
|
* @summary List identity campaign certifications
|
|
34890
35092
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
34891
35093
|
* @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 +35230,7 @@ export const CertificationsApiFactory = function (configuration?: Configuration,
|
|
|
35028
35230
|
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
35231
|
},
|
|
35030
35232
|
/**
|
|
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.
|
|
35233
|
+
* 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
35234
|
* @summary List identity campaign certifications
|
|
35033
35235
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
35034
35236
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -35524,7 +35726,7 @@ export class CertificationsApi extends BaseAPI {
|
|
|
35524
35726
|
}
|
|
35525
35727
|
|
|
35526
35728
|
/**
|
|
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.
|
|
35729
|
+
* 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
35730
|
* @summary List identity campaign certifications
|
|
35529
35731
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
35530
35732
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -37841,6 +38043,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37841
38043
|
// oauth required
|
|
37842
38044
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37843
38045
|
|
|
38046
|
+
// authentication applicationAuth required
|
|
38047
|
+
// oauth required
|
|
38048
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38049
|
+
|
|
37844
38050
|
|
|
37845
38051
|
|
|
37846
38052
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -37882,6 +38088,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37882
38088
|
// oauth required
|
|
37883
38089
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37884
38090
|
|
|
38091
|
+
// authentication applicationAuth required
|
|
38092
|
+
// oauth required
|
|
38093
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38094
|
+
|
|
37885
38095
|
|
|
37886
38096
|
|
|
37887
38097
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37920,6 +38130,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37920
38130
|
// oauth required
|
|
37921
38131
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37922
38132
|
|
|
38133
|
+
// authentication applicationAuth required
|
|
38134
|
+
// oauth required
|
|
38135
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38136
|
+
|
|
37923
38137
|
|
|
37924
38138
|
|
|
37925
38139
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37958,6 +38172,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37958
38172
|
// oauth required
|
|
37959
38173
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37960
38174
|
|
|
38175
|
+
// authentication applicationAuth required
|
|
38176
|
+
// oauth required
|
|
38177
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38178
|
+
|
|
37961
38179
|
|
|
37962
38180
|
|
|
37963
38181
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37996,6 +38214,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
37996
38214
|
// oauth required
|
|
37997
38215
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
37998
38216
|
|
|
38217
|
+
// authentication applicationAuth required
|
|
38218
|
+
// oauth required
|
|
38219
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38220
|
+
|
|
37999
38221
|
|
|
38000
38222
|
|
|
38001
38223
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -38037,6 +38259,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38037
38259
|
// oauth required
|
|
38038
38260
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38039
38261
|
|
|
38262
|
+
// authentication applicationAuth required
|
|
38263
|
+
// oauth required
|
|
38264
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38265
|
+
|
|
38040
38266
|
|
|
38041
38267
|
|
|
38042
38268
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38081,6 +38307,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38081
38307
|
// oauth required
|
|
38082
38308
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38083
38309
|
|
|
38310
|
+
// authentication applicationAuth required
|
|
38311
|
+
// oauth required
|
|
38312
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38313
|
+
|
|
38084
38314
|
|
|
38085
38315
|
|
|
38086
38316
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38125,6 +38355,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38125
38355
|
// oauth required
|
|
38126
38356
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38127
38357
|
|
|
38358
|
+
// authentication applicationAuth required
|
|
38359
|
+
// oauth required
|
|
38360
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38361
|
+
|
|
38128
38362
|
|
|
38129
38363
|
|
|
38130
38364
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38169,6 +38403,10 @@ export const GlobalTenantSecuritySettingsApiAxiosParamCreator = function (config
|
|
|
38169
38403
|
// oauth required
|
|
38170
38404
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38171
38405
|
|
|
38406
|
+
// authentication applicationAuth required
|
|
38407
|
+
// oauth required
|
|
38408
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
38409
|
+
|
|
38172
38410
|
|
|
38173
38411
|
|
|
38174
38412
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -38757,6 +38995,10 @@ export const IdentityProfilesApiAxiosParamCreator = function (configuration?: Co
|
|
|
38757
38995
|
// oauth required
|
|
38758
38996
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
38759
38997
|
|
|
38998
|
+
// authentication applicationAuth required
|
|
38999
|
+
// oauth required
|
|
39000
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
39001
|
+
|
|
38760
39002
|
if (limit !== undefined) {
|
|
38761
39003
|
localVarQueryParameter['limit'] = limit;
|
|
38762
39004
|
}
|
|
@@ -39908,6 +40150,10 @@ export const LifecycleStatesApiAxiosParamCreator = function (configuration?: Con
|
|
|
39908
40150
|
// oauth required
|
|
39909
40151
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
39910
40152
|
|
|
40153
|
+
// authentication applicationAuth required
|
|
40154
|
+
// oauth required
|
|
40155
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
40156
|
+
|
|
39911
40157
|
|
|
39912
40158
|
|
|
39913
40159
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -41987,6 +42233,10 @@ export const ManagedClientsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
41987
42233
|
// oauth required
|
|
41988
42234
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
41989
42235
|
|
|
42236
|
+
// authentication applicationAuth required
|
|
42237
|
+
// oauth required
|
|
42238
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
42239
|
+
|
|
41990
42240
|
|
|
41991
42241
|
|
|
41992
42242
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -42032,6 +42282,10 @@ export const ManagedClientsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
42032
42282
|
// oauth required
|
|
42033
42283
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
42034
42284
|
|
|
42285
|
+
// authentication applicationAuth required
|
|
42286
|
+
// oauth required
|
|
42287
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
42288
|
+
|
|
42035
42289
|
if (type !== undefined) {
|
|
42036
42290
|
localVarQueryParameter['type'] = type;
|
|
42037
42291
|
}
|
|
@@ -42078,6 +42332,10 @@ export const ManagedClientsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
42078
42332
|
// oauth required
|
|
42079
42333
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
42080
42334
|
|
|
42335
|
+
// authentication applicationAuth required
|
|
42336
|
+
// oauth required
|
|
42337
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
42338
|
+
|
|
42081
42339
|
if (offset !== undefined) {
|
|
42082
42340
|
localVarQueryParameter['offset'] = offset;
|
|
42083
42341
|
}
|
|
@@ -42707,7 +42965,7 @@ export const ManagedClustersApiAxiosParamCreator = function (configuration?: Con
|
|
|
42707
42965
|
* @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
42966
|
* @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
42967
|
* @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*
|
|
42968
|
+
* @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
42969
|
* @param {*} [axiosOptions] Override http request option.
|
|
42712
42970
|
* @throws {RequiredError}
|
|
42713
42971
|
*/
|
|
@@ -42924,7 +43182,7 @@ export const ManagedClustersApiFp = function(configuration?: Configuration) {
|
|
|
42924
43182
|
* @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
43183
|
* @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
43184
|
* @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*
|
|
43185
|
+
* @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
43186
|
* @param {*} [axiosOptions] Override http request option.
|
|
42929
43187
|
* @throws {RequiredError}
|
|
42930
43188
|
*/
|
|
@@ -43136,7 +43394,7 @@ export interface ManagedClustersApiGetManagedClustersRequest {
|
|
|
43136
43394
|
readonly count?: boolean
|
|
43137
43395
|
|
|
43138
43396
|
/**
|
|
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*
|
|
43397
|
+
* 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
43398
|
* @type {string}
|
|
43141
43399
|
* @memberof ManagedClustersApiGetManagedClusters
|
|
43142
43400
|
*/
|
|
@@ -43357,11 +43615,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43357
43615
|
|
|
43358
43616
|
// authentication userAuth required
|
|
43359
43617
|
// oauth required
|
|
43360
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43618
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43361
43619
|
|
|
43362
43620
|
// authentication userAuth required
|
|
43363
43621
|
// oauth required
|
|
43364
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43622
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43623
|
+
|
|
43624
|
+
// authentication applicationAuth required
|
|
43625
|
+
// oauth required
|
|
43626
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43365
43627
|
|
|
43366
43628
|
|
|
43367
43629
|
|
|
@@ -43407,6 +43669,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43407
43669
|
// oauth required
|
|
43408
43670
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43409
43671
|
|
|
43672
|
+
// authentication applicationAuth required
|
|
43673
|
+
// oauth required
|
|
43674
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43675
|
+
|
|
43410
43676
|
|
|
43411
43677
|
|
|
43412
43678
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -43451,6 +43717,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43451
43717
|
// oauth required
|
|
43452
43718
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43453
43719
|
|
|
43720
|
+
// authentication applicationAuth required
|
|
43721
|
+
// oauth required
|
|
43722
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43723
|
+
|
|
43454
43724
|
|
|
43455
43725
|
|
|
43456
43726
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -43493,11 +43763,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43493
43763
|
|
|
43494
43764
|
// authentication userAuth required
|
|
43495
43765
|
// oauth required
|
|
43496
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43766
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43497
43767
|
|
|
43498
43768
|
// authentication userAuth required
|
|
43499
43769
|
// oauth required
|
|
43500
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43770
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43771
|
+
|
|
43772
|
+
// authentication applicationAuth required
|
|
43773
|
+
// oauth required
|
|
43774
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43501
43775
|
|
|
43502
43776
|
|
|
43503
43777
|
|
|
@@ -43538,11 +43812,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43538
43812
|
|
|
43539
43813
|
// authentication userAuth required
|
|
43540
43814
|
// oauth required
|
|
43541
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43815
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43542
43816
|
|
|
43543
43817
|
// authentication userAuth required
|
|
43544
43818
|
// oauth required
|
|
43545
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43819
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43820
|
+
|
|
43821
|
+
// authentication applicationAuth required
|
|
43822
|
+
// oauth required
|
|
43823
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43546
43824
|
|
|
43547
43825
|
|
|
43548
43826
|
|
|
@@ -43579,11 +43857,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43579
43857
|
|
|
43580
43858
|
// authentication userAuth required
|
|
43581
43859
|
// oauth required
|
|
43582
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43860
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43583
43861
|
|
|
43584
43862
|
// authentication userAuth required
|
|
43585
43863
|
// oauth required
|
|
43586
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43864
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43865
|
+
|
|
43866
|
+
// authentication applicationAuth required
|
|
43867
|
+
// oauth required
|
|
43868
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43587
43869
|
|
|
43588
43870
|
|
|
43589
43871
|
|
|
@@ -43624,11 +43906,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43624
43906
|
|
|
43625
43907
|
// authentication userAuth required
|
|
43626
43908
|
// oauth required
|
|
43627
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43909
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43628
43910
|
|
|
43629
43911
|
// authentication userAuth required
|
|
43630
43912
|
// oauth required
|
|
43631
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43913
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43914
|
+
|
|
43915
|
+
// authentication applicationAuth required
|
|
43916
|
+
// oauth required
|
|
43917
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43632
43918
|
|
|
43633
43919
|
|
|
43634
43920
|
|
|
@@ -43670,11 +43956,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43670
43956
|
|
|
43671
43957
|
// authentication userAuth required
|
|
43672
43958
|
// oauth required
|
|
43673
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43959
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43674
43960
|
|
|
43675
43961
|
// authentication userAuth required
|
|
43676
43962
|
// oauth required
|
|
43677
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
43963
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43964
|
+
|
|
43965
|
+
// authentication applicationAuth required
|
|
43966
|
+
// oauth required
|
|
43967
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43678
43968
|
|
|
43679
43969
|
|
|
43680
43970
|
|
|
@@ -43712,11 +44002,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43712
44002
|
|
|
43713
44003
|
// authentication userAuth required
|
|
43714
44004
|
// oauth required
|
|
43715
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44005
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43716
44006
|
|
|
43717
44007
|
// authentication userAuth required
|
|
43718
44008
|
// oauth required
|
|
43719
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44009
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44010
|
+
|
|
44011
|
+
// authentication applicationAuth required
|
|
44012
|
+
// oauth required
|
|
44013
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43720
44014
|
|
|
43721
44015
|
|
|
43722
44016
|
|
|
@@ -43754,11 +44048,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43754
44048
|
|
|
43755
44049
|
// authentication userAuth required
|
|
43756
44050
|
// oauth required
|
|
43757
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44051
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43758
44052
|
|
|
43759
44053
|
// authentication userAuth required
|
|
43760
44054
|
// oauth required
|
|
43761
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44055
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44056
|
+
|
|
44057
|
+
// authentication applicationAuth required
|
|
44058
|
+
// oauth required
|
|
44059
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43762
44060
|
|
|
43763
44061
|
|
|
43764
44062
|
|
|
@@ -43796,11 +44094,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43796
44094
|
|
|
43797
44095
|
// authentication userAuth required
|
|
43798
44096
|
// oauth required
|
|
43799
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44097
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43800
44098
|
|
|
43801
44099
|
// authentication userAuth required
|
|
43802
44100
|
// oauth required
|
|
43803
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44101
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44102
|
+
|
|
44103
|
+
// authentication applicationAuth required
|
|
44104
|
+
// oauth required
|
|
44105
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43804
44106
|
|
|
43805
44107
|
|
|
43806
44108
|
|
|
@@ -43838,11 +44140,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43838
44140
|
|
|
43839
44141
|
// authentication userAuth required
|
|
43840
44142
|
// oauth required
|
|
43841
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44143
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43842
44144
|
|
|
43843
44145
|
// authentication userAuth required
|
|
43844
44146
|
// oauth required
|
|
43845
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44147
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44148
|
+
|
|
44149
|
+
// authentication applicationAuth required
|
|
44150
|
+
// oauth required
|
|
44151
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43846
44152
|
|
|
43847
44153
|
|
|
43848
44154
|
|
|
@@ -43933,6 +44239,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43933
44239
|
// oauth required
|
|
43934
44240
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43935
44241
|
|
|
44242
|
+
// authentication applicationAuth required
|
|
44243
|
+
// oauth required
|
|
44244
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44245
|
+
|
|
43936
44246
|
|
|
43937
44247
|
|
|
43938
44248
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -43969,11 +44279,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
43969
44279
|
|
|
43970
44280
|
// authentication userAuth required
|
|
43971
44281
|
// oauth required
|
|
43972
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44282
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
43973
44283
|
|
|
43974
44284
|
// authentication userAuth required
|
|
43975
44285
|
// oauth required
|
|
43976
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44286
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44287
|
+
|
|
44288
|
+
// authentication applicationAuth required
|
|
44289
|
+
// oauth required
|
|
44290
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
43977
44291
|
|
|
43978
44292
|
|
|
43979
44293
|
|
|
@@ -44011,11 +44325,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44011
44325
|
|
|
44012
44326
|
// authentication userAuth required
|
|
44013
44327
|
// oauth required
|
|
44014
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44328
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44015
44329
|
|
|
44016
44330
|
// authentication userAuth required
|
|
44017
44331
|
// oauth required
|
|
44018
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
44332
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44333
|
+
|
|
44334
|
+
// authentication applicationAuth required
|
|
44335
|
+
// oauth required
|
|
44336
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44019
44337
|
|
|
44020
44338
|
|
|
44021
44339
|
|
|
@@ -44059,6 +44377,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44059
44377
|
// oauth required
|
|
44060
44378
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44061
44379
|
|
|
44380
|
+
// authentication applicationAuth required
|
|
44381
|
+
// oauth required
|
|
44382
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44383
|
+
|
|
44062
44384
|
|
|
44063
44385
|
|
|
44064
44386
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44101,6 +44423,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44101
44423
|
// oauth required
|
|
44102
44424
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44103
44425
|
|
|
44426
|
+
// authentication applicationAuth required
|
|
44427
|
+
// oauth required
|
|
44428
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44429
|
+
|
|
44104
44430
|
|
|
44105
44431
|
|
|
44106
44432
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44147,6 +44473,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44147
44473
|
// oauth required
|
|
44148
44474
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44149
44475
|
|
|
44476
|
+
// authentication applicationAuth required
|
|
44477
|
+
// oauth required
|
|
44478
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44479
|
+
|
|
44150
44480
|
|
|
44151
44481
|
|
|
44152
44482
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44189,6 +44519,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44189
44519
|
// oauth required
|
|
44190
44520
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44191
44521
|
|
|
44522
|
+
// authentication applicationAuth required
|
|
44523
|
+
// oauth required
|
|
44524
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44525
|
+
|
|
44192
44526
|
|
|
44193
44527
|
|
|
44194
44528
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44231,6 +44565,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44231
44565
|
// oauth required
|
|
44232
44566
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44233
44567
|
|
|
44568
|
+
// authentication applicationAuth required
|
|
44569
|
+
// oauth required
|
|
44570
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44571
|
+
|
|
44234
44572
|
|
|
44235
44573
|
|
|
44236
44574
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -44277,6 +44615,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44277
44615
|
// oauth required
|
|
44278
44616
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44279
44617
|
|
|
44618
|
+
// authentication applicationAuth required
|
|
44619
|
+
// oauth required
|
|
44620
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44621
|
+
|
|
44280
44622
|
|
|
44281
44623
|
if (data !== undefined) {
|
|
44282
44624
|
localVarFormParams.append('data', data as any);
|
|
@@ -44328,6 +44670,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44328
44670
|
// oauth required
|
|
44329
44671
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44330
44672
|
|
|
44673
|
+
// authentication applicationAuth required
|
|
44674
|
+
// oauth required
|
|
44675
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44676
|
+
|
|
44331
44677
|
if (requestedFor !== undefined) {
|
|
44332
44678
|
localVarQueryParameter['requested-for'] = requestedFor;
|
|
44333
44679
|
}
|
|
@@ -44395,6 +44741,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44395
44741
|
// oauth required
|
|
44396
44742
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44397
44743
|
|
|
44744
|
+
// authentication applicationAuth required
|
|
44745
|
+
// oauth required
|
|
44746
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44747
|
+
|
|
44398
44748
|
if (limit !== undefined) {
|
|
44399
44749
|
localVarQueryParameter['limit'] = limit;
|
|
44400
44750
|
}
|
|
@@ -44461,6 +44811,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44461
44811
|
// oauth required
|
|
44462
44812
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44463
44813
|
|
|
44814
|
+
// authentication applicationAuth required
|
|
44815
|
+
// oauth required
|
|
44816
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44817
|
+
|
|
44464
44818
|
if (limit !== undefined) {
|
|
44465
44819
|
localVarQueryParameter['limit'] = limit;
|
|
44466
44820
|
}
|
|
@@ -44529,6 +44883,10 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44529
44883
|
// oauth required
|
|
44530
44884
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44531
44885
|
|
|
44886
|
+
// authentication applicationAuth required
|
|
44887
|
+
// oauth required
|
|
44888
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44889
|
+
|
|
44532
44890
|
if (limit !== undefined) {
|
|
44533
44891
|
localVarQueryParameter['limit'] = limit;
|
|
44534
44892
|
}
|
|
@@ -44644,11 +45002,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44644
45002
|
|
|
44645
45003
|
// authentication userAuth required
|
|
44646
45004
|
// oauth required
|
|
44647
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45005
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44648
45006
|
|
|
44649
45007
|
// authentication userAuth required
|
|
44650
45008
|
// oauth required
|
|
44651
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45009
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45010
|
+
|
|
45011
|
+
// authentication applicationAuth required
|
|
45012
|
+
// oauth required
|
|
45013
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44652
45014
|
|
|
44653
45015
|
|
|
44654
45016
|
|
|
@@ -44692,11 +45054,15 @@ export const NonEmployeeLifecycleManagementApiAxiosParamCreator = function (conf
|
|
|
44692
45054
|
|
|
44693
45055
|
// authentication userAuth required
|
|
44694
45056
|
// oauth required
|
|
44695
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45057
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44696
45058
|
|
|
44697
45059
|
// authentication userAuth required
|
|
44698
45060
|
// oauth required
|
|
44699
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
45061
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45062
|
+
|
|
45063
|
+
// authentication applicationAuth required
|
|
45064
|
+
// oauth required
|
|
45065
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
44700
45066
|
|
|
44701
45067
|
|
|
44702
45068
|
|
|
@@ -46780,6 +47146,10 @@ export const OAuthClientsApiAxiosParamCreator = function (configuration?: Config
|
|
|
46780
47146
|
// oauth required
|
|
46781
47147
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46782
47148
|
|
|
47149
|
+
// authentication applicationAuth required
|
|
47150
|
+
// oauth required
|
|
47151
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47152
|
+
|
|
46783
47153
|
|
|
46784
47154
|
|
|
46785
47155
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -47204,6 +47574,10 @@ export const PasswordConfigurationApiAxiosParamCreator = function (configuration
|
|
|
47204
47574
|
// oauth required
|
|
47205
47575
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47206
47576
|
|
|
47577
|
+
// authentication applicationAuth required
|
|
47578
|
+
// oauth required
|
|
47579
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47580
|
+
|
|
47207
47581
|
|
|
47208
47582
|
|
|
47209
47583
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -47245,6 +47619,10 @@ export const PasswordConfigurationApiAxiosParamCreator = function (configuration
|
|
|
47245
47619
|
// oauth required
|
|
47246
47620
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47247
47621
|
|
|
47622
|
+
// authentication applicationAuth required
|
|
47623
|
+
// oauth required
|
|
47624
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47625
|
+
|
|
47248
47626
|
|
|
47249
47627
|
|
|
47250
47628
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -47286,6 +47664,10 @@ export const PasswordConfigurationApiAxiosParamCreator = function (configuration
|
|
|
47286
47664
|
// oauth required
|
|
47287
47665
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47288
47666
|
|
|
47667
|
+
// authentication applicationAuth required
|
|
47668
|
+
// oauth required
|
|
47669
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
47670
|
+
|
|
47289
47671
|
|
|
47290
47672
|
|
|
47291
47673
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -47742,6 +48124,14 @@ export const PasswordManagementApiAxiosParamCreator = function (configuration?:
|
|
|
47742
48124
|
const localVarHeaderParameter = {} as any;
|
|
47743
48125
|
const localVarQueryParameter = {} as any;
|
|
47744
48126
|
|
|
48127
|
+
// authentication userAuth required
|
|
48128
|
+
// oauth required
|
|
48129
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48130
|
+
|
|
48131
|
+
// authentication userAuth required
|
|
48132
|
+
// oauth required
|
|
48133
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48134
|
+
|
|
47745
48135
|
// authentication applicationAuth required
|
|
47746
48136
|
// oauth required
|
|
47747
48137
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
@@ -47782,6 +48172,14 @@ export const PasswordManagementApiAxiosParamCreator = function (configuration?:
|
|
|
47782
48172
|
const localVarHeaderParameter = {} as any;
|
|
47783
48173
|
const localVarQueryParameter = {} as any;
|
|
47784
48174
|
|
|
48175
|
+
// authentication userAuth required
|
|
48176
|
+
// oauth required
|
|
48177
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48178
|
+
|
|
48179
|
+
// authentication userAuth required
|
|
48180
|
+
// oauth required
|
|
48181
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48182
|
+
|
|
47785
48183
|
// authentication applicationAuth required
|
|
47786
48184
|
// oauth required
|
|
47787
48185
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
@@ -48103,6 +48501,10 @@ export const PasswordPoliciesApiAxiosParamCreator = function (configuration?: Co
|
|
|
48103
48501
|
// oauth required
|
|
48104
48502
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48105
48503
|
|
|
48504
|
+
// authentication applicationAuth required
|
|
48505
|
+
// oauth required
|
|
48506
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
48507
|
+
|
|
48106
48508
|
|
|
48107
48509
|
|
|
48108
48510
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -48144,6 +48546,10 @@ export const PasswordPoliciesApiAxiosParamCreator = function (configuration?: Co
|
|
|
48144
48546
|
// oauth required
|
|
48145
48547
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48146
48548
|
|
|
48549
|
+
// authentication applicationAuth required
|
|
48550
|
+
// oauth required
|
|
48551
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
48552
|
+
|
|
48147
48553
|
if (limit !== undefined) {
|
|
48148
48554
|
localVarQueryParameter['limit'] = limit;
|
|
48149
48555
|
}
|
|
@@ -48640,6 +49046,10 @@ export const PasswordSyncGroupsApiAxiosParamCreator = function (configuration?:
|
|
|
48640
49046
|
// oauth required
|
|
48641
49047
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48642
49048
|
|
|
49049
|
+
// authentication applicationAuth required
|
|
49050
|
+
// oauth required
|
|
49051
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
49052
|
+
|
|
48643
49053
|
|
|
48644
49054
|
|
|
48645
49055
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -48681,6 +49091,10 @@ export const PasswordSyncGroupsApiAxiosParamCreator = function (configuration?:
|
|
|
48681
49091
|
// oauth required
|
|
48682
49092
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48683
49093
|
|
|
49094
|
+
// authentication applicationAuth required
|
|
49095
|
+
// oauth required
|
|
49096
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
49097
|
+
|
|
48684
49098
|
if (limit !== undefined) {
|
|
48685
49099
|
localVarQueryParameter['limit'] = limit;
|
|
48686
49100
|
}
|
|
@@ -49969,6 +50383,10 @@ export const ReportsDataExtractionApiAxiosParamCreator = function (configuration
|
|
|
49969
50383
|
// oauth required
|
|
49970
50384
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
49971
50385
|
|
|
50386
|
+
// authentication applicationAuth required
|
|
50387
|
+
// oauth required
|
|
50388
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50389
|
+
|
|
49972
50390
|
if (fileFormat !== undefined) {
|
|
49973
50391
|
localVarQueryParameter['fileFormat'] = fileFormat;
|
|
49974
50392
|
}
|
|
@@ -50024,6 +50442,10 @@ export const ReportsDataExtractionApiAxiosParamCreator = function (configuration
|
|
|
50024
50442
|
// oauth required
|
|
50025
50443
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50026
50444
|
|
|
50445
|
+
// authentication applicationAuth required
|
|
50446
|
+
// oauth required
|
|
50447
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50448
|
+
|
|
50027
50449
|
if (completed !== undefined) {
|
|
50028
50450
|
localVarQueryParameter['completed'] = completed;
|
|
50029
50451
|
}
|
|
@@ -50766,6 +51188,10 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
50766
51188
|
// oauth required
|
|
50767
51189
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50768
51190
|
|
|
51191
|
+
// authentication applicationAuth required
|
|
51192
|
+
// oauth required
|
|
51193
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51194
|
+
|
|
50769
51195
|
|
|
50770
51196
|
|
|
50771
51197
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50813,6 +51239,10 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
50813
51239
|
// oauth required
|
|
50814
51240
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50815
51241
|
|
|
51242
|
+
// authentication applicationAuth required
|
|
51243
|
+
// oauth required
|
|
51244
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51245
|
+
|
|
50816
51246
|
if (limit !== undefined) {
|
|
50817
51247
|
localVarQueryParameter['limit'] = limit;
|
|
50818
51248
|
}
|
|
@@ -50879,6 +51309,10 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
50879
51309
|
// oauth required
|
|
50880
51310
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50881
51311
|
|
|
51312
|
+
// authentication applicationAuth required
|
|
51313
|
+
// oauth required
|
|
51314
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51315
|
+
|
|
50882
51316
|
if (forSubadmin !== undefined) {
|
|
50883
51317
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
50884
51318
|
}
|
|
@@ -51624,6 +52058,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51624
52058
|
// oauth required
|
|
51625
52059
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51626
52060
|
|
|
52061
|
+
// authentication applicationAuth required
|
|
52062
|
+
// oauth required
|
|
52063
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52064
|
+
|
|
51627
52065
|
|
|
51628
52066
|
|
|
51629
52067
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51666,6 +52104,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51666
52104
|
// oauth required
|
|
51667
52105
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51668
52106
|
|
|
52107
|
+
// authentication applicationAuth required
|
|
52108
|
+
// oauth required
|
|
52109
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52110
|
+
|
|
51669
52111
|
|
|
51670
52112
|
|
|
51671
52113
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51704,6 +52146,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51704
52146
|
// oauth required
|
|
51705
52147
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51706
52148
|
|
|
52149
|
+
// authentication applicationAuth required
|
|
52150
|
+
// oauth required
|
|
52151
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52152
|
+
|
|
51707
52153
|
|
|
51708
52154
|
|
|
51709
52155
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51830,6 +52276,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51830
52276
|
// oauth required
|
|
51831
52277
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51832
52278
|
|
|
52279
|
+
// authentication applicationAuth required
|
|
52280
|
+
// oauth required
|
|
52281
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52282
|
+
|
|
51833
52283
|
|
|
51834
52284
|
|
|
51835
52285
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -51872,6 +52322,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
51872
52322
|
// oauth required
|
|
51873
52323
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51874
52324
|
|
|
52325
|
+
// authentication applicationAuth required
|
|
52326
|
+
// oauth required
|
|
52327
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52328
|
+
|
|
51875
52329
|
|
|
51876
52330
|
|
|
51877
52331
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -52121,6 +52575,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
52121
52575
|
// oauth required
|
|
52122
52576
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52123
52577
|
|
|
52578
|
+
// authentication applicationAuth required
|
|
52579
|
+
// oauth required
|
|
52580
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52581
|
+
|
|
52124
52582
|
|
|
52125
52583
|
|
|
52126
52584
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -52160,6 +52618,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
52160
52618
|
// oauth required
|
|
52161
52619
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52162
52620
|
|
|
52621
|
+
// authentication applicationAuth required
|
|
52622
|
+
// oauth required
|
|
52623
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52624
|
+
|
|
52163
52625
|
|
|
52164
52626
|
|
|
52165
52627
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -52205,6 +52667,10 @@ export const SODPoliciesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
52205
52667
|
// oauth required
|
|
52206
52668
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52207
52669
|
|
|
52670
|
+
// authentication applicationAuth required
|
|
52671
|
+
// oauth required
|
|
52672
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52673
|
+
|
|
52208
52674
|
|
|
52209
52675
|
|
|
52210
52676
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -53221,6 +53687,10 @@ export const SODViolationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
53221
53687
|
// oauth required
|
|
53222
53688
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53223
53689
|
|
|
53690
|
+
// authentication applicationAuth required
|
|
53691
|
+
// oauth required
|
|
53692
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53693
|
+
|
|
53224
53694
|
|
|
53225
53695
|
|
|
53226
53696
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -53441,11 +53911,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53441
53911
|
|
|
53442
53912
|
// authentication userAuth required
|
|
53443
53913
|
// oauth required
|
|
53444
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53914
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53445
53915
|
|
|
53446
53916
|
// authentication userAuth required
|
|
53447
53917
|
// oauth required
|
|
53448
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53918
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53449
53919
|
|
|
53450
53920
|
|
|
53451
53921
|
|
|
@@ -53486,11 +53956,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53486
53956
|
|
|
53487
53957
|
// authentication userAuth required
|
|
53488
53958
|
// oauth required
|
|
53489
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53959
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53490
53960
|
|
|
53491
53961
|
// authentication userAuth required
|
|
53492
53962
|
// oauth required
|
|
53493
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
53963
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53494
53964
|
|
|
53495
53965
|
|
|
53496
53966
|
|
|
@@ -53531,11 +54001,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53531
54001
|
|
|
53532
54002
|
// authentication userAuth required
|
|
53533
54003
|
// oauth required
|
|
53534
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54004
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53535
54005
|
|
|
53536
54006
|
// authentication userAuth required
|
|
53537
54007
|
// oauth required
|
|
53538
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54008
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53539
54009
|
|
|
53540
54010
|
|
|
53541
54011
|
|
|
@@ -53634,11 +54104,11 @@ export const SavedSearchApiAxiosParamCreator = function (configuration?: Configu
|
|
|
53634
54104
|
|
|
53635
54105
|
// authentication userAuth required
|
|
53636
54106
|
// oauth required
|
|
53637
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54107
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53638
54108
|
|
|
53639
54109
|
// authentication userAuth required
|
|
53640
54110
|
// oauth required
|
|
53641
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54111
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53642
54112
|
|
|
53643
54113
|
|
|
53644
54114
|
|
|
@@ -54051,11 +54521,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54051
54521
|
|
|
54052
54522
|
// authentication userAuth required
|
|
54053
54523
|
// oauth required
|
|
54054
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54524
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54055
54525
|
|
|
54056
54526
|
// authentication userAuth required
|
|
54057
54527
|
// oauth required
|
|
54058
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54528
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54059
54529
|
|
|
54060
54530
|
|
|
54061
54531
|
|
|
@@ -54096,11 +54566,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54096
54566
|
|
|
54097
54567
|
// authentication userAuth required
|
|
54098
54568
|
// oauth required
|
|
54099
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54569
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54100
54570
|
|
|
54101
54571
|
// authentication userAuth required
|
|
54102
54572
|
// oauth required
|
|
54103
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54573
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54104
54574
|
|
|
54105
54575
|
|
|
54106
54576
|
|
|
@@ -54136,14 +54606,6 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54136
54606
|
const localVarHeaderParameter = {} as any;
|
|
54137
54607
|
const localVarQueryParameter = {} as any;
|
|
54138
54608
|
|
|
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
54609
|
|
|
54148
54610
|
|
|
54149
54611
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -54180,11 +54642,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54180
54642
|
|
|
54181
54643
|
// authentication userAuth required
|
|
54182
54644
|
// oauth required
|
|
54183
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54645
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54184
54646
|
|
|
54185
54647
|
// authentication userAuth required
|
|
54186
54648
|
// oauth required
|
|
54187
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54649
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54188
54650
|
|
|
54189
54651
|
if (offset !== undefined) {
|
|
54190
54652
|
localVarQueryParameter['offset'] = offset;
|
|
@@ -54289,11 +54751,11 @@ export const ScheduledSearchApiAxiosParamCreator = function (configuration?: Con
|
|
|
54289
54751
|
|
|
54290
54752
|
// authentication userAuth required
|
|
54291
54753
|
// oauth required
|
|
54292
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54754
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54293
54755
|
|
|
54294
54756
|
// authentication userAuth required
|
|
54295
54757
|
// oauth required
|
|
54296
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
54758
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54297
54759
|
|
|
54298
54760
|
|
|
54299
54761
|
|
|
@@ -54715,6 +55177,10 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
54715
55177
|
// oauth required
|
|
54716
55178
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54717
55179
|
|
|
55180
|
+
// authentication applicationAuth required
|
|
55181
|
+
// oauth required
|
|
55182
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
55183
|
+
|
|
54718
55184
|
if (offset !== undefined) {
|
|
54719
55185
|
localVarQueryParameter['offset'] = offset;
|
|
54720
55186
|
}
|
|
@@ -54771,6 +55237,10 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
54771
55237
|
// oauth required
|
|
54772
55238
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
54773
55239
|
|
|
55240
|
+
// authentication applicationAuth required
|
|
55241
|
+
// oauth required
|
|
55242
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
55243
|
+
|
|
54774
55244
|
|
|
54775
55245
|
|
|
54776
55246
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -57305,6 +57775,10 @@ export const SourceUsagesApiAxiosParamCreator = function (configuration?: Config
|
|
|
57305
57775
|
// oauth required
|
|
57306
57776
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57307
57777
|
|
|
57778
|
+
// authentication applicationAuth required
|
|
57779
|
+
// oauth required
|
|
57780
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
57781
|
+
|
|
57308
57782
|
|
|
57309
57783
|
|
|
57310
57784
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -57351,6 +57825,10 @@ export const SourceUsagesApiAxiosParamCreator = function (configuration?: Config
|
|
|
57351
57825
|
// oauth required
|
|
57352
57826
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57353
57827
|
|
|
57828
|
+
// authentication applicationAuth required
|
|
57829
|
+
// oauth required
|
|
57830
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
57831
|
+
|
|
57354
57832
|
if (limit !== undefined) {
|
|
57355
57833
|
localVarQueryParameter['limit'] = limit;
|
|
57356
57834
|
}
|
|
@@ -57581,6 +58059,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57581
58059
|
// oauth required
|
|
57582
58060
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57583
58061
|
|
|
58062
|
+
// authentication applicationAuth required
|
|
58063
|
+
// oauth required
|
|
58064
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58065
|
+
|
|
57584
58066
|
|
|
57585
58067
|
|
|
57586
58068
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -57626,6 +58108,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57626
58108
|
// oauth required
|
|
57627
58109
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57628
58110
|
|
|
58111
|
+
// authentication applicationAuth required
|
|
58112
|
+
// oauth required
|
|
58113
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58114
|
+
|
|
57629
58115
|
if (provisionAsCsv !== undefined) {
|
|
57630
58116
|
localVarQueryParameter['provisionAsCsv'] = provisionAsCsv;
|
|
57631
58117
|
}
|
|
@@ -57773,6 +58259,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57773
58259
|
// oauth required
|
|
57774
58260
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57775
58261
|
|
|
58262
|
+
// authentication applicationAuth required
|
|
58263
|
+
// oauth required
|
|
58264
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58265
|
+
|
|
57776
58266
|
|
|
57777
58267
|
|
|
57778
58268
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -57813,11 +58303,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
57813
58303
|
|
|
57814
58304
|
// authentication userAuth required
|
|
57815
58305
|
// oauth required
|
|
57816
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58306
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57817
58307
|
|
|
57818
58308
|
// authentication userAuth required
|
|
57819
58309
|
// oauth required
|
|
57820
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58310
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
57821
58311
|
|
|
57822
58312
|
|
|
57823
58313
|
|
|
@@ -58000,6 +58490,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58000
58490
|
// oauth required
|
|
58001
58491
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58002
58492
|
|
|
58493
|
+
// authentication applicationAuth required
|
|
58494
|
+
// oauth required
|
|
58495
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58496
|
+
|
|
58003
58497
|
|
|
58004
58498
|
|
|
58005
58499
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -58042,6 +58536,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58042
58536
|
// oauth required
|
|
58043
58537
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58044
58538
|
|
|
58539
|
+
// authentication applicationAuth required
|
|
58540
|
+
// oauth required
|
|
58541
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58542
|
+
|
|
58045
58543
|
|
|
58046
58544
|
|
|
58047
58545
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -58084,6 +58582,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58084
58582
|
// oauth required
|
|
58085
58583
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58086
58584
|
|
|
58585
|
+
// authentication applicationAuth required
|
|
58586
|
+
// oauth required
|
|
58587
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
58588
|
+
|
|
58087
58589
|
|
|
58088
58590
|
|
|
58089
58591
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -58124,11 +58626,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58124
58626
|
|
|
58125
58627
|
// authentication userAuth required
|
|
58126
58628
|
// oauth required
|
|
58127
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58629
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58128
58630
|
|
|
58129
58631
|
// authentication userAuth required
|
|
58130
58632
|
// oauth required
|
|
58131
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
58633
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58132
58634
|
|
|
58133
58635
|
|
|
58134
58636
|
|
|
@@ -58564,6 +59066,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58564
59066
|
// oauth required
|
|
58565
59067
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58566
59068
|
|
|
59069
|
+
// authentication applicationAuth required
|
|
59070
|
+
// oauth required
|
|
59071
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
59072
|
+
|
|
58567
59073
|
|
|
58568
59074
|
|
|
58569
59075
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -58610,11 +59116,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58610
59116
|
|
|
58611
59117
|
// authentication userAuth required
|
|
58612
59118
|
// oauth required
|
|
58613
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59119
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58614
59120
|
|
|
58615
59121
|
// authentication userAuth required
|
|
58616
59122
|
// oauth required
|
|
58617
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59123
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58618
59124
|
|
|
58619
59125
|
|
|
58620
59126
|
|
|
@@ -58772,6 +59278,10 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58772
59278
|
// oauth required
|
|
58773
59279
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58774
59280
|
|
|
59281
|
+
// authentication applicationAuth required
|
|
59282
|
+
// oauth required
|
|
59283
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
59284
|
+
|
|
58775
59285
|
|
|
58776
59286
|
|
|
58777
59287
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -58818,11 +59328,11 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58818
59328
|
|
|
58819
59329
|
// authentication userAuth required
|
|
58820
59330
|
// oauth required
|
|
58821
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59331
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58822
59332
|
|
|
58823
59333
|
// authentication userAuth required
|
|
58824
59334
|
// oauth required
|
|
58825
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59335
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
58826
59336
|
|
|
58827
59337
|
|
|
58828
59338
|
|
|
@@ -60442,6 +60952,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60442
60952
|
// oauth required
|
|
60443
60953
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60444
60954
|
|
|
60955
|
+
// authentication applicationAuth required
|
|
60956
|
+
// oauth required
|
|
60957
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
60958
|
+
|
|
60445
60959
|
|
|
60446
60960
|
|
|
60447
60961
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -60536,6 +61050,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60536
61050
|
// oauth required
|
|
60537
61051
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60538
61052
|
|
|
61053
|
+
// authentication applicationAuth required
|
|
61054
|
+
// oauth required
|
|
61055
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61056
|
+
|
|
60539
61057
|
|
|
60540
61058
|
|
|
60541
61059
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -60578,6 +61096,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60578
61096
|
// oauth required
|
|
60579
61097
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60580
61098
|
|
|
61099
|
+
// authentication applicationAuth required
|
|
61100
|
+
// oauth required
|
|
61101
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61102
|
+
|
|
60581
61103
|
if (limit !== undefined) {
|
|
60582
61104
|
localVarQueryParameter['limit'] = limit;
|
|
60583
61105
|
}
|
|
@@ -60640,6 +61162,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60640
61162
|
// oauth required
|
|
60641
61163
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60642
61164
|
|
|
61165
|
+
// authentication applicationAuth required
|
|
61166
|
+
// oauth required
|
|
61167
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61168
|
+
|
|
60643
61169
|
if (limit !== undefined) {
|
|
60644
61170
|
localVarQueryParameter['limit'] = limit;
|
|
60645
61171
|
}
|
|
@@ -60705,6 +61231,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60705
61231
|
// oauth required
|
|
60706
61232
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60707
61233
|
|
|
61234
|
+
// authentication applicationAuth required
|
|
61235
|
+
// oauth required
|
|
61236
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61237
|
+
|
|
60708
61238
|
|
|
60709
61239
|
|
|
60710
61240
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -60749,6 +61279,10 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60749
61279
|
// oauth required
|
|
60750
61280
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60751
61281
|
|
|
61282
|
+
// authentication applicationAuth required
|
|
61283
|
+
// oauth required
|
|
61284
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61285
|
+
|
|
60752
61286
|
|
|
60753
61287
|
|
|
60754
61288
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -61416,6 +61950,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61416
61950
|
// oauth required
|
|
61417
61951
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61418
61952
|
|
|
61953
|
+
// authentication applicationAuth required
|
|
61954
|
+
// oauth required
|
|
61955
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
61956
|
+
|
|
61419
61957
|
|
|
61420
61958
|
|
|
61421
61959
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -61461,6 +61999,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61461
61999
|
// oauth required
|
|
61462
62000
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61463
62001
|
|
|
62002
|
+
// authentication applicationAuth required
|
|
62003
|
+
// oauth required
|
|
62004
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62005
|
+
|
|
61464
62006
|
|
|
61465
62007
|
|
|
61466
62008
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -61503,6 +62045,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61503
62045
|
// oauth required
|
|
61504
62046
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61505
62047
|
|
|
62048
|
+
// authentication applicationAuth required
|
|
62049
|
+
// oauth required
|
|
62050
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62051
|
+
|
|
61506
62052
|
|
|
61507
62053
|
|
|
61508
62054
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -61546,6 +62092,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61546
62092
|
// oauth required
|
|
61547
62093
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61548
62094
|
|
|
62095
|
+
// authentication applicationAuth required
|
|
62096
|
+
// oauth required
|
|
62097
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62098
|
+
|
|
61549
62099
|
if (offset !== undefined) {
|
|
61550
62100
|
localVarQueryParameter['offset'] = offset;
|
|
61551
62101
|
}
|
|
@@ -61609,6 +62159,10 @@ export const TransformsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
61609
62159
|
// oauth required
|
|
61610
62160
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
61611
62161
|
|
|
62162
|
+
// authentication applicationAuth required
|
|
62163
|
+
// oauth required
|
|
62164
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
62165
|
+
|
|
61612
62166
|
|
|
61613
62167
|
|
|
61614
62168
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -63390,6 +63944,10 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
63390
63944
|
// oauth required
|
|
63391
63945
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
63392
63946
|
|
|
63947
|
+
// authentication applicationAuth required
|
|
63948
|
+
// oauth required
|
|
63949
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
63950
|
+
|
|
63393
63951
|
|
|
63394
63952
|
|
|
63395
63953
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -64099,6 +64657,10 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
64099
64657
|
// oauth required
|
|
64100
64658
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
64101
64659
|
|
|
64660
|
+
// authentication applicationAuth required
|
|
64661
|
+
// oauth required
|
|
64662
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
64663
|
+
|
|
64102
64664
|
|
|
64103
64665
|
|
|
64104
64666
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|