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/v2024/api.ts
CHANGED
|
@@ -183,6 +183,35 @@ export interface AccessCriteriaV2024 {
|
|
|
183
183
|
*/
|
|
184
184
|
'criteriaList'?: Array<AccessCriteriaCriteriaListInnerV2024>;
|
|
185
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @export
|
|
189
|
+
* @interface AccessDurationV2024
|
|
190
|
+
*/
|
|
191
|
+
export interface AccessDurationV2024 {
|
|
192
|
+
/**
|
|
193
|
+
* The numeric value representing the amount of time, which is defined in the **timeUnit**.
|
|
194
|
+
* @type {number}
|
|
195
|
+
* @memberof AccessDurationV2024
|
|
196
|
+
*/
|
|
197
|
+
'value'?: number;
|
|
198
|
+
/**
|
|
199
|
+
* The unit of time that corresponds to the **value**. It defines the scale of the time period.
|
|
200
|
+
* @type {string}
|
|
201
|
+
* @memberof AccessDurationV2024
|
|
202
|
+
*/
|
|
203
|
+
'timeUnit'?: AccessDurationV2024TimeUnitV2024;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export const AccessDurationV2024TimeUnitV2024 = {
|
|
207
|
+
Hours: 'HOURS',
|
|
208
|
+
Days: 'DAYS',
|
|
209
|
+
Weeks: 'WEEKS',
|
|
210
|
+
Months: 'MONTHS'
|
|
211
|
+
} as const;
|
|
212
|
+
|
|
213
|
+
export type AccessDurationV2024TimeUnitV2024 = typeof AccessDurationV2024TimeUnitV2024[keyof typeof AccessDurationV2024TimeUnitV2024];
|
|
214
|
+
|
|
186
215
|
/**
|
|
187
216
|
*
|
|
188
217
|
* @export
|
|
@@ -1979,12 +2008,24 @@ export interface AccessProfileV2024 {
|
|
|
1979
2008
|
* @memberof AccessProfileV2024
|
|
1980
2009
|
*/
|
|
1981
2010
|
'segments'?: Array<string> | null;
|
|
2011
|
+
/**
|
|
2012
|
+
*
|
|
2013
|
+
* @type {AttributeDTOListV2024}
|
|
2014
|
+
* @memberof AccessProfileV2024
|
|
2015
|
+
*/
|
|
2016
|
+
'accessModelMetadata'?: AttributeDTOListV2024;
|
|
1982
2017
|
/**
|
|
1983
2018
|
*
|
|
1984
2019
|
* @type {ProvisioningCriteriaLevel1V2024}
|
|
1985
2020
|
* @memberof AccessProfileV2024
|
|
1986
2021
|
*/
|
|
1987
2022
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1V2024 | null;
|
|
2023
|
+
/**
|
|
2024
|
+
*
|
|
2025
|
+
* @type {Array<OwnerReferenceV2024>}
|
|
2026
|
+
* @memberof AccessProfileV2024
|
|
2027
|
+
*/
|
|
2028
|
+
'additionalOwners'?: Array<OwnerReferenceV2024> | null;
|
|
1988
2029
|
}
|
|
1989
2030
|
/**
|
|
1990
2031
|
*
|
|
@@ -11273,6 +11314,12 @@ export interface CompletedApprovalV2024 {
|
|
|
11273
11314
|
* @memberof CompletedApprovalV2024
|
|
11274
11315
|
*/
|
|
11275
11316
|
'privilegeLevel'?: string | null;
|
|
11317
|
+
/**
|
|
11318
|
+
*
|
|
11319
|
+
* @type {PendingApprovalMaxPermittedAccessDurationV2024}
|
|
11320
|
+
* @memberof CompletedApprovalV2024
|
|
11321
|
+
*/
|
|
11322
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
|
|
11276
11323
|
}
|
|
11277
11324
|
|
|
11278
11325
|
|
|
@@ -14670,6 +14717,18 @@ export interface EntitlementAccessRequestConfigV2024 {
|
|
|
14670
14717
|
* @memberof EntitlementAccessRequestConfigV2024
|
|
14671
14718
|
*/
|
|
14672
14719
|
'reauthorizationRequired'?: boolean;
|
|
14720
|
+
/**
|
|
14721
|
+
* If true, then remove date or sunset date is required in access request of the entitlement.
|
|
14722
|
+
* @type {boolean}
|
|
14723
|
+
* @memberof EntitlementAccessRequestConfigV2024
|
|
14724
|
+
*/
|
|
14725
|
+
'requireEndDate'?: boolean;
|
|
14726
|
+
/**
|
|
14727
|
+
*
|
|
14728
|
+
* @type {PendingApprovalMaxPermittedAccessDurationV2024}
|
|
14729
|
+
* @memberof EntitlementAccessRequestConfigV2024
|
|
14730
|
+
*/
|
|
14731
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
|
|
14673
14732
|
}
|
|
14674
14733
|
/**
|
|
14675
14734
|
*
|
|
@@ -21630,12 +21689,8 @@ export interface JsonPatchOperationV2024 {
|
|
|
21630
21689
|
}
|
|
21631
21690
|
|
|
21632
21691
|
export const JsonPatchOperationV2024OpV2024 = {
|
|
21633
|
-
Add: 'add',
|
|
21634
21692
|
Remove: 'remove',
|
|
21635
|
-
Replace: 'replace'
|
|
21636
|
-
Move: 'move',
|
|
21637
|
-
Copy: 'copy',
|
|
21638
|
-
Test: 'test'
|
|
21693
|
+
Replace: 'replace'
|
|
21639
21694
|
} as const;
|
|
21640
21695
|
|
|
21641
21696
|
export type JsonPatchOperationV2024OpV2024 = typeof JsonPatchOperationV2024OpV2024[keyof typeof JsonPatchOperationV2024OpV2024];
|
|
@@ -24098,14 +24153,22 @@ export interface ManagedClusterTypeV2024 {
|
|
|
24098
24153
|
'managedProcessIds'?: Array<string>;
|
|
24099
24154
|
}
|
|
24100
24155
|
/**
|
|
24101
|
-
* The Type of Cluster
|
|
24156
|
+
* 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
|
|
24102
24157
|
* @export
|
|
24103
24158
|
* @enum {string}
|
|
24104
24159
|
*/
|
|
24105
24160
|
|
|
24106
24161
|
export const ManagedClusterTypesV2024 = {
|
|
24107
24162
|
Idn: 'idn',
|
|
24108
|
-
Iai: 'iai'
|
|
24163
|
+
Iai: 'iai',
|
|
24164
|
+
SpConnectCluster: 'spConnectCluster',
|
|
24165
|
+
SqsCluster: 'sqsCluster',
|
|
24166
|
+
DasRc: 'das-rc',
|
|
24167
|
+
DasPc: 'das-pc',
|
|
24168
|
+
DasDc: 'das-dc',
|
|
24169
|
+
Pag: 'pag',
|
|
24170
|
+
DasAm: 'das-am',
|
|
24171
|
+
Standard: 'standard'
|
|
24109
24172
|
} as const;
|
|
24110
24173
|
|
|
24111
24174
|
export type ManagedClusterTypesV2024 = typeof ManagedClusterTypesV2024[keyof typeof ManagedClusterTypesV2024];
|
|
@@ -28670,6 +28733,35 @@ export const PendingApprovalActionV2024 = {
|
|
|
28670
28733
|
export type PendingApprovalActionV2024 = typeof PendingApprovalActionV2024[keyof typeof PendingApprovalActionV2024];
|
|
28671
28734
|
|
|
28672
28735
|
|
|
28736
|
+
/**
|
|
28737
|
+
* The maximum duration for which the access is permitted.
|
|
28738
|
+
* @export
|
|
28739
|
+
* @interface PendingApprovalMaxPermittedAccessDurationV2024
|
|
28740
|
+
*/
|
|
28741
|
+
export interface PendingApprovalMaxPermittedAccessDurationV2024 {
|
|
28742
|
+
/**
|
|
28743
|
+
* The numeric value of the duration.
|
|
28744
|
+
* @type {number}
|
|
28745
|
+
* @memberof PendingApprovalMaxPermittedAccessDurationV2024
|
|
28746
|
+
*/
|
|
28747
|
+
'value'?: number;
|
|
28748
|
+
/**
|
|
28749
|
+
* The time unit for the duration.
|
|
28750
|
+
* @type {string}
|
|
28751
|
+
* @memberof PendingApprovalMaxPermittedAccessDurationV2024
|
|
28752
|
+
*/
|
|
28753
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024;
|
|
28754
|
+
}
|
|
28755
|
+
|
|
28756
|
+
export const PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024 = {
|
|
28757
|
+
Hours: 'HOURS',
|
|
28758
|
+
Days: 'DAYS',
|
|
28759
|
+
Weeks: 'WEEKS',
|
|
28760
|
+
Months: 'MONTHS'
|
|
28761
|
+
} as const;
|
|
28762
|
+
|
|
28763
|
+
export type PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024 = typeof PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024[keyof typeof PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024];
|
|
28764
|
+
|
|
28673
28765
|
/**
|
|
28674
28766
|
* Access item owner\'s identity.
|
|
28675
28767
|
* @export
|
|
@@ -28846,6 +28938,12 @@ export interface PendingApprovalV2024 {
|
|
|
28846
28938
|
* @memberof PendingApprovalV2024
|
|
28847
28939
|
*/
|
|
28848
28940
|
'privilegeLevel'?: string | null;
|
|
28941
|
+
/**
|
|
28942
|
+
*
|
|
28943
|
+
* @type {PendingApprovalMaxPermittedAccessDurationV2024}
|
|
28944
|
+
* @memberof PendingApprovalV2024
|
|
28945
|
+
*/
|
|
28946
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
|
|
28849
28947
|
}
|
|
28850
28948
|
|
|
28851
28949
|
|
|
@@ -30934,6 +31032,18 @@ export interface RequestabilityV2024 {
|
|
|
30934
31032
|
* @memberof RequestabilityV2024
|
|
30935
31033
|
*/
|
|
30936
31034
|
'reauthorizationRequired'?: boolean | null;
|
|
31035
|
+
/**
|
|
31036
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
31037
|
+
* @type {boolean}
|
|
31038
|
+
* @memberof RequestabilityV2024
|
|
31039
|
+
*/
|
|
31040
|
+
'requireEndDate'?: boolean | null;
|
|
31041
|
+
/**
|
|
31042
|
+
*
|
|
31043
|
+
* @type {AccessDurationV2024}
|
|
31044
|
+
* @memberof RequestabilityV2024
|
|
31045
|
+
*/
|
|
31046
|
+
'maxPermittedAccessDuration'?: AccessDurationV2024 | null;
|
|
30937
31047
|
/**
|
|
30938
31048
|
* List describing the steps involved in approving the request.
|
|
30939
31049
|
* @type {Array<AccessProfileApprovalSchemeV2024>}
|
|
@@ -34058,6 +34168,25 @@ export interface RoleMiningEntitlementV2024 {
|
|
|
34058
34168
|
*/
|
|
34059
34169
|
'sourceUsagePercent'?: number | null;
|
|
34060
34170
|
}
|
|
34171
|
+
/**
|
|
34172
|
+
*
|
|
34173
|
+
* @export
|
|
34174
|
+
* @interface RoleMiningIdentityDistributionDistributionInnerV2024
|
|
34175
|
+
*/
|
|
34176
|
+
export interface RoleMiningIdentityDistributionDistributionInnerV2024 {
|
|
34177
|
+
/**
|
|
34178
|
+
* The attribute value that identities are grouped by
|
|
34179
|
+
* @type {string}
|
|
34180
|
+
* @memberof RoleMiningIdentityDistributionDistributionInnerV2024
|
|
34181
|
+
*/
|
|
34182
|
+
'attributeValue'?: string;
|
|
34183
|
+
/**
|
|
34184
|
+
* The number of identities that have this attribute value
|
|
34185
|
+
* @type {number}
|
|
34186
|
+
* @memberof RoleMiningIdentityDistributionDistributionInnerV2024
|
|
34187
|
+
*/
|
|
34188
|
+
'count'?: number;
|
|
34189
|
+
}
|
|
34061
34190
|
/**
|
|
34062
34191
|
*
|
|
34063
34192
|
* @export
|
|
@@ -34072,10 +34201,10 @@ export interface RoleMiningIdentityDistributionV2024 {
|
|
|
34072
34201
|
'attributeName'?: string;
|
|
34073
34202
|
/**
|
|
34074
34203
|
*
|
|
34075
|
-
* @type {Array<
|
|
34204
|
+
* @type {Array<RoleMiningIdentityDistributionDistributionInnerV2024>}
|
|
34076
34205
|
* @memberof RoleMiningIdentityDistributionV2024
|
|
34077
34206
|
*/
|
|
34078
|
-
'distribution'?: Array<
|
|
34207
|
+
'distribution'?: Array<RoleMiningIdentityDistributionDistributionInnerV2024>;
|
|
34079
34208
|
}
|
|
34080
34209
|
/**
|
|
34081
34210
|
*
|
|
@@ -39284,7 +39413,7 @@ export interface SourceAppPatchDtoV2024 {
|
|
|
39284
39413
|
*/
|
|
39285
39414
|
'enabled'?: boolean;
|
|
39286
39415
|
/**
|
|
39287
|
-
* True if the
|
|
39416
|
+
* True if the app allows access request
|
|
39288
39417
|
* @type {boolean}
|
|
39289
39418
|
* @memberof SourceAppPatchDtoV2024
|
|
39290
39419
|
*/
|
|
@@ -39302,7 +39431,7 @@ export interface SourceAppPatchDtoV2024 {
|
|
|
39302
39431
|
*/
|
|
39303
39432
|
'matchAllAccounts'?: boolean;
|
|
39304
39433
|
/**
|
|
39305
|
-
* True if the
|
|
39434
|
+
* True if the app is visible in the request center
|
|
39306
39435
|
* @type {boolean}
|
|
39307
39436
|
* @memberof SourceAppPatchDtoV2024
|
|
39308
39437
|
*/
|
|
@@ -39369,7 +39498,7 @@ export interface SourceAppV2024 {
|
|
|
39369
39498
|
*/
|
|
39370
39499
|
'enabled'?: boolean;
|
|
39371
39500
|
/**
|
|
39372
|
-
* True if the
|
|
39501
|
+
* True if the app allows access request
|
|
39373
39502
|
* @type {boolean}
|
|
39374
39503
|
* @memberof SourceAppV2024
|
|
39375
39504
|
*/
|
|
@@ -39387,7 +39516,7 @@ export interface SourceAppV2024 {
|
|
|
39387
39516
|
*/
|
|
39388
39517
|
'matchAllAccounts'?: boolean;
|
|
39389
39518
|
/**
|
|
39390
|
-
* True if the
|
|
39519
|
+
* True if the app is visible in the request center
|
|
39391
39520
|
* @type {boolean}
|
|
39392
39521
|
* @memberof SourceAppV2024
|
|
39393
39522
|
*/
|
|
@@ -43740,13 +43869,13 @@ export interface UserAppV2024 {
|
|
|
43740
43869
|
*/
|
|
43741
43870
|
'useForPasswordManagement'?: boolean;
|
|
43742
43871
|
/**
|
|
43743
|
-
* True if the
|
|
43872
|
+
* True if the app allows access request
|
|
43744
43873
|
* @type {boolean}
|
|
43745
43874
|
* @memberof UserAppV2024
|
|
43746
43875
|
*/
|
|
43747
43876
|
'provisionRequestEnabled'?: boolean;
|
|
43748
43877
|
/**
|
|
43749
|
-
* True if the
|
|
43878
|
+
* True if the app is visible in the request center
|
|
43750
43879
|
* @type {boolean}
|
|
43751
43880
|
* @memberof UserAppV2024
|
|
43752
43881
|
*/
|
|
@@ -45595,6 +45724,10 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45595
45724
|
// oauth required
|
|
45596
45725
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45597
45726
|
|
|
45727
|
+
// authentication applicationAuth required
|
|
45728
|
+
// oauth required
|
|
45729
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45730
|
+
|
|
45598
45731
|
|
|
45599
45732
|
|
|
45600
45733
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -45641,6 +45774,10 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45641
45774
|
// oauth required
|
|
45642
45775
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45643
45776
|
|
|
45777
|
+
// authentication applicationAuth required
|
|
45778
|
+
// oauth required
|
|
45779
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45780
|
+
|
|
45644
45781
|
|
|
45645
45782
|
|
|
45646
45783
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -45684,6 +45821,10 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45684
45821
|
// oauth required
|
|
45685
45822
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45686
45823
|
|
|
45824
|
+
// authentication applicationAuth required
|
|
45825
|
+
// oauth required
|
|
45826
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45827
|
+
|
|
45687
45828
|
if (filters !== undefined) {
|
|
45688
45829
|
localVarQueryParameter['filters'] = filters;
|
|
45689
45830
|
}
|
|
@@ -45749,6 +45890,10 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45749
45890
|
// oauth required
|
|
45750
45891
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45751
45892
|
|
|
45893
|
+
// authentication applicationAuth required
|
|
45894
|
+
// oauth required
|
|
45895
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45896
|
+
|
|
45752
45897
|
if (offset !== undefined) {
|
|
45753
45898
|
localVarQueryParameter['offset'] = offset;
|
|
45754
45899
|
}
|
|
@@ -46101,10 +46246,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46101
46246
|
// oauth required
|
|
46102
46247
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46103
46248
|
|
|
46104
|
-
// authentication applicationAuth required
|
|
46105
|
-
// oauth required
|
|
46106
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46107
|
-
|
|
46108
46249
|
|
|
46109
46250
|
|
|
46110
46251
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -46150,10 +46291,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46150
46291
|
// oauth required
|
|
46151
46292
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46152
46293
|
|
|
46153
|
-
// authentication applicationAuth required
|
|
46154
|
-
// oauth required
|
|
46155
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46156
|
-
|
|
46157
46294
|
|
|
46158
46295
|
|
|
46159
46296
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -46195,10 +46332,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46195
46332
|
// oauth required
|
|
46196
46333
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46197
46334
|
|
|
46198
|
-
// authentication applicationAuth required
|
|
46199
|
-
// oauth required
|
|
46200
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46201
|
-
|
|
46202
46335
|
|
|
46203
46336
|
|
|
46204
46337
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -46244,10 +46377,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46244
46377
|
// oauth required
|
|
46245
46378
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46246
46379
|
|
|
46247
|
-
// authentication applicationAuth required
|
|
46248
|
-
// oauth required
|
|
46249
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46250
|
-
|
|
46251
46380
|
|
|
46252
46381
|
|
|
46253
46382
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -46295,10 +46424,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46295
46424
|
// oauth required
|
|
46296
46425
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46297
46426
|
|
|
46298
|
-
// authentication applicationAuth required
|
|
46299
|
-
// oauth required
|
|
46300
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46301
|
-
|
|
46302
46427
|
if (limit !== undefined) {
|
|
46303
46428
|
localVarQueryParameter['limit'] = limit;
|
|
46304
46429
|
}
|
|
@@ -46365,10 +46490,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46365
46490
|
// oauth required
|
|
46366
46491
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46367
46492
|
|
|
46368
|
-
// authentication applicationAuth required
|
|
46369
|
-
// oauth required
|
|
46370
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46371
|
-
|
|
46372
46493
|
if (forSubadmin !== undefined) {
|
|
46373
46494
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
46374
46495
|
}
|
|
@@ -46446,10 +46567,6 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
46446
46567
|
// oauth required
|
|
46447
46568
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46448
46569
|
|
|
46449
|
-
// authentication applicationAuth required
|
|
46450
|
-
// oauth required
|
|
46451
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46452
|
-
|
|
46453
46570
|
|
|
46454
46571
|
|
|
46455
46572
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -47133,11 +47250,11 @@ export const AccessRequestApprovalsV2024ApiAxiosParamCreator = function (configu
|
|
|
47133
47250
|
|
|
47134
47251
|
// authentication userAuth required
|
|
47135
47252
|
// oauth required
|
|
47136
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
47253
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47137
47254
|
|
|
47138
47255
|
// authentication userAuth required
|
|
47139
47256
|
// oauth required
|
|
47140
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
47257
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47141
47258
|
|
|
47142
47259
|
|
|
47143
47260
|
|
|
@@ -47422,11 +47539,11 @@ export const AccessRequestApprovalsV2024ApiAxiosParamCreator = function (configu
|
|
|
47422
47539
|
|
|
47423
47540
|
// authentication userAuth required
|
|
47424
47541
|
// oauth required
|
|
47425
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
47542
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47426
47543
|
|
|
47427
47544
|
// authentication userAuth required
|
|
47428
47545
|
// oauth required
|
|
47429
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
47546
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
47430
47547
|
|
|
47431
47548
|
|
|
47432
47549
|
|
|
@@ -49932,6 +50049,10 @@ export const AccountUsagesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
49932
50049
|
// oauth required
|
|
49933
50050
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
49934
50051
|
|
|
50052
|
+
// authentication applicationAuth required
|
|
50053
|
+
// oauth required
|
|
50054
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50055
|
+
|
|
49935
50056
|
if (limit !== undefined) {
|
|
49936
50057
|
localVarQueryParameter['limit'] = limit;
|
|
49937
50058
|
}
|
|
@@ -50109,6 +50230,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50109
50230
|
// oauth required
|
|
50110
50231
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50111
50232
|
|
|
50233
|
+
// authentication applicationAuth required
|
|
50234
|
+
// oauth required
|
|
50235
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50236
|
+
|
|
50112
50237
|
|
|
50113
50238
|
|
|
50114
50239
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50154,6 +50279,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50154
50279
|
// oauth required
|
|
50155
50280
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50156
50281
|
|
|
50282
|
+
// authentication applicationAuth required
|
|
50283
|
+
// oauth required
|
|
50284
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50285
|
+
|
|
50157
50286
|
|
|
50158
50287
|
|
|
50159
50288
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50196,6 +50325,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50196
50325
|
// oauth required
|
|
50197
50326
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50198
50327
|
|
|
50328
|
+
// authentication applicationAuth required
|
|
50329
|
+
// oauth required
|
|
50330
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50331
|
+
|
|
50199
50332
|
|
|
50200
50333
|
|
|
50201
50334
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50241,6 +50374,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50241
50374
|
// oauth required
|
|
50242
50375
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50243
50376
|
|
|
50377
|
+
// authentication applicationAuth required
|
|
50378
|
+
// oauth required
|
|
50379
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50380
|
+
|
|
50244
50381
|
|
|
50245
50382
|
|
|
50246
50383
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50286,6 +50423,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50286
50423
|
// oauth required
|
|
50287
50424
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50288
50425
|
|
|
50426
|
+
// authentication applicationAuth required
|
|
50427
|
+
// oauth required
|
|
50428
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50429
|
+
|
|
50289
50430
|
|
|
50290
50431
|
|
|
50291
50432
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50327,6 +50468,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50327
50468
|
// oauth required
|
|
50328
50469
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50329
50470
|
|
|
50471
|
+
// authentication applicationAuth required
|
|
50472
|
+
// oauth required
|
|
50473
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50474
|
+
|
|
50330
50475
|
|
|
50331
50476
|
|
|
50332
50477
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50375,6 +50520,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50375
50520
|
// oauth required
|
|
50376
50521
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50377
50522
|
|
|
50523
|
+
// authentication applicationAuth required
|
|
50524
|
+
// oauth required
|
|
50525
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50526
|
+
|
|
50378
50527
|
|
|
50379
50528
|
|
|
50380
50529
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50420,6 +50569,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50420
50569
|
// oauth required
|
|
50421
50570
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50422
50571
|
|
|
50572
|
+
// authentication applicationAuth required
|
|
50573
|
+
// oauth required
|
|
50574
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50575
|
+
|
|
50423
50576
|
|
|
50424
50577
|
|
|
50425
50578
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50461,6 +50614,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50461
50614
|
// oauth required
|
|
50462
50615
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50463
50616
|
|
|
50617
|
+
// authentication applicationAuth required
|
|
50618
|
+
// oauth required
|
|
50619
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50620
|
+
|
|
50464
50621
|
|
|
50465
50622
|
|
|
50466
50623
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50506,6 +50663,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50506
50663
|
// oauth required
|
|
50507
50664
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50508
50665
|
|
|
50666
|
+
// authentication applicationAuth required
|
|
50667
|
+
// oauth required
|
|
50668
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50669
|
+
|
|
50509
50670
|
|
|
50510
50671
|
|
|
50511
50672
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50551,6 +50712,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50551
50712
|
// oauth required
|
|
50552
50713
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50553
50714
|
|
|
50715
|
+
// authentication applicationAuth required
|
|
50716
|
+
// oauth required
|
|
50717
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50718
|
+
|
|
50554
50719
|
if (limit !== undefined) {
|
|
50555
50720
|
localVarQueryParameter['limit'] = limit;
|
|
50556
50721
|
}
|
|
@@ -50607,6 +50772,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50607
50772
|
// oauth required
|
|
50608
50773
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50609
50774
|
|
|
50775
|
+
// authentication applicationAuth required
|
|
50776
|
+
// oauth required
|
|
50777
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50778
|
+
|
|
50610
50779
|
if (limit !== undefined) {
|
|
50611
50780
|
localVarQueryParameter['limit'] = limit;
|
|
50612
50781
|
}
|
|
@@ -50676,6 +50845,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50676
50845
|
// oauth required
|
|
50677
50846
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50678
50847
|
|
|
50848
|
+
// authentication applicationAuth required
|
|
50849
|
+
// oauth required
|
|
50850
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50851
|
+
|
|
50679
50852
|
|
|
50680
50853
|
|
|
50681
50854
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50721,6 +50894,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50721
50894
|
// oauth required
|
|
50722
50895
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50723
50896
|
|
|
50897
|
+
// authentication applicationAuth required
|
|
50898
|
+
// oauth required
|
|
50899
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50900
|
+
|
|
50724
50901
|
|
|
50725
50902
|
|
|
50726
50903
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -50766,6 +50943,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50766
50943
|
// oauth required
|
|
50767
50944
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50768
50945
|
|
|
50946
|
+
// authentication applicationAuth required
|
|
50947
|
+
// oauth required
|
|
50948
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
50949
|
+
|
|
50769
50950
|
|
|
50770
50951
|
|
|
50771
50952
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -50814,6 +50995,10 @@ export const AccountsV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50814
50995
|
// oauth required
|
|
50815
50996
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50816
50997
|
|
|
50998
|
+
// authentication applicationAuth required
|
|
50999
|
+
// oauth required
|
|
51000
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
51001
|
+
|
|
50817
51002
|
|
|
50818
51003
|
|
|
50819
51004
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -51895,6 +52080,10 @@ export const ApplicationDiscoveryV2024ApiAxiosParamCreator = function (configura
|
|
|
51895
52080
|
// oauth required
|
|
51896
52081
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
51897
52082
|
|
|
52083
|
+
// authentication applicationAuth required
|
|
52084
|
+
// oauth required
|
|
52085
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52086
|
+
|
|
51898
52087
|
|
|
51899
52088
|
if (file !== undefined) {
|
|
51900
52089
|
localVarFormParams.append('file', file as any);
|
|
@@ -52437,6 +52626,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52437
52626
|
// oauth required
|
|
52438
52627
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52439
52628
|
|
|
52629
|
+
// authentication applicationAuth required
|
|
52630
|
+
// oauth required
|
|
52631
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52632
|
+
|
|
52440
52633
|
|
|
52441
52634
|
|
|
52442
52635
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -52494,6 +52687,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52494
52687
|
// oauth required
|
|
52495
52688
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52496
52689
|
|
|
52690
|
+
// authentication applicationAuth required
|
|
52691
|
+
// oauth required
|
|
52692
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52693
|
+
|
|
52497
52694
|
if (limit !== undefined) {
|
|
52498
52695
|
localVarQueryParameter['limit'] = limit;
|
|
52499
52696
|
}
|
|
@@ -52551,6 +52748,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52551
52748
|
// oauth required
|
|
52552
52749
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52553
52750
|
|
|
52751
|
+
// authentication applicationAuth required
|
|
52752
|
+
// oauth required
|
|
52753
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52754
|
+
|
|
52554
52755
|
|
|
52555
52756
|
|
|
52556
52757
|
if (xSailPointExperimental != null) {
|
|
@@ -52601,6 +52802,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52601
52802
|
// oauth required
|
|
52602
52803
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52603
52804
|
|
|
52805
|
+
// authentication applicationAuth required
|
|
52806
|
+
// oauth required
|
|
52807
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52808
|
+
|
|
52604
52809
|
|
|
52605
52810
|
|
|
52606
52811
|
if (xSailPointExperimental != null) {
|
|
@@ -52654,6 +52859,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52654
52859
|
// oauth required
|
|
52655
52860
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52656
52861
|
|
|
52862
|
+
// authentication applicationAuth required
|
|
52863
|
+
// oauth required
|
|
52864
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52865
|
+
|
|
52657
52866
|
if (limit !== undefined) {
|
|
52658
52867
|
localVarQueryParameter['limit'] = limit;
|
|
52659
52868
|
}
|
|
@@ -52789,6 +52998,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52789
52998
|
// oauth required
|
|
52790
52999
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52791
53000
|
|
|
53001
|
+
// authentication applicationAuth required
|
|
53002
|
+
// oauth required
|
|
53003
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53004
|
+
|
|
52792
53005
|
if (limit !== undefined) {
|
|
52793
53006
|
localVarQueryParameter['limit'] = limit;
|
|
52794
53007
|
}
|
|
@@ -52856,6 +53069,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52856
53069
|
// oauth required
|
|
52857
53070
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52858
53071
|
|
|
53072
|
+
// authentication applicationAuth required
|
|
53073
|
+
// oauth required
|
|
53074
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53075
|
+
|
|
52859
53076
|
if (limit !== undefined) {
|
|
52860
53077
|
localVarQueryParameter['limit'] = limit;
|
|
52861
53078
|
}
|
|
@@ -52928,6 +53145,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52928
53145
|
// oauth required
|
|
52929
53146
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52930
53147
|
|
|
53148
|
+
// authentication applicationAuth required
|
|
53149
|
+
// oauth required
|
|
53150
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53151
|
+
|
|
52931
53152
|
if (limit !== undefined) {
|
|
52932
53153
|
localVarQueryParameter['limit'] = limit;
|
|
52933
53154
|
}
|
|
@@ -52987,6 +53208,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52987
53208
|
// oauth required
|
|
52988
53209
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52989
53210
|
|
|
53211
|
+
// authentication applicationAuth required
|
|
53212
|
+
// oauth required
|
|
53213
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53214
|
+
|
|
52990
53215
|
if (limit !== undefined) {
|
|
52991
53216
|
localVarQueryParameter['limit'] = limit;
|
|
52992
53217
|
}
|
|
@@ -53057,6 +53282,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
53057
53282
|
// oauth required
|
|
53058
53283
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53059
53284
|
|
|
53285
|
+
// authentication applicationAuth required
|
|
53286
|
+
// oauth required
|
|
53287
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53288
|
+
|
|
53060
53289
|
if (limit !== undefined) {
|
|
53061
53290
|
localVarQueryParameter['limit'] = limit;
|
|
53062
53291
|
}
|
|
@@ -53124,6 +53353,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
53124
53353
|
// oauth required
|
|
53125
53354
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53126
53355
|
|
|
53356
|
+
// authentication applicationAuth required
|
|
53357
|
+
// oauth required
|
|
53358
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53359
|
+
|
|
53127
53360
|
|
|
53128
53361
|
|
|
53129
53362
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -53228,6 +53461,10 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
53228
53461
|
// oauth required
|
|
53229
53462
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
53230
53463
|
|
|
53464
|
+
// authentication applicationAuth required
|
|
53465
|
+
// oauth required
|
|
53466
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
53467
|
+
|
|
53231
53468
|
|
|
53232
53469
|
|
|
53233
53470
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -59027,7 +59264,7 @@ export const CertificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
59027
59264
|
};
|
|
59028
59265
|
},
|
|
59029
59266
|
/**
|
|
59030
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
59267
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
59031
59268
|
* @summary Identity certification by id
|
|
59032
59269
|
* @param {string} id The certification id
|
|
59033
59270
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59373,11 +59610,11 @@ export const CertificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
59373
59610
|
|
|
59374
59611
|
// authentication userAuth required
|
|
59375
59612
|
// oauth required
|
|
59376
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59613
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59377
59614
|
|
|
59378
59615
|
// authentication userAuth required
|
|
59379
59616
|
// oauth required
|
|
59380
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59617
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59381
59618
|
|
|
59382
59619
|
if (reviewerIdentity !== undefined) {
|
|
59383
59620
|
localVarQueryParameter['reviewer-identity'] = reviewerIdentity;
|
|
@@ -59490,11 +59727,11 @@ export const CertificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
59490
59727
|
|
|
59491
59728
|
// authentication userAuth required
|
|
59492
59729
|
// oauth required
|
|
59493
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59730
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59494
59731
|
|
|
59495
59732
|
// authentication userAuth required
|
|
59496
59733
|
// oauth required
|
|
59497
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
59734
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59498
59735
|
|
|
59499
59736
|
|
|
59500
59737
|
|
|
@@ -59624,7 +59861,7 @@ export const CertificationsV2024ApiFp = function(configuration?: Configuration)
|
|
|
59624
59861
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
59625
59862
|
},
|
|
59626
59863
|
/**
|
|
59627
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
59864
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
59628
59865
|
* @summary Identity certification by id
|
|
59629
59866
|
* @param {string} id The certification id
|
|
59630
59867
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59804,7 +60041,7 @@ export const CertificationsV2024ApiFactory = function (configuration?: Configura
|
|
|
59804
60041
|
return localVarFp.getCertificationTask(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
59805
60042
|
},
|
|
59806
60043
|
/**
|
|
59807
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
60044
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
59808
60045
|
* @summary Identity certification by id
|
|
59809
60046
|
* @param {CertificationsV2024ApiGetIdentityCertificationRequest} requestParameters Request parameters.
|
|
59810
60047
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60290,7 +60527,7 @@ export class CertificationsV2024Api extends BaseAPI {
|
|
|
60290
60527
|
}
|
|
60291
60528
|
|
|
60292
60529
|
/**
|
|
60293
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
60530
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
60294
60531
|
* @summary Identity certification by id
|
|
60295
60532
|
* @param {CertificationsV2024ApiGetIdentityCertificationRequest} requestParameters Request parameters.
|
|
60296
60533
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65767,12 +66004,13 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
65767
66004
|
};
|
|
65768
66005
|
},
|
|
65769
66006
|
/**
|
|
65770
|
-
*
|
|
66007
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
65771
66008
|
* @summary List form instances by tenant.
|
|
66009
|
+
* @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: **formDefinitionId**: *eq*
|
|
65772
66010
|
* @param {*} [axiosOptions] Override http request option.
|
|
65773
66011
|
* @throws {RequiredError}
|
|
65774
66012
|
*/
|
|
65775
|
-
searchFormInstancesByTenant: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
66013
|
+
searchFormInstancesByTenant: async (filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
65776
66014
|
const localVarPath = `/form-instances`;
|
|
65777
66015
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
65778
66016
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -65793,6 +66031,10 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
65793
66031
|
// oauth required
|
|
65794
66032
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
65795
66033
|
|
|
66034
|
+
if (filters !== undefined) {
|
|
66035
|
+
localVarQueryParameter['filters'] = filters;
|
|
66036
|
+
}
|
|
66037
|
+
|
|
65796
66038
|
|
|
65797
66039
|
|
|
65798
66040
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -66124,13 +66366,14 @@ export const CustomFormsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
66124
66366
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
66125
66367
|
},
|
|
66126
66368
|
/**
|
|
66127
|
-
*
|
|
66369
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
66128
66370
|
* @summary List form instances by tenant.
|
|
66371
|
+
* @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: **formDefinitionId**: *eq*
|
|
66129
66372
|
* @param {*} [axiosOptions] Override http request option.
|
|
66130
66373
|
* @throws {RequiredError}
|
|
66131
66374
|
*/
|
|
66132
|
-
async searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>> {
|
|
66133
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchFormInstancesByTenant(axiosOptions);
|
|
66375
|
+
async searchFormInstancesByTenant(filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>> {
|
|
66376
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchFormInstancesByTenant(filters, axiosOptions);
|
|
66134
66377
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
66135
66378
|
const localVarOperationServerBasePath = operationServerMap['CustomFormsV2024Api.searchFormInstancesByTenant']?.[localVarOperationServerIndex]?.url;
|
|
66136
66379
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -66325,13 +66568,14 @@ export const CustomFormsV2024ApiFactory = function (configuration?: Configuratio
|
|
|
66325
66568
|
return localVarFp.searchFormElementDataByElementID(requestParameters.formInstanceID, requestParameters.formElementID, requestParameters.limit, requestParameters.filters, requestParameters.query, axiosOptions).then((request) => request(axios, basePath));
|
|
66326
66569
|
},
|
|
66327
66570
|
/**
|
|
66328
|
-
*
|
|
66571
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
66329
66572
|
* @summary List form instances by tenant.
|
|
66573
|
+
* @param {CustomFormsV2024ApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
66330
66574
|
* @param {*} [axiosOptions] Override http request option.
|
|
66331
66575
|
* @throws {RequiredError}
|
|
66332
66576
|
*/
|
|
66333
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>> {
|
|
66334
|
-
return localVarFp.searchFormInstancesByTenant(axiosOptions).then((request) => request(axios, basePath));
|
|
66577
|
+
searchFormInstancesByTenant(requestParameters: CustomFormsV2024ApiSearchFormInstancesByTenantRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>> {
|
|
66578
|
+
return localVarFp.searchFormInstancesByTenant(requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
66335
66579
|
},
|
|
66336
66580
|
/**
|
|
66337
66581
|
* No parameters required.
|
|
@@ -66670,6 +66914,20 @@ export interface CustomFormsV2024ApiSearchFormElementDataByElementIDRequest {
|
|
|
66670
66914
|
readonly query?: string
|
|
66671
66915
|
}
|
|
66672
66916
|
|
|
66917
|
+
/**
|
|
66918
|
+
* Request parameters for searchFormInstancesByTenant operation in CustomFormsV2024Api.
|
|
66919
|
+
* @export
|
|
66920
|
+
* @interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest
|
|
66921
|
+
*/
|
|
66922
|
+
export interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest {
|
|
66923
|
+
/**
|
|
66924
|
+
* 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: **formDefinitionId**: *eq*
|
|
66925
|
+
* @type {string}
|
|
66926
|
+
* @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
|
|
66927
|
+
*/
|
|
66928
|
+
readonly filters?: string
|
|
66929
|
+
}
|
|
66930
|
+
|
|
66673
66931
|
/**
|
|
66674
66932
|
* Request parameters for showPreviewDataSource operation in CustomFormsV2024Api.
|
|
66675
66933
|
* @export
|
|
@@ -66900,14 +67158,15 @@ export class CustomFormsV2024Api extends BaseAPI {
|
|
|
66900
67158
|
}
|
|
66901
67159
|
|
|
66902
67160
|
/**
|
|
66903
|
-
*
|
|
67161
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
66904
67162
|
* @summary List form instances by tenant.
|
|
67163
|
+
* @param {CustomFormsV2024ApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
66905
67164
|
* @param {*} [axiosOptions] Override http request option.
|
|
66906
67165
|
* @throws {RequiredError}
|
|
66907
67166
|
* @memberof CustomFormsV2024Api
|
|
66908
67167
|
*/
|
|
66909
|
-
public searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig) {
|
|
66910
|
-
return CustomFormsV2024ApiFp(this.configuration).searchFormInstancesByTenant(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
67168
|
+
public searchFormInstancesByTenant(requestParameters: CustomFormsV2024ApiSearchFormInstancesByTenantRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
67169
|
+
return CustomFormsV2024ApiFp(this.configuration).searchFormInstancesByTenant(requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
66911
67170
|
}
|
|
66912
67171
|
|
|
66913
67172
|
/**
|
|
@@ -67396,10 +67655,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67396
67655
|
// oauth required
|
|
67397
67656
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67398
67657
|
|
|
67399
|
-
// authentication applicationAuth required
|
|
67400
|
-
// oauth required
|
|
67401
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67402
|
-
|
|
67403
67658
|
|
|
67404
67659
|
|
|
67405
67660
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -67451,10 +67706,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67451
67706
|
// oauth required
|
|
67452
67707
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67453
67708
|
|
|
67454
|
-
// authentication applicationAuth required
|
|
67455
|
-
// oauth required
|
|
67456
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67457
|
-
|
|
67458
67709
|
if (published !== undefined) {
|
|
67459
67710
|
localVarQueryParameter['published'] = published;
|
|
67460
67711
|
}
|
|
@@ -67509,10 +67760,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67509
67760
|
// oauth required
|
|
67510
67761
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67511
67762
|
|
|
67512
|
-
// authentication applicationAuth required
|
|
67513
|
-
// oauth required
|
|
67514
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67515
|
-
|
|
67516
67763
|
|
|
67517
67764
|
|
|
67518
67765
|
if (xSailPointExperimental != null) {
|
|
@@ -67563,10 +67810,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67563
67810
|
// oauth required
|
|
67564
67811
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67565
67812
|
|
|
67566
|
-
// authentication applicationAuth required
|
|
67567
|
-
// oauth required
|
|
67568
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67569
|
-
|
|
67570
67813
|
|
|
67571
67814
|
|
|
67572
67815
|
if (xSailPointExperimental != null) {
|
|
@@ -67617,10 +67860,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67617
67860
|
// oauth required
|
|
67618
67861
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67619
67862
|
|
|
67620
|
-
// authentication applicationAuth required
|
|
67621
|
-
// oauth required
|
|
67622
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67623
|
-
|
|
67624
67863
|
|
|
67625
67864
|
|
|
67626
67865
|
if (xSailPointExperimental != null) {
|
|
@@ -67674,10 +67913,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67674
67913
|
// oauth required
|
|
67675
67914
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67676
67915
|
|
|
67677
|
-
// authentication applicationAuth required
|
|
67678
|
-
// oauth required
|
|
67679
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67680
|
-
|
|
67681
67916
|
if (enabled !== undefined) {
|
|
67682
67917
|
localVarQueryParameter['enabled'] = enabled;
|
|
67683
67918
|
}
|
|
@@ -67759,10 +67994,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67759
67994
|
// oauth required
|
|
67760
67995
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67761
67996
|
|
|
67762
|
-
// authentication applicationAuth required
|
|
67763
|
-
// oauth required
|
|
67764
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67765
|
-
|
|
67766
67997
|
|
|
67767
67998
|
|
|
67768
67999
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -67816,10 +68047,6 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67816
68047
|
// oauth required
|
|
67817
68048
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67818
68049
|
|
|
67819
|
-
// authentication applicationAuth required
|
|
67820
|
-
// oauth required
|
|
67821
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
67822
|
-
|
|
67823
68050
|
if (publishAll !== undefined) {
|
|
67824
68051
|
localVarQueryParameter['publishAll'] = publishAll;
|
|
67825
68052
|
}
|
|
@@ -69608,6 +69835,10 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69608
69835
|
// oauth required
|
|
69609
69836
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
69610
69837
|
|
|
69838
|
+
// authentication applicationAuth required
|
|
69839
|
+
// oauth required
|
|
69840
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
69841
|
+
|
|
69611
69842
|
|
|
69612
69843
|
|
|
69613
69844
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -69650,6 +69881,10 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69650
69881
|
// oauth required
|
|
69651
69882
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
69652
69883
|
|
|
69884
|
+
// authentication applicationAuth required
|
|
69885
|
+
// oauth required
|
|
69886
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
69887
|
+
|
|
69653
69888
|
|
|
69654
69889
|
|
|
69655
69890
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -69749,6 +69984,10 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69749
69984
|
// oauth required
|
|
69750
69985
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
69751
69986
|
|
|
69987
|
+
// authentication applicationAuth required
|
|
69988
|
+
// oauth required
|
|
69989
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
69990
|
+
|
|
69752
69991
|
if (limit !== undefined) {
|
|
69753
69992
|
localVarQueryParameter['limit'] = limit;
|
|
69754
69993
|
}
|
|
@@ -69816,6 +70055,10 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69816
70055
|
// oauth required
|
|
69817
70056
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
69818
70057
|
|
|
70058
|
+
// authentication applicationAuth required
|
|
70059
|
+
// oauth required
|
|
70060
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
70061
|
+
|
|
69819
70062
|
if (limit !== undefined) {
|
|
69820
70063
|
localVarQueryParameter['limit'] = limit;
|
|
69821
70064
|
}
|
|
@@ -69883,6 +70126,10 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69883
70126
|
// oauth required
|
|
69884
70127
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
69885
70128
|
|
|
70129
|
+
// authentication applicationAuth required
|
|
70130
|
+
// oauth required
|
|
70131
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
70132
|
+
|
|
69886
70133
|
if (accountId !== undefined) {
|
|
69887
70134
|
localVarQueryParameter['account-id'] = accountId;
|
|
69888
70135
|
}
|
|
@@ -70970,6 +71217,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
70970
71217
|
// oauth required
|
|
70971
71218
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
70972
71219
|
|
|
71220
|
+
// authentication applicationAuth required
|
|
71221
|
+
// oauth required
|
|
71222
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71223
|
+
|
|
70973
71224
|
|
|
70974
71225
|
|
|
70975
71226
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -71011,6 +71262,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71011
71262
|
// oauth required
|
|
71012
71263
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71013
71264
|
|
|
71265
|
+
// authentication applicationAuth required
|
|
71266
|
+
// oauth required
|
|
71267
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71268
|
+
|
|
71014
71269
|
|
|
71015
71270
|
|
|
71016
71271
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -71049,6 +71304,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71049
71304
|
// oauth required
|
|
71050
71305
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71051
71306
|
|
|
71307
|
+
// authentication applicationAuth required
|
|
71308
|
+
// oauth required
|
|
71309
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71310
|
+
|
|
71052
71311
|
|
|
71053
71312
|
|
|
71054
71313
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -71087,6 +71346,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71087
71346
|
// oauth required
|
|
71088
71347
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71089
71348
|
|
|
71349
|
+
// authentication applicationAuth required
|
|
71350
|
+
// oauth required
|
|
71351
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71352
|
+
|
|
71090
71353
|
|
|
71091
71354
|
|
|
71092
71355
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -71125,6 +71388,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71125
71388
|
// oauth required
|
|
71126
71389
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71127
71390
|
|
|
71391
|
+
// authentication applicationAuth required
|
|
71392
|
+
// oauth required
|
|
71393
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71394
|
+
|
|
71128
71395
|
|
|
71129
71396
|
|
|
71130
71397
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -71166,6 +71433,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71166
71433
|
// oauth required
|
|
71167
71434
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71168
71435
|
|
|
71436
|
+
// authentication applicationAuth required
|
|
71437
|
+
// oauth required
|
|
71438
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71439
|
+
|
|
71169
71440
|
|
|
71170
71441
|
|
|
71171
71442
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -71210,6 +71481,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71210
71481
|
// oauth required
|
|
71211
71482
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71212
71483
|
|
|
71484
|
+
// authentication applicationAuth required
|
|
71485
|
+
// oauth required
|
|
71486
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71487
|
+
|
|
71213
71488
|
|
|
71214
71489
|
|
|
71215
71490
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -71254,6 +71529,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71254
71529
|
// oauth required
|
|
71255
71530
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71256
71531
|
|
|
71532
|
+
// authentication applicationAuth required
|
|
71533
|
+
// oauth required
|
|
71534
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71535
|
+
|
|
71257
71536
|
|
|
71258
71537
|
|
|
71259
71538
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -71298,6 +71577,10 @@ export const GlobalTenantSecuritySettingsV2024ApiAxiosParamCreator = function (c
|
|
|
71298
71577
|
// oauth required
|
|
71299
71578
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71300
71579
|
|
|
71580
|
+
// authentication applicationAuth required
|
|
71581
|
+
// oauth required
|
|
71582
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
71583
|
+
|
|
71301
71584
|
|
|
71302
71585
|
|
|
71303
71586
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -71759,6 +72042,10 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
71759
72042
|
// oauth required
|
|
71760
72043
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71761
72044
|
|
|
72045
|
+
// authentication applicationAuth required
|
|
72046
|
+
// oauth required
|
|
72047
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
72048
|
+
|
|
71762
72049
|
|
|
71763
72050
|
|
|
71764
72051
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -71925,6 +72212,10 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
71925
72212
|
// oauth required
|
|
71926
72213
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
71927
72214
|
|
|
72215
|
+
// authentication applicationAuth required
|
|
72216
|
+
// oauth required
|
|
72217
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
72218
|
+
|
|
71928
72219
|
|
|
71929
72220
|
|
|
71930
72221
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -72036,6 +72327,10 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
72036
72327
|
// oauth required
|
|
72037
72328
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
72038
72329
|
|
|
72330
|
+
// authentication applicationAuth required
|
|
72331
|
+
// oauth required
|
|
72332
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
72333
|
+
|
|
72039
72334
|
if (offset !== undefined) {
|
|
72040
72335
|
localVarQueryParameter['offset'] = offset;
|
|
72041
72336
|
}
|
|
@@ -72106,6 +72401,10 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
72106
72401
|
// oauth required
|
|
72107
72402
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
72108
72403
|
|
|
72404
|
+
// authentication applicationAuth required
|
|
72405
|
+
// oauth required
|
|
72406
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
72407
|
+
|
|
72109
72408
|
if (offset !== undefined) {
|
|
72110
72409
|
localVarQueryParameter['offset'] = offset;
|
|
72111
72410
|
}
|
|
@@ -72173,6 +72472,10 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
72173
72472
|
// oauth required
|
|
72174
72473
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
72175
72474
|
|
|
72475
|
+
// authentication applicationAuth required
|
|
72476
|
+
// oauth required
|
|
72477
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
72478
|
+
|
|
72176
72479
|
if (offset !== undefined) {
|
|
72177
72480
|
localVarQueryParameter['offset'] = offset;
|
|
72178
72481
|
}
|
|
@@ -72304,6 +72607,10 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
72304
72607
|
// oauth required
|
|
72305
72608
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
72306
72609
|
|
|
72610
|
+
// authentication applicationAuth required
|
|
72611
|
+
// oauth required
|
|
72612
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
72613
|
+
|
|
72307
72614
|
|
|
72308
72615
|
|
|
72309
72616
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -73085,6 +73392,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73085
73392
|
// oauth required
|
|
73086
73393
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73087
73394
|
|
|
73395
|
+
// authentication applicationAuth required
|
|
73396
|
+
// oauth required
|
|
73397
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73398
|
+
|
|
73088
73399
|
|
|
73089
73400
|
|
|
73090
73401
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -73137,6 +73448,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73137
73448
|
// oauth required
|
|
73138
73449
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73139
73450
|
|
|
73451
|
+
// authentication applicationAuth required
|
|
73452
|
+
// oauth required
|
|
73453
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73454
|
+
|
|
73140
73455
|
|
|
73141
73456
|
|
|
73142
73457
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -73189,6 +73504,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73189
73504
|
// oauth required
|
|
73190
73505
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73191
73506
|
|
|
73507
|
+
// authentication applicationAuth required
|
|
73508
|
+
// oauth required
|
|
73509
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73510
|
+
|
|
73192
73511
|
|
|
73193
73512
|
|
|
73194
73513
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -73241,6 +73560,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73241
73560
|
// oauth required
|
|
73242
73561
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73243
73562
|
|
|
73563
|
+
// authentication applicationAuth required
|
|
73564
|
+
// oauth required
|
|
73565
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73566
|
+
|
|
73244
73567
|
|
|
73245
73568
|
|
|
73246
73569
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -73297,6 +73620,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73297
73620
|
// oauth required
|
|
73298
73621
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73299
73622
|
|
|
73623
|
+
// authentication applicationAuth required
|
|
73624
|
+
// oauth required
|
|
73625
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73626
|
+
|
|
73300
73627
|
if (identityId !== undefined) {
|
|
73301
73628
|
localVarQueryParameter['identity-id'] = identityId;
|
|
73302
73629
|
}
|
|
@@ -73371,6 +73698,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73371
73698
|
// oauth required
|
|
73372
73699
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73373
73700
|
|
|
73701
|
+
// authentication applicationAuth required
|
|
73702
|
+
// oauth required
|
|
73703
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73704
|
+
|
|
73374
73705
|
|
|
73375
73706
|
|
|
73376
73707
|
if (xSailPointExperimental != null) {
|
|
@@ -73422,6 +73753,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73422
73753
|
// oauth required
|
|
73423
73754
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73424
73755
|
|
|
73756
|
+
// authentication applicationAuth required
|
|
73757
|
+
// oauth required
|
|
73758
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73759
|
+
|
|
73425
73760
|
if (limit !== undefined) {
|
|
73426
73761
|
localVarQueryParameter['limit'] = limit;
|
|
73427
73762
|
}
|
|
@@ -73493,6 +73828,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73493
73828
|
// oauth required
|
|
73494
73829
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73495
73830
|
|
|
73831
|
+
// authentication applicationAuth required
|
|
73832
|
+
// oauth required
|
|
73833
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73834
|
+
|
|
73496
73835
|
if (limit !== undefined) {
|
|
73497
73836
|
localVarQueryParameter['limit'] = limit;
|
|
73498
73837
|
}
|
|
@@ -73564,6 +73903,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73564
73903
|
// oauth required
|
|
73565
73904
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73566
73905
|
|
|
73906
|
+
// authentication applicationAuth required
|
|
73907
|
+
// oauth required
|
|
73908
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73909
|
+
|
|
73567
73910
|
if (limit !== undefined) {
|
|
73568
73911
|
localVarQueryParameter['limit'] = limit;
|
|
73569
73912
|
}
|
|
@@ -73633,6 +73976,10 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
73633
73976
|
// oauth required
|
|
73634
73977
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
73635
73978
|
|
|
73979
|
+
// authentication applicationAuth required
|
|
73980
|
+
// oauth required
|
|
73981
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
73982
|
+
|
|
73636
73983
|
|
|
73637
73984
|
|
|
73638
73985
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -74424,11 +74771,15 @@ export const IAICommonAccessV2024ApiAxiosParamCreator = function (configuration?
|
|
|
74424
74771
|
|
|
74425
74772
|
// authentication userAuth required
|
|
74426
74773
|
// oauth required
|
|
74427
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
74774
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
74428
74775
|
|
|
74429
74776
|
// authentication userAuth required
|
|
74430
74777
|
// oauth required
|
|
74431
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
74778
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
74779
|
+
|
|
74780
|
+
// authentication applicationAuth required
|
|
74781
|
+
// oauth required
|
|
74782
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
74432
74783
|
|
|
74433
74784
|
|
|
74434
74785
|
|
|
@@ -74478,11 +74829,15 @@ export const IAICommonAccessV2024ApiAxiosParamCreator = function (configuration?
|
|
|
74478
74829
|
|
|
74479
74830
|
// authentication userAuth required
|
|
74480
74831
|
// oauth required
|
|
74481
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
74832
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
74482
74833
|
|
|
74483
74834
|
// authentication userAuth required
|
|
74484
74835
|
// oauth required
|
|
74485
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
74836
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
74837
|
+
|
|
74838
|
+
// authentication applicationAuth required
|
|
74839
|
+
// oauth required
|
|
74840
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
74486
74841
|
|
|
74487
74842
|
if (offset !== undefined) {
|
|
74488
74843
|
localVarQueryParameter['offset'] = offset;
|
|
@@ -74547,11 +74902,15 @@ export const IAICommonAccessV2024ApiAxiosParamCreator = function (configuration?
|
|
|
74547
74902
|
|
|
74548
74903
|
// authentication userAuth required
|
|
74549
74904
|
// oauth required
|
|
74550
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
74905
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
74551
74906
|
|
|
74552
74907
|
// authentication userAuth required
|
|
74553
74908
|
// oauth required
|
|
74554
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
74909
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
74910
|
+
|
|
74911
|
+
// authentication applicationAuth required
|
|
74912
|
+
// oauth required
|
|
74913
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
74555
74914
|
|
|
74556
74915
|
|
|
74557
74916
|
|
|
@@ -76746,11 +77105,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
76746
77105
|
|
|
76747
77106
|
// authentication userAuth required
|
|
76748
77107
|
// oauth required
|
|
76749
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77108
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
76750
77109
|
|
|
76751
77110
|
// authentication userAuth required
|
|
76752
77111
|
// oauth required
|
|
76753
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77112
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77113
|
+
|
|
77114
|
+
// authentication applicationAuth required
|
|
77115
|
+
// oauth required
|
|
77116
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
76754
77117
|
|
|
76755
77118
|
if (minEntitlementPopularity !== undefined) {
|
|
76756
77119
|
localVarQueryParameter['min-entitlement-popularity'] = minEntitlementPopularity;
|
|
@@ -76806,11 +77169,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
76806
77169
|
|
|
76807
77170
|
// authentication userAuth required
|
|
76808
77171
|
// oauth required
|
|
76809
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77172
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
76810
77173
|
|
|
76811
77174
|
// authentication userAuth required
|
|
76812
77175
|
// oauth required
|
|
76813
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77176
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77177
|
+
|
|
77178
|
+
// authentication applicationAuth required
|
|
77179
|
+
// oauth required
|
|
77180
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
76814
77181
|
|
|
76815
77182
|
|
|
76816
77183
|
|
|
@@ -76867,11 +77234,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
76867
77234
|
|
|
76868
77235
|
// authentication userAuth required
|
|
76869
77236
|
// oauth required
|
|
76870
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77237
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
76871
77238
|
|
|
76872
77239
|
// authentication userAuth required
|
|
76873
77240
|
// oauth required
|
|
76874
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77241
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77242
|
+
|
|
77243
|
+
// authentication applicationAuth required
|
|
77244
|
+
// oauth required
|
|
77245
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
76875
77246
|
|
|
76876
77247
|
|
|
76877
77248
|
|
|
@@ -76921,11 +77292,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
76921
77292
|
|
|
76922
77293
|
// authentication userAuth required
|
|
76923
77294
|
// oauth required
|
|
76924
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77295
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
76925
77296
|
|
|
76926
77297
|
// authentication userAuth required
|
|
76927
77298
|
// oauth required
|
|
76928
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77299
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77300
|
+
|
|
77301
|
+
// authentication applicationAuth required
|
|
77302
|
+
// oauth required
|
|
77303
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
76929
77304
|
|
|
76930
77305
|
|
|
76931
77306
|
|
|
@@ -76976,11 +77351,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
76976
77351
|
|
|
76977
77352
|
// authentication userAuth required
|
|
76978
77353
|
// oauth required
|
|
76979
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77354
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
76980
77355
|
|
|
76981
77356
|
// authentication userAuth required
|
|
76982
77357
|
// oauth required
|
|
76983
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77358
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77359
|
+
|
|
77360
|
+
// authentication applicationAuth required
|
|
77361
|
+
// oauth required
|
|
77362
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
76984
77363
|
|
|
76985
77364
|
|
|
76986
77365
|
|
|
@@ -77037,11 +77416,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77037
77416
|
|
|
77038
77417
|
// authentication userAuth required
|
|
77039
77418
|
// oauth required
|
|
77040
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77419
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77041
77420
|
|
|
77042
77421
|
// authentication userAuth required
|
|
77043
77422
|
// oauth required
|
|
77044
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77423
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77424
|
+
|
|
77425
|
+
// authentication applicationAuth required
|
|
77426
|
+
// oauth required
|
|
77427
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77045
77428
|
|
|
77046
77429
|
|
|
77047
77430
|
|
|
@@ -77094,6 +77477,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77094
77477
|
// oauth required
|
|
77095
77478
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77096
77479
|
|
|
77480
|
+
// authentication applicationAuth required
|
|
77481
|
+
// oauth required
|
|
77482
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77483
|
+
|
|
77097
77484
|
if (sorters !== undefined) {
|
|
77098
77485
|
localVarQueryParameter['sorters'] = sorters;
|
|
77099
77486
|
}
|
|
@@ -77163,11 +77550,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77163
77550
|
|
|
77164
77551
|
// authentication userAuth required
|
|
77165
77552
|
// oauth required
|
|
77166
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77553
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77167
77554
|
|
|
77168
77555
|
// authentication userAuth required
|
|
77169
77556
|
// oauth required
|
|
77170
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77557
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77558
|
+
|
|
77559
|
+
// authentication applicationAuth required
|
|
77560
|
+
// oauth required
|
|
77561
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77171
77562
|
|
|
77172
77563
|
if (includeCommonAccess !== undefined) {
|
|
77173
77564
|
localVarQueryParameter['includeCommonAccess'] = includeCommonAccess;
|
|
@@ -77233,6 +77624,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77233
77624
|
// oauth required
|
|
77234
77625
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77235
77626
|
|
|
77627
|
+
// authentication applicationAuth required
|
|
77628
|
+
// oauth required
|
|
77629
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77630
|
+
|
|
77236
77631
|
if (includeCommonAccess !== undefined) {
|
|
77237
77632
|
localVarQueryParameter['includeCommonAccess'] = includeCommonAccess;
|
|
77238
77633
|
}
|
|
@@ -77310,11 +77705,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77310
77705
|
|
|
77311
77706
|
// authentication userAuth required
|
|
77312
77707
|
// oauth required
|
|
77313
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77708
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77314
77709
|
|
|
77315
77710
|
// authentication userAuth required
|
|
77316
77711
|
// oauth required
|
|
77317
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77712
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77713
|
+
|
|
77714
|
+
// authentication applicationAuth required
|
|
77715
|
+
// oauth required
|
|
77716
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77318
77717
|
|
|
77319
77718
|
if (sorters !== undefined) {
|
|
77320
77719
|
localVarQueryParameter['sorters'] = sorters;
|
|
@@ -77389,11 +77788,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77389
77788
|
|
|
77390
77789
|
// authentication userAuth required
|
|
77391
77790
|
// oauth required
|
|
77392
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77791
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77393
77792
|
|
|
77394
77793
|
// authentication userAuth required
|
|
77395
77794
|
// oauth required
|
|
77396
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77795
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77796
|
+
|
|
77797
|
+
// authentication applicationAuth required
|
|
77798
|
+
// oauth required
|
|
77799
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77397
77800
|
|
|
77398
77801
|
if (sorters !== undefined) {
|
|
77399
77802
|
localVarQueryParameter['sorters'] = sorters;
|
|
@@ -77463,11 +77866,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77463
77866
|
|
|
77464
77867
|
// authentication userAuth required
|
|
77465
77868
|
// oauth required
|
|
77466
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77869
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77467
77870
|
|
|
77468
77871
|
// authentication userAuth required
|
|
77469
77872
|
// oauth required
|
|
77470
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
77873
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77874
|
+
|
|
77875
|
+
// authentication applicationAuth required
|
|
77876
|
+
// oauth required
|
|
77877
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77471
77878
|
|
|
77472
77879
|
|
|
77473
77880
|
|
|
@@ -77527,6 +77934,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77527
77934
|
// oauth required
|
|
77528
77935
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77529
77936
|
|
|
77937
|
+
// authentication applicationAuth required
|
|
77938
|
+
// oauth required
|
|
77939
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77940
|
+
|
|
77530
77941
|
if (filters !== undefined) {
|
|
77531
77942
|
localVarQueryParameter['filters'] = filters;
|
|
77532
77943
|
}
|
|
@@ -77601,6 +78012,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77601
78012
|
// oauth required
|
|
77602
78013
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77603
78014
|
|
|
78015
|
+
// authentication applicationAuth required
|
|
78016
|
+
// oauth required
|
|
78017
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78018
|
+
|
|
77604
78019
|
if (filters !== undefined) {
|
|
77605
78020
|
localVarQueryParameter['filters'] = filters;
|
|
77606
78021
|
}
|
|
@@ -77675,6 +78090,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77675
78090
|
// oauth required
|
|
77676
78091
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77677
78092
|
|
|
78093
|
+
// authentication applicationAuth required
|
|
78094
|
+
// oauth required
|
|
78095
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78096
|
+
|
|
77678
78097
|
if (sorters !== undefined) {
|
|
77679
78098
|
localVarQueryParameter['sorters'] = sorters;
|
|
77680
78099
|
}
|
|
@@ -77740,11 +78159,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77740
78159
|
|
|
77741
78160
|
// authentication userAuth required
|
|
77742
78161
|
// oauth required
|
|
77743
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78162
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77744
78163
|
|
|
77745
78164
|
// authentication userAuth required
|
|
77746
78165
|
// oauth required
|
|
77747
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78166
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78167
|
+
|
|
78168
|
+
// authentication applicationAuth required
|
|
78169
|
+
// oauth required
|
|
78170
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77748
78171
|
|
|
77749
78172
|
if (sorters !== undefined) {
|
|
77750
78173
|
localVarQueryParameter['sorters'] = sorters;
|
|
@@ -77816,6 +78239,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77816
78239
|
// oauth required
|
|
77817
78240
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77818
78241
|
|
|
78242
|
+
// authentication applicationAuth required
|
|
78243
|
+
// oauth required
|
|
78244
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78245
|
+
|
|
77819
78246
|
|
|
77820
78247
|
|
|
77821
78248
|
if (xSailPointExperimental != null) {
|
|
@@ -77860,11 +78287,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77860
78287
|
|
|
77861
78288
|
// authentication userAuth required
|
|
77862
78289
|
// oauth required
|
|
77863
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78290
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77864
78291
|
|
|
77865
78292
|
// authentication userAuth required
|
|
77866
78293
|
// oauth required
|
|
77867
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78294
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78295
|
+
|
|
78296
|
+
// authentication applicationAuth required
|
|
78297
|
+
// oauth required
|
|
78298
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77868
78299
|
|
|
77869
78300
|
|
|
77870
78301
|
|
|
@@ -77910,11 +78341,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77910
78341
|
|
|
77911
78342
|
// authentication userAuth required
|
|
77912
78343
|
// oauth required
|
|
77913
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78344
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77914
78345
|
|
|
77915
78346
|
// authentication userAuth required
|
|
77916
78347
|
// oauth required
|
|
77917
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78348
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78349
|
+
|
|
78350
|
+
// authentication applicationAuth required
|
|
78351
|
+
// oauth required
|
|
78352
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77918
78353
|
|
|
77919
78354
|
|
|
77920
78355
|
|
|
@@ -77961,11 +78396,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77961
78396
|
|
|
77962
78397
|
// authentication userAuth required
|
|
77963
78398
|
// oauth required
|
|
77964
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78399
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
77965
78400
|
|
|
77966
78401
|
// authentication userAuth required
|
|
77967
78402
|
// oauth required
|
|
77968
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78403
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78404
|
+
|
|
78405
|
+
// authentication applicationAuth required
|
|
78406
|
+
// oauth required
|
|
78407
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
77969
78408
|
|
|
77970
78409
|
if (filters !== undefined) {
|
|
77971
78410
|
localVarQueryParameter['filters'] = filters;
|
|
@@ -78037,6 +78476,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78037
78476
|
// oauth required
|
|
78038
78477
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78039
78478
|
|
|
78479
|
+
// authentication applicationAuth required
|
|
78480
|
+
// oauth required
|
|
78481
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78482
|
+
|
|
78040
78483
|
if (sorters !== undefined) {
|
|
78041
78484
|
localVarQueryParameter['sorters'] = sorters;
|
|
78042
78485
|
}
|
|
@@ -78088,7 +78531,7 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78088
78531
|
xSailPointExperimental = 'true';
|
|
78089
78532
|
}
|
|
78090
78533
|
|
|
78091
|
-
const localVarPath = `/role-mining-
|
|
78534
|
+
const localVarPath = `/role-mining-potential-roles/{potentialRoleId}`
|
|
78092
78535
|
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
78093
78536
|
.replace(`{${"potentialRoleId"}}`, encodeURIComponent(String(potentialRoleId)));
|
|
78094
78537
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -78104,11 +78547,11 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78104
78547
|
|
|
78105
78548
|
// authentication userAuth required
|
|
78106
78549
|
// oauth required
|
|
78107
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78550
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78108
78551
|
|
|
78109
78552
|
// authentication userAuth required
|
|
78110
78553
|
// oauth required
|
|
78111
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78554
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78112
78555
|
|
|
78113
78556
|
|
|
78114
78557
|
|
|
@@ -78129,26 +78572,26 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78129
78572
|
},
|
|
78130
78573
|
/**
|
|
78131
78574
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
78132
|
-
* @summary Update a potential role
|
|
78575
|
+
* @summary Update a potential role session
|
|
78133
78576
|
* @param {string} sessionId The role mining session id
|
|
78134
78577
|
* @param {string} potentialRoleId The potential role summary id
|
|
78135
|
-
* @param {Array<
|
|
78578
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
78136
78579
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78137
78580
|
* @param {*} [axiosOptions] Override http request option.
|
|
78138
78581
|
* @throws {RequiredError}
|
|
78139
78582
|
*/
|
|
78140
|
-
|
|
78583
|
+
patchPotentialRoleSession: async (sessionId: string, potentialRoleId: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
78141
78584
|
// verify required parameter 'sessionId' is not null or undefined
|
|
78142
|
-
assertParamExists('
|
|
78585
|
+
assertParamExists('patchPotentialRoleSession', 'sessionId', sessionId)
|
|
78143
78586
|
// verify required parameter 'potentialRoleId' is not null or undefined
|
|
78144
|
-
assertParamExists('
|
|
78145
|
-
// verify required parameter '
|
|
78146
|
-
assertParamExists('
|
|
78587
|
+
assertParamExists('patchPotentialRoleSession', 'potentialRoleId', potentialRoleId)
|
|
78588
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
78589
|
+
assertParamExists('patchPotentialRoleSession', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
78147
78590
|
if (xSailPointExperimental === undefined) {
|
|
78148
78591
|
xSailPointExperimental = 'true';
|
|
78149
78592
|
}
|
|
78150
78593
|
|
|
78151
|
-
const localVarPath = `/role-mining-potential-
|
|
78594
|
+
const localVarPath = `/role-mining-sessions/{sessionId}/potential-role-summaries/{potentialRoleId}`
|
|
78152
78595
|
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
78153
78596
|
.replace(`{${"potentialRoleId"}}`, encodeURIComponent(String(potentialRoleId)));
|
|
78154
78597
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -78170,6 +78613,10 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78170
78613
|
// oauth required
|
|
78171
78614
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78172
78615
|
|
|
78616
|
+
// authentication applicationAuth required
|
|
78617
|
+
// oauth required
|
|
78618
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78619
|
+
|
|
78173
78620
|
|
|
78174
78621
|
|
|
78175
78622
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -78180,7 +78627,7 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78180
78627
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
78181
78628
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
78182
78629
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
78183
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
78630
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2024, localVarRequestOptions, configuration)
|
|
78184
78631
|
|
|
78185
78632
|
return {
|
|
78186
78633
|
url: toPathString(localVarUrlObj),
|
|
@@ -78220,11 +78667,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78220
78667
|
|
|
78221
78668
|
// authentication userAuth required
|
|
78222
78669
|
// oauth required
|
|
78223
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78670
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78224
78671
|
|
|
78225
78672
|
// authentication userAuth required
|
|
78226
78673
|
// oauth required
|
|
78227
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78674
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78675
|
+
|
|
78676
|
+
// authentication applicationAuth required
|
|
78677
|
+
// oauth required
|
|
78678
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78228
78679
|
|
|
78229
78680
|
|
|
78230
78681
|
|
|
@@ -78280,11 +78731,15 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
78280
78731
|
|
|
78281
78732
|
// authentication userAuth required
|
|
78282
78733
|
// oauth required
|
|
78283
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78734
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78284
78735
|
|
|
78285
78736
|
// authentication userAuth required
|
|
78286
78737
|
// oauth required
|
|
78287
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
78738
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
78739
|
+
|
|
78740
|
+
// authentication applicationAuth required
|
|
78741
|
+
// oauth required
|
|
78742
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
78288
78743
|
|
|
78289
78744
|
|
|
78290
78745
|
|
|
@@ -78689,18 +79144,18 @@ export const IAIRoleMiningV2024ApiFp = function(configuration?: Configuration) {
|
|
|
78689
79144
|
},
|
|
78690
79145
|
/**
|
|
78691
79146
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
78692
|
-
* @summary Update a potential role
|
|
79147
|
+
* @summary Update a potential role session
|
|
78693
79148
|
* @param {string} sessionId The role mining session id
|
|
78694
79149
|
* @param {string} potentialRoleId The potential role summary id
|
|
78695
|
-
* @param {Array<
|
|
79150
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
78696
79151
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78697
79152
|
* @param {*} [axiosOptions] Override http request option.
|
|
78698
79153
|
* @throws {RequiredError}
|
|
78699
79154
|
*/
|
|
78700
|
-
async
|
|
78701
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
79155
|
+
async patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
79156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRoleSession(sessionId, potentialRoleId, jsonPatchOperationV2024, xSailPointExperimental, axiosOptions);
|
|
78702
79157
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
78703
|
-
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2024Api.
|
|
79158
|
+
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2024Api.patchPotentialRoleSession']?.[localVarOperationServerIndex]?.url;
|
|
78704
79159
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
78705
79160
|
},
|
|
78706
79161
|
/**
|
|
@@ -78966,13 +79421,13 @@ export const IAIRoleMiningV2024ApiFactory = function (configuration?: Configurat
|
|
|
78966
79421
|
},
|
|
78967
79422
|
/**
|
|
78968
79423
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
78969
|
-
* @summary Update a potential role
|
|
78970
|
-
* @param {
|
|
79424
|
+
* @summary Update a potential role session
|
|
79425
|
+
* @param {IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
|
|
78971
79426
|
* @param {*} [axiosOptions] Override http request option.
|
|
78972
79427
|
* @throws {RequiredError}
|
|
78973
79428
|
*/
|
|
78974
|
-
|
|
78975
|
-
return localVarFp.
|
|
79429
|
+
patchPotentialRoleSession(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
79430
|
+
return localVarFp.patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
78976
79431
|
},
|
|
78977
79432
|
/**
|
|
78978
79433
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
@@ -79922,36 +80377,36 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRoleRequest {
|
|
|
79922
80377
|
}
|
|
79923
80378
|
|
|
79924
80379
|
/**
|
|
79925
|
-
* Request parameters for
|
|
80380
|
+
* Request parameters for patchPotentialRoleSession operation in IAIRoleMiningV2024Api.
|
|
79926
80381
|
* @export
|
|
79927
|
-
* @interface
|
|
80382
|
+
* @interface IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest
|
|
79928
80383
|
*/
|
|
79929
|
-
export interface
|
|
80384
|
+
export interface IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest {
|
|
79930
80385
|
/**
|
|
79931
80386
|
* The role mining session id
|
|
79932
80387
|
* @type {string}
|
|
79933
|
-
* @memberof
|
|
80388
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
79934
80389
|
*/
|
|
79935
80390
|
readonly sessionId: string
|
|
79936
80391
|
|
|
79937
80392
|
/**
|
|
79938
80393
|
* The potential role summary id
|
|
79939
80394
|
* @type {string}
|
|
79940
|
-
* @memberof
|
|
80395
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
79941
80396
|
*/
|
|
79942
80397
|
readonly potentialRoleId: string
|
|
79943
80398
|
|
|
79944
80399
|
/**
|
|
79945
80400
|
*
|
|
79946
|
-
* @type {Array<
|
|
79947
|
-
* @memberof
|
|
80401
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
80402
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
79948
80403
|
*/
|
|
79949
|
-
readonly
|
|
80404
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>
|
|
79950
80405
|
|
|
79951
80406
|
/**
|
|
79952
80407
|
* Use this header to enable this experimental API.
|
|
79953
80408
|
* @type {string}
|
|
79954
|
-
* @memberof
|
|
80409
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
79955
80410
|
*/
|
|
79956
80411
|
readonly xSailPointExperimental?: string
|
|
79957
80412
|
}
|
|
@@ -80292,14 +80747,14 @@ export class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
80292
80747
|
|
|
80293
80748
|
/**
|
|
80294
80749
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
80295
|
-
* @summary Update a potential role
|
|
80296
|
-
* @param {
|
|
80750
|
+
* @summary Update a potential role session
|
|
80751
|
+
* @param {IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
|
|
80297
80752
|
* @param {*} [axiosOptions] Override http request option.
|
|
80298
80753
|
* @throws {RequiredError}
|
|
80299
80754
|
* @memberof IAIRoleMiningV2024Api
|
|
80300
80755
|
*/
|
|
80301
|
-
public
|
|
80302
|
-
return IAIRoleMiningV2024ApiFp(this.configuration).
|
|
80756
|
+
public patchPotentialRoleSession(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
80757
|
+
return IAIRoleMiningV2024ApiFp(this.configuration).patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
80303
80758
|
}
|
|
80304
80759
|
|
|
80305
80760
|
/**
|
|
@@ -80375,6 +80830,10 @@ export const IconsV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
80375
80830
|
// oauth required
|
|
80376
80831
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80377
80832
|
|
|
80833
|
+
// authentication applicationAuth required
|
|
80834
|
+
// oauth required
|
|
80835
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
80836
|
+
|
|
80378
80837
|
|
|
80379
80838
|
|
|
80380
80839
|
if (xSailPointExperimental != null) {
|
|
@@ -80433,6 +80892,10 @@ export const IconsV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
80433
80892
|
// oauth required
|
|
80434
80893
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80435
80894
|
|
|
80895
|
+
// authentication applicationAuth required
|
|
80896
|
+
// oauth required
|
|
80897
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
80898
|
+
|
|
80436
80899
|
|
|
80437
80900
|
if (image !== undefined) {
|
|
80438
80901
|
localVarFormParams.append('image', image as any);
|
|
@@ -80676,6 +81139,10 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80676
81139
|
// oauth required
|
|
80677
81140
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80678
81141
|
|
|
81142
|
+
// authentication applicationAuth required
|
|
81143
|
+
// oauth required
|
|
81144
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
81145
|
+
|
|
80679
81146
|
|
|
80680
81147
|
|
|
80681
81148
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -80897,11 +81364,11 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80897
81364
|
|
|
80898
81365
|
// authentication userAuth required
|
|
80899
81366
|
// oauth required
|
|
80900
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
81367
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80901
81368
|
|
|
80902
81369
|
// authentication userAuth required
|
|
80903
81370
|
// oauth required
|
|
80904
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
81371
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80905
81372
|
|
|
80906
81373
|
if (limit !== undefined) {
|
|
80907
81374
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -81025,6 +81492,10 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
81025
81492
|
// oauth required
|
|
81026
81493
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
81027
81494
|
|
|
81495
|
+
// authentication applicationAuth required
|
|
81496
|
+
// oauth required
|
|
81497
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
81498
|
+
|
|
81028
81499
|
|
|
81029
81500
|
|
|
81030
81501
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -81069,11 +81540,11 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
81069
81540
|
|
|
81070
81541
|
// authentication userAuth required
|
|
81071
81542
|
// oauth required
|
|
81072
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
81543
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
81073
81544
|
|
|
81074
81545
|
// authentication userAuth required
|
|
81075
81546
|
// oauth required
|
|
81076
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
81547
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
81077
81548
|
|
|
81078
81549
|
|
|
81079
81550
|
|
|
@@ -81179,6 +81650,10 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
81179
81650
|
// oauth required
|
|
81180
81651
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
81181
81652
|
|
|
81653
|
+
// authentication applicationAuth required
|
|
81654
|
+
// oauth required
|
|
81655
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
81656
|
+
|
|
81182
81657
|
|
|
81183
81658
|
|
|
81184
81659
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -82174,6 +82649,10 @@ export const IdentityAttributesV2024ApiAxiosParamCreator = function (configurati
|
|
|
82174
82649
|
// oauth required
|
|
82175
82650
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82176
82651
|
|
|
82652
|
+
// authentication applicationAuth required
|
|
82653
|
+
// oauth required
|
|
82654
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
82655
|
+
|
|
82177
82656
|
|
|
82178
82657
|
|
|
82179
82658
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -82216,6 +82695,10 @@ export const IdentityAttributesV2024ApiAxiosParamCreator = function (configurati
|
|
|
82216
82695
|
// oauth required
|
|
82217
82696
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82218
82697
|
|
|
82698
|
+
// authentication applicationAuth required
|
|
82699
|
+
// oauth required
|
|
82700
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
82701
|
+
|
|
82219
82702
|
if (includeSystem !== undefined) {
|
|
82220
82703
|
localVarQueryParameter['includeSystem'] = includeSystem;
|
|
82221
82704
|
}
|
|
@@ -82692,11 +83175,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82692
83175
|
|
|
82693
83176
|
// authentication userAuth required
|
|
82694
83177
|
// oauth required
|
|
82695
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83178
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82696
83179
|
|
|
82697
83180
|
// authentication userAuth required
|
|
82698
83181
|
// oauth required
|
|
82699
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83182
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83183
|
+
|
|
83184
|
+
// authentication applicationAuth required
|
|
83185
|
+
// oauth required
|
|
83186
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
82700
83187
|
|
|
82701
83188
|
if (snapshot1 !== undefined) {
|
|
82702
83189
|
localVarQueryParameter['snapshot1'] = snapshot1;
|
|
@@ -82776,11 +83263,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82776
83263
|
|
|
82777
83264
|
// authentication userAuth required
|
|
82778
83265
|
// oauth required
|
|
82779
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83266
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82780
83267
|
|
|
82781
83268
|
// authentication userAuth required
|
|
82782
83269
|
// oauth required
|
|
82783
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83270
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83271
|
+
|
|
83272
|
+
// authentication applicationAuth required
|
|
83273
|
+
// oauth required
|
|
83274
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
82784
83275
|
|
|
82785
83276
|
if (accessAssociated !== undefined) {
|
|
82786
83277
|
localVarQueryParameter['access-associated'] = accessAssociated;
|
|
@@ -82856,6 +83347,10 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82856
83347
|
// oauth required
|
|
82857
83348
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82858
83349
|
|
|
83350
|
+
// authentication applicationAuth required
|
|
83351
|
+
// oauth required
|
|
83352
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83353
|
+
|
|
82859
83354
|
|
|
82860
83355
|
|
|
82861
83356
|
if (xSailPointExperimental != null) {
|
|
@@ -82912,6 +83407,10 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82912
83407
|
// oauth required
|
|
82913
83408
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82914
83409
|
|
|
83410
|
+
// authentication applicationAuth required
|
|
83411
|
+
// oauth required
|
|
83412
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83413
|
+
|
|
82915
83414
|
if (from !== undefined) {
|
|
82916
83415
|
localVarQueryParameter['from'] = from;
|
|
82917
83416
|
}
|
|
@@ -82984,11 +83483,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82984
83483
|
|
|
82985
83484
|
// authentication userAuth required
|
|
82986
83485
|
// oauth required
|
|
82987
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83486
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82988
83487
|
|
|
82989
83488
|
// authentication userAuth required
|
|
82990
83489
|
// oauth required
|
|
82991
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83490
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83491
|
+
|
|
83492
|
+
// authentication applicationAuth required
|
|
83493
|
+
// oauth required
|
|
83494
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
82992
83495
|
|
|
82993
83496
|
|
|
82994
83497
|
|
|
@@ -83040,11 +83543,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83040
83543
|
|
|
83041
83544
|
// authentication userAuth required
|
|
83042
83545
|
// oauth required
|
|
83043
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83546
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83044
83547
|
|
|
83045
83548
|
// authentication userAuth required
|
|
83046
83549
|
// oauth required
|
|
83047
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83550
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83551
|
+
|
|
83552
|
+
// authentication applicationAuth required
|
|
83553
|
+
// oauth required
|
|
83554
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83048
83555
|
|
|
83049
83556
|
if (before !== undefined) {
|
|
83050
83557
|
localVarQueryParameter['before'] = before;
|
|
@@ -83114,11 +83621,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83114
83621
|
|
|
83115
83622
|
// authentication userAuth required
|
|
83116
83623
|
// oauth required
|
|
83117
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83624
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83118
83625
|
|
|
83119
83626
|
// authentication userAuth required
|
|
83120
83627
|
// oauth required
|
|
83121
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83628
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83629
|
+
|
|
83630
|
+
// authentication applicationAuth required
|
|
83631
|
+
// oauth required
|
|
83632
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83122
83633
|
|
|
83123
83634
|
|
|
83124
83635
|
|
|
@@ -83171,6 +83682,10 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83171
83682
|
// oauth required
|
|
83172
83683
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83173
83684
|
|
|
83685
|
+
// authentication applicationAuth required
|
|
83686
|
+
// oauth required
|
|
83687
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83688
|
+
|
|
83174
83689
|
if (startsWithQuery !== undefined) {
|
|
83175
83690
|
localVarQueryParameter['starts-with-query'] = startsWithQuery;
|
|
83176
83691
|
}
|
|
@@ -83245,6 +83760,10 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83245
83760
|
// oauth required
|
|
83246
83761
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83247
83762
|
|
|
83763
|
+
// authentication applicationAuth required
|
|
83764
|
+
// oauth required
|
|
83765
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83766
|
+
|
|
83248
83767
|
if (type !== undefined) {
|
|
83249
83768
|
localVarQueryParameter['type'] = type;
|
|
83250
83769
|
}
|
|
@@ -83310,11 +83829,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83310
83829
|
|
|
83311
83830
|
// authentication userAuth required
|
|
83312
83831
|
// oauth required
|
|
83313
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83832
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83314
83833
|
|
|
83315
83834
|
// authentication userAuth required
|
|
83316
83835
|
// oauth required
|
|
83317
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83836
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83837
|
+
|
|
83838
|
+
// authentication applicationAuth required
|
|
83839
|
+
// oauth required
|
|
83840
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83318
83841
|
|
|
83319
83842
|
if (type !== undefined) {
|
|
83320
83843
|
localVarQueryParameter['type'] = type;
|
|
@@ -83369,11 +83892,15 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83369
83892
|
|
|
83370
83893
|
// authentication userAuth required
|
|
83371
83894
|
// oauth required
|
|
83372
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83895
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83373
83896
|
|
|
83374
83897
|
// authentication userAuth required
|
|
83375
83898
|
// oauth required
|
|
83376
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
83899
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
83900
|
+
|
|
83901
|
+
// authentication applicationAuth required
|
|
83902
|
+
// oauth required
|
|
83903
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
83377
83904
|
|
|
83378
83905
|
if (start !== undefined) {
|
|
83379
83906
|
localVarQueryParameter['start'] = start;
|
|
@@ -84603,6 +85130,10 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
84603
85130
|
// oauth required
|
|
84604
85131
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
84605
85132
|
|
|
85133
|
+
// authentication applicationAuth required
|
|
85134
|
+
// oauth required
|
|
85135
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
85136
|
+
|
|
84606
85137
|
if (limit !== undefined) {
|
|
84607
85138
|
localVarQueryParameter['limit'] = limit;
|
|
84608
85139
|
}
|
|
@@ -86382,6 +86913,10 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
86382
86913
|
// oauth required
|
|
86383
86914
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86384
86915
|
|
|
86916
|
+
// authentication applicationAuth required
|
|
86917
|
+
// oauth required
|
|
86918
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86919
|
+
|
|
86385
86920
|
|
|
86386
86921
|
|
|
86387
86922
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -86493,6 +87028,10 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
86493
87028
|
// oauth required
|
|
86494
87029
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86495
87030
|
|
|
87031
|
+
// authentication applicationAuth required
|
|
87032
|
+
// oauth required
|
|
87033
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
87034
|
+
|
|
86496
87035
|
|
|
86497
87036
|
|
|
86498
87037
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -87657,6 +88196,10 @@ export const MachineAccountClassifyV2024ApiAxiosParamCreator = function (configu
|
|
|
87657
88196
|
// oauth required
|
|
87658
88197
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87659
88198
|
|
|
88199
|
+
// authentication applicationAuth required
|
|
88200
|
+
// oauth required
|
|
88201
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
88202
|
+
|
|
87660
88203
|
if (classificationMode !== undefined) {
|
|
87661
88204
|
localVarQueryParameter['classificationMode'] = classificationMode;
|
|
87662
88205
|
}
|
|
@@ -87812,6 +88355,10 @@ export const MachineAccountMappingsV2024ApiAxiosParamCreator = function (configu
|
|
|
87812
88355
|
// oauth required
|
|
87813
88356
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87814
88357
|
|
|
88358
|
+
// authentication applicationAuth required
|
|
88359
|
+
// oauth required
|
|
88360
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
88361
|
+
|
|
87815
88362
|
|
|
87816
88363
|
|
|
87817
88364
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -87857,6 +88404,10 @@ export const MachineAccountMappingsV2024ApiAxiosParamCreator = function (configu
|
|
|
87857
88404
|
// oauth required
|
|
87858
88405
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87859
88406
|
|
|
88407
|
+
// authentication applicationAuth required
|
|
88408
|
+
// oauth required
|
|
88409
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
88410
|
+
|
|
87860
88411
|
|
|
87861
88412
|
|
|
87862
88413
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -87901,6 +88452,10 @@ export const MachineAccountMappingsV2024ApiAxiosParamCreator = function (configu
|
|
|
87901
88452
|
// oauth required
|
|
87902
88453
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87903
88454
|
|
|
88455
|
+
// authentication applicationAuth required
|
|
88456
|
+
// oauth required
|
|
88457
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
88458
|
+
|
|
87904
88459
|
if (limit !== undefined) {
|
|
87905
88460
|
localVarQueryParameter['limit'] = limit;
|
|
87906
88461
|
}
|
|
@@ -87954,6 +88509,10 @@ export const MachineAccountMappingsV2024ApiAxiosParamCreator = function (configu
|
|
|
87954
88509
|
// oauth required
|
|
87955
88510
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87956
88511
|
|
|
88512
|
+
// authentication applicationAuth required
|
|
88513
|
+
// oauth required
|
|
88514
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
88515
|
+
|
|
87957
88516
|
|
|
87958
88517
|
|
|
87959
88518
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -88395,6 +88954,10 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
88395
88954
|
// oauth required
|
|
88396
88955
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88397
88956
|
|
|
88957
|
+
// authentication applicationAuth required
|
|
88958
|
+
// oauth required
|
|
88959
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
88960
|
+
|
|
88398
88961
|
|
|
88399
88962
|
|
|
88400
88963
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -88693,6 +89256,10 @@ export const MachineClassificationConfigV2024ApiAxiosParamCreator = function (co
|
|
|
88693
89256
|
// oauth required
|
|
88694
89257
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88695
89258
|
|
|
89259
|
+
// authentication applicationAuth required
|
|
89260
|
+
// oauth required
|
|
89261
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
89262
|
+
|
|
88696
89263
|
|
|
88697
89264
|
|
|
88698
89265
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -88735,6 +89302,10 @@ export const MachineClassificationConfigV2024ApiAxiosParamCreator = function (co
|
|
|
88735
89302
|
// oauth required
|
|
88736
89303
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88737
89304
|
|
|
89305
|
+
// authentication applicationAuth required
|
|
89306
|
+
// oauth required
|
|
89307
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
89308
|
+
|
|
88738
89309
|
|
|
88739
89310
|
|
|
88740
89311
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -88780,6 +89351,10 @@ export const MachineClassificationConfigV2024ApiAxiosParamCreator = function (co
|
|
|
88780
89351
|
// oauth required
|
|
88781
89352
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88782
89353
|
|
|
89354
|
+
// authentication applicationAuth required
|
|
89355
|
+
// oauth required
|
|
89356
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
89357
|
+
|
|
88783
89358
|
|
|
88784
89359
|
|
|
88785
89360
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -89023,6 +89598,10 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
89023
89598
|
// oauth required
|
|
89024
89599
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
89025
89600
|
|
|
89601
|
+
// authentication applicationAuth required
|
|
89602
|
+
// oauth required
|
|
89603
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
89604
|
+
|
|
89026
89605
|
|
|
89027
89606
|
|
|
89028
89607
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -89076,6 +89655,10 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
89076
89655
|
// oauth required
|
|
89077
89656
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
89078
89657
|
|
|
89658
|
+
// authentication applicationAuth required
|
|
89659
|
+
// oauth required
|
|
89660
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
89661
|
+
|
|
89079
89662
|
|
|
89080
89663
|
|
|
89081
89664
|
if (xSailPointExperimental != null) {
|
|
@@ -89250,6 +89833,10 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
89250
89833
|
// oauth required
|
|
89251
89834
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
89252
89835
|
|
|
89836
|
+
// authentication applicationAuth required
|
|
89837
|
+
// oauth required
|
|
89838
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
89839
|
+
|
|
89253
89840
|
|
|
89254
89841
|
|
|
89255
89842
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -89748,6 +90335,10 @@ export const ManagedClientsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
89748
90335
|
// oauth required
|
|
89749
90336
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
89750
90337
|
|
|
90338
|
+
// authentication applicationAuth required
|
|
90339
|
+
// oauth required
|
|
90340
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
90341
|
+
|
|
89751
90342
|
|
|
89752
90343
|
|
|
89753
90344
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -89793,6 +90384,10 @@ export const ManagedClientsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
89793
90384
|
// oauth required
|
|
89794
90385
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
89795
90386
|
|
|
90387
|
+
// authentication applicationAuth required
|
|
90388
|
+
// oauth required
|
|
90389
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
90390
|
+
|
|
89796
90391
|
if (type !== undefined) {
|
|
89797
90392
|
localVarQueryParameter['type'] = type;
|
|
89798
90393
|
}
|
|
@@ -91738,6 +92333,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
91738
92333
|
// oauth required
|
|
91739
92334
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
91740
92335
|
|
|
92336
|
+
// authentication applicationAuth required
|
|
92337
|
+
// oauth required
|
|
92338
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92339
|
+
|
|
91741
92340
|
|
|
91742
92341
|
|
|
91743
92342
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -91786,6 +92385,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
91786
92385
|
// oauth required
|
|
91787
92386
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
91788
92387
|
|
|
92388
|
+
// authentication applicationAuth required
|
|
92389
|
+
// oauth required
|
|
92390
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92391
|
+
|
|
91789
92392
|
|
|
91790
92393
|
|
|
91791
92394
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -91831,6 +92434,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
91831
92434
|
// oauth required
|
|
91832
92435
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
91833
92436
|
|
|
92437
|
+
// authentication applicationAuth required
|
|
92438
|
+
// oauth required
|
|
92439
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92440
|
+
|
|
91834
92441
|
|
|
91835
92442
|
|
|
91836
92443
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -91977,6 +92584,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
91977
92584
|
// oauth required
|
|
91978
92585
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
91979
92586
|
|
|
92587
|
+
// authentication applicationAuth required
|
|
92588
|
+
// oauth required
|
|
92589
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92590
|
+
|
|
91980
92591
|
|
|
91981
92592
|
|
|
91982
92593
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -92021,6 +92632,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
92021
92632
|
// oauth required
|
|
92022
92633
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92023
92634
|
|
|
92635
|
+
// authentication applicationAuth required
|
|
92636
|
+
// oauth required
|
|
92637
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92638
|
+
|
|
92024
92639
|
if (offset !== undefined) {
|
|
92025
92640
|
localVarQueryParameter['offset'] = offset;
|
|
92026
92641
|
}
|
|
@@ -92087,6 +92702,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
92087
92702
|
// oauth required
|
|
92088
92703
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92089
92704
|
|
|
92705
|
+
// authentication applicationAuth required
|
|
92706
|
+
// oauth required
|
|
92707
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92708
|
+
|
|
92090
92709
|
|
|
92091
92710
|
|
|
92092
92711
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -92125,6 +92744,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
92125
92744
|
// oauth required
|
|
92126
92745
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92127
92746
|
|
|
92747
|
+
// authentication applicationAuth required
|
|
92748
|
+
// oauth required
|
|
92749
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92750
|
+
|
|
92128
92751
|
|
|
92129
92752
|
|
|
92130
92753
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -92172,6 +92795,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
92172
92795
|
// oauth required
|
|
92173
92796
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92174
92797
|
|
|
92798
|
+
// authentication applicationAuth required
|
|
92799
|
+
// oauth required
|
|
92800
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92801
|
+
|
|
92175
92802
|
if (offset !== undefined) {
|
|
92176
92803
|
localVarQueryParameter['offset'] = offset;
|
|
92177
92804
|
}
|
|
@@ -92280,6 +92907,10 @@ export const MultiHostIntegrationV2024ApiAxiosParamCreator = function (configura
|
|
|
92280
92907
|
// oauth required
|
|
92281
92908
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92282
92909
|
|
|
92910
|
+
// authentication applicationAuth required
|
|
92911
|
+
// oauth required
|
|
92912
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
92913
|
+
|
|
92283
92914
|
|
|
92284
92915
|
|
|
92285
92916
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -93206,11 +93837,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93206
93837
|
|
|
93207
93838
|
// authentication userAuth required
|
|
93208
93839
|
// oauth required
|
|
93209
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
93840
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93210
93841
|
|
|
93211
93842
|
// authentication userAuth required
|
|
93212
93843
|
// oauth required
|
|
93213
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
93844
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93845
|
+
|
|
93846
|
+
// authentication applicationAuth required
|
|
93847
|
+
// oauth required
|
|
93848
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93214
93849
|
|
|
93215
93850
|
|
|
93216
93851
|
|
|
@@ -93256,6 +93891,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93256
93891
|
// oauth required
|
|
93257
93892
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93258
93893
|
|
|
93894
|
+
// authentication applicationAuth required
|
|
93895
|
+
// oauth required
|
|
93896
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93897
|
+
|
|
93259
93898
|
|
|
93260
93899
|
|
|
93261
93900
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -93300,6 +93939,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93300
93939
|
// oauth required
|
|
93301
93940
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93302
93941
|
|
|
93942
|
+
// authentication applicationAuth required
|
|
93943
|
+
// oauth required
|
|
93944
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93945
|
+
|
|
93303
93946
|
|
|
93304
93947
|
|
|
93305
93948
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -93342,11 +93985,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93342
93985
|
|
|
93343
93986
|
// authentication userAuth required
|
|
93344
93987
|
// oauth required
|
|
93345
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
93988
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93346
93989
|
|
|
93347
93990
|
// authentication userAuth required
|
|
93348
93991
|
// oauth required
|
|
93349
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
93992
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93993
|
+
|
|
93994
|
+
// authentication applicationAuth required
|
|
93995
|
+
// oauth required
|
|
93996
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93350
93997
|
|
|
93351
93998
|
|
|
93352
93999
|
|
|
@@ -93387,11 +94034,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93387
94034
|
|
|
93388
94035
|
// authentication userAuth required
|
|
93389
94036
|
// oauth required
|
|
93390
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94037
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93391
94038
|
|
|
93392
94039
|
// authentication userAuth required
|
|
93393
94040
|
// oauth required
|
|
93394
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94041
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94042
|
+
|
|
94043
|
+
// authentication applicationAuth required
|
|
94044
|
+
// oauth required
|
|
94045
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93395
94046
|
|
|
93396
94047
|
|
|
93397
94048
|
|
|
@@ -93428,11 +94079,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93428
94079
|
|
|
93429
94080
|
// authentication userAuth required
|
|
93430
94081
|
// oauth required
|
|
93431
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94082
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93432
94083
|
|
|
93433
94084
|
// authentication userAuth required
|
|
93434
94085
|
// oauth required
|
|
93435
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94086
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94087
|
+
|
|
94088
|
+
// authentication applicationAuth required
|
|
94089
|
+
// oauth required
|
|
94090
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93436
94091
|
|
|
93437
94092
|
|
|
93438
94093
|
|
|
@@ -93473,11 +94128,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93473
94128
|
|
|
93474
94129
|
// authentication userAuth required
|
|
93475
94130
|
// oauth required
|
|
93476
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94131
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93477
94132
|
|
|
93478
94133
|
// authentication userAuth required
|
|
93479
94134
|
// oauth required
|
|
93480
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94135
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94136
|
+
|
|
94137
|
+
// authentication applicationAuth required
|
|
94138
|
+
// oauth required
|
|
94139
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93481
94140
|
|
|
93482
94141
|
|
|
93483
94142
|
|
|
@@ -93519,11 +94178,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93519
94178
|
|
|
93520
94179
|
// authentication userAuth required
|
|
93521
94180
|
// oauth required
|
|
93522
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94181
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93523
94182
|
|
|
93524
94183
|
// authentication userAuth required
|
|
93525
94184
|
// oauth required
|
|
93526
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94185
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94186
|
+
|
|
94187
|
+
// authentication applicationAuth required
|
|
94188
|
+
// oauth required
|
|
94189
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93527
94190
|
|
|
93528
94191
|
|
|
93529
94192
|
|
|
@@ -93561,11 +94224,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93561
94224
|
|
|
93562
94225
|
// authentication userAuth required
|
|
93563
94226
|
// oauth required
|
|
93564
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94227
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93565
94228
|
|
|
93566
94229
|
// authentication userAuth required
|
|
93567
94230
|
// oauth required
|
|
93568
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94231
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94232
|
+
|
|
94233
|
+
// authentication applicationAuth required
|
|
94234
|
+
// oauth required
|
|
94235
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93569
94236
|
|
|
93570
94237
|
|
|
93571
94238
|
|
|
@@ -93603,11 +94270,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93603
94270
|
|
|
93604
94271
|
// authentication userAuth required
|
|
93605
94272
|
// oauth required
|
|
93606
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94273
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93607
94274
|
|
|
93608
94275
|
// authentication userAuth required
|
|
93609
94276
|
// oauth required
|
|
93610
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94277
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94278
|
+
|
|
94279
|
+
// authentication applicationAuth required
|
|
94280
|
+
// oauth required
|
|
94281
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93611
94282
|
|
|
93612
94283
|
|
|
93613
94284
|
|
|
@@ -93645,11 +94316,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93645
94316
|
|
|
93646
94317
|
// authentication userAuth required
|
|
93647
94318
|
// oauth required
|
|
93648
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94319
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93649
94320
|
|
|
93650
94321
|
// authentication userAuth required
|
|
93651
94322
|
// oauth required
|
|
93652
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94323
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94324
|
+
|
|
94325
|
+
// authentication applicationAuth required
|
|
94326
|
+
// oauth required
|
|
94327
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93653
94328
|
|
|
93654
94329
|
|
|
93655
94330
|
|
|
@@ -93687,11 +94362,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93687
94362
|
|
|
93688
94363
|
// authentication userAuth required
|
|
93689
94364
|
// oauth required
|
|
93690
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94365
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93691
94366
|
|
|
93692
94367
|
// authentication userAuth required
|
|
93693
94368
|
// oauth required
|
|
93694
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94369
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94370
|
+
|
|
94371
|
+
// authentication applicationAuth required
|
|
94372
|
+
// oauth required
|
|
94373
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93695
94374
|
|
|
93696
94375
|
|
|
93697
94376
|
|
|
@@ -93782,6 +94461,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93782
94461
|
// oauth required
|
|
93783
94462
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93784
94463
|
|
|
94464
|
+
// authentication applicationAuth required
|
|
94465
|
+
// oauth required
|
|
94466
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94467
|
+
|
|
93785
94468
|
|
|
93786
94469
|
|
|
93787
94470
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -93818,11 +94501,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93818
94501
|
|
|
93819
94502
|
// authentication userAuth required
|
|
93820
94503
|
// oauth required
|
|
93821
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94504
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93822
94505
|
|
|
93823
94506
|
// authentication userAuth required
|
|
93824
94507
|
// oauth required
|
|
93825
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94508
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94509
|
+
|
|
94510
|
+
// authentication applicationAuth required
|
|
94511
|
+
// oauth required
|
|
94512
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93826
94513
|
|
|
93827
94514
|
|
|
93828
94515
|
|
|
@@ -93860,11 +94547,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93860
94547
|
|
|
93861
94548
|
// authentication userAuth required
|
|
93862
94549
|
// oauth required
|
|
93863
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94550
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93864
94551
|
|
|
93865
94552
|
// authentication userAuth required
|
|
93866
94553
|
// oauth required
|
|
93867
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
94554
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94555
|
+
|
|
94556
|
+
// authentication applicationAuth required
|
|
94557
|
+
// oauth required
|
|
94558
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
93868
94559
|
|
|
93869
94560
|
|
|
93870
94561
|
|
|
@@ -93908,6 +94599,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93908
94599
|
// oauth required
|
|
93909
94600
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93910
94601
|
|
|
94602
|
+
// authentication applicationAuth required
|
|
94603
|
+
// oauth required
|
|
94604
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94605
|
+
|
|
93911
94606
|
|
|
93912
94607
|
|
|
93913
94608
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -93950,6 +94645,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93950
94645
|
// oauth required
|
|
93951
94646
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93952
94647
|
|
|
94648
|
+
// authentication applicationAuth required
|
|
94649
|
+
// oauth required
|
|
94650
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94651
|
+
|
|
93953
94652
|
|
|
93954
94653
|
|
|
93955
94654
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -93996,6 +94695,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
93996
94695
|
// oauth required
|
|
93997
94696
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93998
94697
|
|
|
94698
|
+
// authentication applicationAuth required
|
|
94699
|
+
// oauth required
|
|
94700
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94701
|
+
|
|
93999
94702
|
|
|
94000
94703
|
|
|
94001
94704
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -94038,6 +94741,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94038
94741
|
// oauth required
|
|
94039
94742
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94040
94743
|
|
|
94744
|
+
// authentication applicationAuth required
|
|
94745
|
+
// oauth required
|
|
94746
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94747
|
+
|
|
94041
94748
|
|
|
94042
94749
|
|
|
94043
94750
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -94080,6 +94787,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94080
94787
|
// oauth required
|
|
94081
94788
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94082
94789
|
|
|
94790
|
+
// authentication applicationAuth required
|
|
94791
|
+
// oauth required
|
|
94792
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94793
|
+
|
|
94083
94794
|
|
|
94084
94795
|
|
|
94085
94796
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -94126,6 +94837,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94126
94837
|
// oauth required
|
|
94127
94838
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94128
94839
|
|
|
94840
|
+
// authentication applicationAuth required
|
|
94841
|
+
// oauth required
|
|
94842
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94843
|
+
|
|
94129
94844
|
|
|
94130
94845
|
if (data !== undefined) {
|
|
94131
94846
|
localVarFormParams.append('data', data as any);
|
|
@@ -94177,6 +94892,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94177
94892
|
// oauth required
|
|
94178
94893
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94179
94894
|
|
|
94895
|
+
// authentication applicationAuth required
|
|
94896
|
+
// oauth required
|
|
94897
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94898
|
+
|
|
94180
94899
|
if (requestedFor !== undefined) {
|
|
94181
94900
|
localVarQueryParameter['requested-for'] = requestedFor;
|
|
94182
94901
|
}
|
|
@@ -94244,6 +94963,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94244
94963
|
// oauth required
|
|
94245
94964
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94246
94965
|
|
|
94966
|
+
// authentication applicationAuth required
|
|
94967
|
+
// oauth required
|
|
94968
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94969
|
+
|
|
94247
94970
|
if (limit !== undefined) {
|
|
94248
94971
|
localVarQueryParameter['limit'] = limit;
|
|
94249
94972
|
}
|
|
@@ -94310,6 +95033,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94310
95033
|
// oauth required
|
|
94311
95034
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94312
95035
|
|
|
95036
|
+
// authentication applicationAuth required
|
|
95037
|
+
// oauth required
|
|
95038
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
95039
|
+
|
|
94313
95040
|
if (limit !== undefined) {
|
|
94314
95041
|
localVarQueryParameter['limit'] = limit;
|
|
94315
95042
|
}
|
|
@@ -94378,6 +95105,10 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94378
95105
|
// oauth required
|
|
94379
95106
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94380
95107
|
|
|
95108
|
+
// authentication applicationAuth required
|
|
95109
|
+
// oauth required
|
|
95110
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
95111
|
+
|
|
94381
95112
|
if (limit !== undefined) {
|
|
94382
95113
|
localVarQueryParameter['limit'] = limit;
|
|
94383
95114
|
}
|
|
@@ -94493,11 +95224,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94493
95224
|
|
|
94494
95225
|
// authentication userAuth required
|
|
94495
95226
|
// oauth required
|
|
94496
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
95227
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94497
95228
|
|
|
94498
95229
|
// authentication userAuth required
|
|
94499
95230
|
// oauth required
|
|
94500
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
95231
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
95232
|
+
|
|
95233
|
+
// authentication applicationAuth required
|
|
95234
|
+
// oauth required
|
|
95235
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94501
95236
|
|
|
94502
95237
|
|
|
94503
95238
|
|
|
@@ -94541,11 +95276,15 @@ export const NonEmployeeLifecycleManagementV2024ApiAxiosParamCreator = function
|
|
|
94541
95276
|
|
|
94542
95277
|
// authentication userAuth required
|
|
94543
95278
|
// oauth required
|
|
94544
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
95279
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
94545
95280
|
|
|
94546
95281
|
// authentication userAuth required
|
|
94547
95282
|
// oauth required
|
|
94548
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
95283
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
95284
|
+
|
|
95285
|
+
// authentication applicationAuth required
|
|
95286
|
+
// oauth required
|
|
95287
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
94549
95288
|
|
|
94550
95289
|
|
|
94551
95290
|
|
|
@@ -98372,6 +99111,10 @@ export const OAuthClientsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
98372
99111
|
// oauth required
|
|
98373
99112
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98374
99113
|
|
|
99114
|
+
// authentication applicationAuth required
|
|
99115
|
+
// oauth required
|
|
99116
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99117
|
+
|
|
98375
99118
|
|
|
98376
99119
|
|
|
98377
99120
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -98798,6 +99541,10 @@ export const OrgConfigV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
98798
99541
|
// oauth required
|
|
98799
99542
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98800
99543
|
|
|
99544
|
+
// authentication applicationAuth required
|
|
99545
|
+
// oauth required
|
|
99546
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99547
|
+
|
|
98801
99548
|
|
|
98802
99549
|
|
|
98803
99550
|
if (xSailPointExperimental != null) {
|
|
@@ -98847,6 +99594,10 @@ export const OrgConfigV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
98847
99594
|
// oauth required
|
|
98848
99595
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98849
99596
|
|
|
99597
|
+
// authentication applicationAuth required
|
|
99598
|
+
// oauth required
|
|
99599
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99600
|
+
|
|
98850
99601
|
if (limit !== undefined) {
|
|
98851
99602
|
localVarQueryParameter['limit'] = limit;
|
|
98852
99603
|
}
|
|
@@ -99173,6 +99924,10 @@ export const PasswordConfigurationV2024ApiAxiosParamCreator = function (configur
|
|
|
99173
99924
|
// oauth required
|
|
99174
99925
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
99175
99926
|
|
|
99927
|
+
// authentication applicationAuth required
|
|
99928
|
+
// oauth required
|
|
99929
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99930
|
+
|
|
99176
99931
|
|
|
99177
99932
|
|
|
99178
99933
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -99214,6 +99969,10 @@ export const PasswordConfigurationV2024ApiAxiosParamCreator = function (configur
|
|
|
99214
99969
|
// oauth required
|
|
99215
99970
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
99216
99971
|
|
|
99972
|
+
// authentication applicationAuth required
|
|
99973
|
+
// oauth required
|
|
99974
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
99975
|
+
|
|
99217
99976
|
|
|
99218
99977
|
|
|
99219
99978
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -99255,6 +100014,10 @@ export const PasswordConfigurationV2024ApiAxiosParamCreator = function (configur
|
|
|
99255
100014
|
// oauth required
|
|
99256
100015
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
99257
100016
|
|
|
100017
|
+
// authentication applicationAuth required
|
|
100018
|
+
// oauth required
|
|
100019
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
100020
|
+
|
|
99258
100021
|
|
|
99259
100022
|
|
|
99260
100023
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -99678,6 +100441,10 @@ export const PasswordManagementV2024ApiAxiosParamCreator = function (configurati
|
|
|
99678
100441
|
// oauth required
|
|
99679
100442
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
99680
100443
|
|
|
100444
|
+
// authentication applicationAuth required
|
|
100445
|
+
// oauth required
|
|
100446
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
100447
|
+
|
|
99681
100448
|
|
|
99682
100449
|
|
|
99683
100450
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -99763,6 +100530,14 @@ export const PasswordManagementV2024ApiAxiosParamCreator = function (configurati
|
|
|
99763
100530
|
const localVarHeaderParameter = {} as any;
|
|
99764
100531
|
const localVarQueryParameter = {} as any;
|
|
99765
100532
|
|
|
100533
|
+
// authentication userAuth required
|
|
100534
|
+
// oauth required
|
|
100535
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100536
|
+
|
|
100537
|
+
// authentication userAuth required
|
|
100538
|
+
// oauth required
|
|
100539
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100540
|
+
|
|
99766
100541
|
// authentication applicationAuth required
|
|
99767
100542
|
// oauth required
|
|
99768
100543
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
@@ -99803,6 +100578,14 @@ export const PasswordManagementV2024ApiAxiosParamCreator = function (configurati
|
|
|
99803
100578
|
const localVarHeaderParameter = {} as any;
|
|
99804
100579
|
const localVarQueryParameter = {} as any;
|
|
99805
100580
|
|
|
100581
|
+
// authentication userAuth required
|
|
100582
|
+
// oauth required
|
|
100583
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100584
|
+
|
|
100585
|
+
// authentication userAuth required
|
|
100586
|
+
// oauth required
|
|
100587
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100588
|
+
|
|
99806
100589
|
// authentication applicationAuth required
|
|
99807
100590
|
// oauth required
|
|
99808
100591
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
@@ -100181,6 +100964,10 @@ export const PasswordPoliciesV2024ApiAxiosParamCreator = function (configuration
|
|
|
100181
100964
|
// oauth required
|
|
100182
100965
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100183
100966
|
|
|
100967
|
+
// authentication applicationAuth required
|
|
100968
|
+
// oauth required
|
|
100969
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
100970
|
+
|
|
100184
100971
|
|
|
100185
100972
|
|
|
100186
100973
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -100222,6 +101009,10 @@ export const PasswordPoliciesV2024ApiAxiosParamCreator = function (configuration
|
|
|
100222
101009
|
// oauth required
|
|
100223
101010
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100224
101011
|
|
|
101012
|
+
// authentication applicationAuth required
|
|
101013
|
+
// oauth required
|
|
101014
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
101015
|
+
|
|
100225
101016
|
if (limit !== undefined) {
|
|
100226
101017
|
localVarQueryParameter['limit'] = limit;
|
|
100227
101018
|
}
|
|
@@ -100718,6 +101509,10 @@ export const PasswordSyncGroupsV2024ApiAxiosParamCreator = function (configurati
|
|
|
100718
101509
|
// oauth required
|
|
100719
101510
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100720
101511
|
|
|
101512
|
+
// authentication applicationAuth required
|
|
101513
|
+
// oauth required
|
|
101514
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
101515
|
+
|
|
100721
101516
|
|
|
100722
101517
|
|
|
100723
101518
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -100759,6 +101554,10 @@ export const PasswordSyncGroupsV2024ApiAxiosParamCreator = function (configurati
|
|
|
100759
101554
|
// oauth required
|
|
100760
101555
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
100761
101556
|
|
|
101557
|
+
// authentication applicationAuth required
|
|
101558
|
+
// oauth required
|
|
101559
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
101560
|
+
|
|
100762
101561
|
if (limit !== undefined) {
|
|
100763
101562
|
localVarQueryParameter['limit'] = limit;
|
|
100764
101563
|
}
|
|
@@ -102047,6 +102846,10 @@ export const ReportsDataExtractionV2024ApiAxiosParamCreator = function (configur
|
|
|
102047
102846
|
// oauth required
|
|
102048
102847
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102049
102848
|
|
|
102849
|
+
// authentication applicationAuth required
|
|
102850
|
+
// oauth required
|
|
102851
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102852
|
+
|
|
102050
102853
|
if (fileFormat !== undefined) {
|
|
102051
102854
|
localVarQueryParameter['fileFormat'] = fileFormat;
|
|
102052
102855
|
}
|
|
@@ -102102,6 +102905,10 @@ export const ReportsDataExtractionV2024ApiAxiosParamCreator = function (configur
|
|
|
102102
102905
|
// oauth required
|
|
102103
102906
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102104
102907
|
|
|
102908
|
+
// authentication applicationAuth required
|
|
102909
|
+
// oauth required
|
|
102910
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102911
|
+
|
|
102105
102912
|
if (completed !== undefined) {
|
|
102106
102913
|
localVarQueryParameter['completed'] = completed;
|
|
102107
102914
|
}
|
|
@@ -102710,11 +103517,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
102710
103517
|
|
|
102711
103518
|
// authentication userAuth required
|
|
102712
103519
|
// oauth required
|
|
102713
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103520
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102714
103521
|
|
|
102715
103522
|
// authentication userAuth required
|
|
102716
103523
|
// oauth required
|
|
102717
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103524
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103525
|
+
|
|
103526
|
+
// authentication applicationAuth required
|
|
103527
|
+
// oauth required
|
|
103528
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102718
103529
|
|
|
102719
103530
|
|
|
102720
103531
|
|
|
@@ -102762,11 +103573,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
102762
103573
|
|
|
102763
103574
|
// authentication userAuth required
|
|
102764
103575
|
// oauth required
|
|
102765
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103576
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102766
103577
|
|
|
102767
103578
|
// authentication userAuth required
|
|
102768
103579
|
// oauth required
|
|
102769
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103580
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103581
|
+
|
|
103582
|
+
// authentication applicationAuth required
|
|
103583
|
+
// oauth required
|
|
103584
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102770
103585
|
|
|
102771
103586
|
if (sorters !== undefined) {
|
|
102772
103587
|
localVarQueryParameter['sorters'] = sorters;
|
|
@@ -102830,11 +103645,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
102830
103645
|
|
|
102831
103646
|
// authentication userAuth required
|
|
102832
103647
|
// oauth required
|
|
102833
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103648
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102834
103649
|
|
|
102835
103650
|
// authentication userAuth required
|
|
102836
103651
|
// oauth required
|
|
102837
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103652
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103653
|
+
|
|
103654
|
+
// authentication applicationAuth required
|
|
103655
|
+
// oauth required
|
|
103656
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102838
103657
|
|
|
102839
103658
|
if (hasEntitlement !== undefined) {
|
|
102840
103659
|
localVarQueryParameter['hasEntitlement'] = hasEntitlement;
|
|
@@ -102904,11 +103723,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
102904
103723
|
|
|
102905
103724
|
// authentication userAuth required
|
|
102906
103725
|
// oauth required
|
|
102907
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103726
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102908
103727
|
|
|
102909
103728
|
// authentication userAuth required
|
|
102910
103729
|
// oauth required
|
|
102911
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103730
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103731
|
+
|
|
103732
|
+
// authentication applicationAuth required
|
|
103733
|
+
// oauth required
|
|
103734
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102912
103735
|
|
|
102913
103736
|
|
|
102914
103737
|
|
|
@@ -102955,11 +103778,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
102955
103778
|
|
|
102956
103779
|
// authentication userAuth required
|
|
102957
103780
|
// oauth required
|
|
102958
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103781
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102959
103782
|
|
|
102960
103783
|
// authentication userAuth required
|
|
102961
103784
|
// oauth required
|
|
102962
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103785
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103786
|
+
|
|
103787
|
+
// authentication applicationAuth required
|
|
103788
|
+
// oauth required
|
|
103789
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102963
103790
|
|
|
102964
103791
|
if (offset !== undefined) {
|
|
102965
103792
|
localVarQueryParameter['offset'] = offset;
|
|
@@ -103026,11 +103853,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
103026
103853
|
|
|
103027
103854
|
// authentication userAuth required
|
|
103028
103855
|
// oauth required
|
|
103029
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103856
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103030
103857
|
|
|
103031
103858
|
// authentication userAuth required
|
|
103032
103859
|
// oauth required
|
|
103033
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103860
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103861
|
+
|
|
103862
|
+
// authentication applicationAuth required
|
|
103863
|
+
// oauth required
|
|
103864
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103034
103865
|
|
|
103035
103866
|
if (filters !== undefined) {
|
|
103036
103867
|
localVarQueryParameter['filters'] = filters;
|
|
@@ -103082,11 +103913,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
103082
103913
|
|
|
103083
103914
|
// authentication userAuth required
|
|
103084
103915
|
// oauth required
|
|
103085
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103916
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103086
103917
|
|
|
103087
103918
|
// authentication userAuth required
|
|
103088
103919
|
// oauth required
|
|
103089
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103920
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103921
|
+
|
|
103922
|
+
// authentication applicationAuth required
|
|
103923
|
+
// oauth required
|
|
103924
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103090
103925
|
|
|
103091
103926
|
if (sorters !== undefined) {
|
|
103092
103927
|
localVarQueryParameter['sorters'] = sorters;
|
|
@@ -103141,11 +103976,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
103141
103976
|
|
|
103142
103977
|
// authentication userAuth required
|
|
103143
103978
|
// oauth required
|
|
103144
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103979
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103145
103980
|
|
|
103146
103981
|
// authentication userAuth required
|
|
103147
103982
|
// oauth required
|
|
103148
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
103983
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103984
|
+
|
|
103985
|
+
// authentication applicationAuth required
|
|
103986
|
+
// oauth required
|
|
103987
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103149
103988
|
|
|
103150
103989
|
|
|
103151
103990
|
|
|
@@ -103187,11 +104026,15 @@ export const RoleInsightsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
103187
104026
|
|
|
103188
104027
|
// authentication userAuth required
|
|
103189
104028
|
// oauth required
|
|
103190
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
104029
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103191
104030
|
|
|
103192
104031
|
// authentication userAuth required
|
|
103193
104032
|
// oauth required
|
|
103194
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
104033
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
104034
|
+
|
|
104035
|
+
// authentication applicationAuth required
|
|
104036
|
+
// oauth required
|
|
104037
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103195
104038
|
|
|
103196
104039
|
|
|
103197
104040
|
|
|
@@ -104168,6 +105011,10 @@ export const RolesV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
104168
105011
|
// oauth required
|
|
104169
105012
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
104170
105013
|
|
|
105014
|
+
// authentication applicationAuth required
|
|
105015
|
+
// oauth required
|
|
105016
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
105017
|
+
|
|
104171
105018
|
|
|
104172
105019
|
|
|
104173
105020
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -104215,6 +105062,10 @@ export const RolesV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
104215
105062
|
// oauth required
|
|
104216
105063
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
104217
105064
|
|
|
105065
|
+
// authentication applicationAuth required
|
|
105066
|
+
// oauth required
|
|
105067
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
105068
|
+
|
|
104218
105069
|
if (limit !== undefined) {
|
|
104219
105070
|
localVarQueryParameter['limit'] = limit;
|
|
104220
105071
|
}
|
|
@@ -104360,6 +105211,10 @@ export const RolesV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
104360
105211
|
// oauth required
|
|
104361
105212
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
104362
105213
|
|
|
105214
|
+
// authentication applicationAuth required
|
|
105215
|
+
// oauth required
|
|
105216
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
105217
|
+
|
|
104363
105218
|
if (forSubadmin !== undefined) {
|
|
104364
105219
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
104365
105220
|
}
|
|
@@ -104480,11 +105335,11 @@ export const RolesV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
104480
105335
|
|
|
104481
105336
|
// authentication userAuth required
|
|
104482
105337
|
// oauth required
|
|
104483
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
105338
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
104484
105339
|
|
|
104485
105340
|
// authentication userAuth required
|
|
104486
105341
|
// oauth required
|
|
104487
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
105342
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
104488
105343
|
|
|
104489
105344
|
if (forSubadmin !== undefined) {
|
|
104490
105345
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
@@ -106744,6 +107599,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
106744
107599
|
// oauth required
|
|
106745
107600
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106746
107601
|
|
|
107602
|
+
// authentication applicationAuth required
|
|
107603
|
+
// oauth required
|
|
107604
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107605
|
+
|
|
106747
107606
|
|
|
106748
107607
|
|
|
106749
107608
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -106786,6 +107645,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
106786
107645
|
// oauth required
|
|
106787
107646
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106788
107647
|
|
|
107648
|
+
// authentication applicationAuth required
|
|
107649
|
+
// oauth required
|
|
107650
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107651
|
+
|
|
106789
107652
|
|
|
106790
107653
|
|
|
106791
107654
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -106824,6 +107687,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
106824
107687
|
// oauth required
|
|
106825
107688
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106826
107689
|
|
|
107690
|
+
// authentication applicationAuth required
|
|
107691
|
+
// oauth required
|
|
107692
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107693
|
+
|
|
106827
107694
|
|
|
106828
107695
|
|
|
106829
107696
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -106950,6 +107817,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
106950
107817
|
// oauth required
|
|
106951
107818
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106952
107819
|
|
|
107820
|
+
// authentication applicationAuth required
|
|
107821
|
+
// oauth required
|
|
107822
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107823
|
+
|
|
106953
107824
|
|
|
106954
107825
|
|
|
106955
107826
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -106992,6 +107863,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
106992
107863
|
// oauth required
|
|
106993
107864
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106994
107865
|
|
|
107866
|
+
// authentication applicationAuth required
|
|
107867
|
+
// oauth required
|
|
107868
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107869
|
+
|
|
106995
107870
|
|
|
106996
107871
|
|
|
106997
107872
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -107241,6 +108116,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
107241
108116
|
// oauth required
|
|
107242
108117
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107243
108118
|
|
|
108119
|
+
// authentication applicationAuth required
|
|
108120
|
+
// oauth required
|
|
108121
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
108122
|
+
|
|
107244
108123
|
|
|
107245
108124
|
|
|
107246
108125
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -107280,6 +108159,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
107280
108159
|
// oauth required
|
|
107281
108160
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107282
108161
|
|
|
108162
|
+
// authentication applicationAuth required
|
|
108163
|
+
// oauth required
|
|
108164
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
108165
|
+
|
|
107283
108166
|
|
|
107284
108167
|
|
|
107285
108168
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -107325,6 +108208,10 @@ export const SODPoliciesV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
107325
108208
|
// oauth required
|
|
107326
108209
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107327
108210
|
|
|
108211
|
+
// authentication applicationAuth required
|
|
108212
|
+
// oauth required
|
|
108213
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
108214
|
+
|
|
107328
108215
|
|
|
107329
108216
|
|
|
107330
108217
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -108341,6 +109228,10 @@ export const SODViolationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
108341
109228
|
// oauth required
|
|
108342
109229
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
108343
109230
|
|
|
109231
|
+
// authentication applicationAuth required
|
|
109232
|
+
// oauth required
|
|
109233
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
109234
|
+
|
|
108344
109235
|
|
|
108345
109236
|
|
|
108346
109237
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -109251,11 +110142,11 @@ export const SavedSearchV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
109251
110142
|
|
|
109252
110143
|
// authentication userAuth required
|
|
109253
110144
|
// oauth required
|
|
109254
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110145
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109255
110146
|
|
|
109256
110147
|
// authentication userAuth required
|
|
109257
110148
|
// oauth required
|
|
109258
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110149
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109259
110150
|
|
|
109260
110151
|
|
|
109261
110152
|
|
|
@@ -109296,11 +110187,11 @@ export const SavedSearchV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
109296
110187
|
|
|
109297
110188
|
// authentication userAuth required
|
|
109298
110189
|
// oauth required
|
|
109299
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110190
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109300
110191
|
|
|
109301
110192
|
// authentication userAuth required
|
|
109302
110193
|
// oauth required
|
|
109303
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110194
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109304
110195
|
|
|
109305
110196
|
|
|
109306
110197
|
|
|
@@ -109341,11 +110232,11 @@ export const SavedSearchV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
109341
110232
|
|
|
109342
110233
|
// authentication userAuth required
|
|
109343
110234
|
// oauth required
|
|
109344
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110235
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109345
110236
|
|
|
109346
110237
|
// authentication userAuth required
|
|
109347
110238
|
// oauth required
|
|
109348
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110239
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109349
110240
|
|
|
109350
110241
|
|
|
109351
110242
|
|
|
@@ -109444,11 +110335,11 @@ export const SavedSearchV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
109444
110335
|
|
|
109445
110336
|
// authentication userAuth required
|
|
109446
110337
|
// oauth required
|
|
109447
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110338
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109448
110339
|
|
|
109449
110340
|
// authentication userAuth required
|
|
109450
110341
|
// oauth required
|
|
109451
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110342
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109452
110343
|
|
|
109453
110344
|
|
|
109454
110345
|
|
|
@@ -109861,11 +110752,11 @@ export const ScheduledSearchV2024ApiAxiosParamCreator = function (configuration?
|
|
|
109861
110752
|
|
|
109862
110753
|
// authentication userAuth required
|
|
109863
110754
|
// oauth required
|
|
109864
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110755
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109865
110756
|
|
|
109866
110757
|
// authentication userAuth required
|
|
109867
110758
|
// oauth required
|
|
109868
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110759
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109869
110760
|
|
|
109870
110761
|
|
|
109871
110762
|
|
|
@@ -109906,11 +110797,11 @@ export const ScheduledSearchV2024ApiAxiosParamCreator = function (configuration?
|
|
|
109906
110797
|
|
|
109907
110798
|
// authentication userAuth required
|
|
109908
110799
|
// oauth required
|
|
109909
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110800
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109910
110801
|
|
|
109911
110802
|
// authentication userAuth required
|
|
109912
110803
|
// oauth required
|
|
109913
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110804
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109914
110805
|
|
|
109915
110806
|
|
|
109916
110807
|
|
|
@@ -109946,14 +110837,6 @@ export const ScheduledSearchV2024ApiAxiosParamCreator = function (configuration?
|
|
|
109946
110837
|
const localVarHeaderParameter = {} as any;
|
|
109947
110838
|
const localVarQueryParameter = {} as any;
|
|
109948
110839
|
|
|
109949
|
-
// authentication userAuth required
|
|
109950
|
-
// oauth required
|
|
109951
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
109952
|
-
|
|
109953
|
-
// authentication userAuth required
|
|
109954
|
-
// oauth required
|
|
109955
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
109956
|
-
|
|
109957
110840
|
|
|
109958
110841
|
|
|
109959
110842
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -109990,11 +110873,11 @@ export const ScheduledSearchV2024ApiAxiosParamCreator = function (configuration?
|
|
|
109990
110873
|
|
|
109991
110874
|
// authentication userAuth required
|
|
109992
110875
|
// oauth required
|
|
109993
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110876
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109994
110877
|
|
|
109995
110878
|
// authentication userAuth required
|
|
109996
110879
|
// oauth required
|
|
109997
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110880
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
109998
110881
|
|
|
109999
110882
|
if (offset !== undefined) {
|
|
110000
110883
|
localVarQueryParameter['offset'] = offset;
|
|
@@ -110099,11 +110982,11 @@ export const ScheduledSearchV2024ApiAxiosParamCreator = function (configuration?
|
|
|
110099
110982
|
|
|
110100
110983
|
// authentication userAuth required
|
|
110101
110984
|
// oauth required
|
|
110102
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110985
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
110103
110986
|
|
|
110104
110987
|
// authentication userAuth required
|
|
110105
110988
|
// oauth required
|
|
110106
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
110989
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
110107
110990
|
|
|
110108
110991
|
|
|
110109
110992
|
|
|
@@ -110525,6 +111408,10 @@ export const SearchV2024ApiAxiosParamCreator = function (configuration?: Configu
|
|
|
110525
111408
|
// oauth required
|
|
110526
111409
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
110527
111410
|
|
|
111411
|
+
// authentication applicationAuth required
|
|
111412
|
+
// oauth required
|
|
111413
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
111414
|
+
|
|
110528
111415
|
if (offset !== undefined) {
|
|
110529
111416
|
localVarQueryParameter['offset'] = offset;
|
|
110530
111417
|
}
|
|
@@ -110581,6 +111468,10 @@ export const SearchV2024ApiAxiosParamCreator = function (configuration?: Configu
|
|
|
110581
111468
|
// oauth required
|
|
110582
111469
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
110583
111470
|
|
|
111471
|
+
// authentication applicationAuth required
|
|
111472
|
+
// oauth required
|
|
111473
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
111474
|
+
|
|
110584
111475
|
|
|
110585
111476
|
|
|
110586
111477
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -113195,6 +114086,10 @@ export const SourceUsagesV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
113195
114086
|
// oauth required
|
|
113196
114087
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113197
114088
|
|
|
114089
|
+
// authentication applicationAuth required
|
|
114090
|
+
// oauth required
|
|
114091
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114092
|
+
|
|
113198
114093
|
|
|
113199
114094
|
|
|
113200
114095
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -113241,6 +114136,10 @@ export const SourceUsagesV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
113241
114136
|
// oauth required
|
|
113242
114137
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113243
114138
|
|
|
114139
|
+
// authentication applicationAuth required
|
|
114140
|
+
// oauth required
|
|
114141
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114142
|
+
|
|
113244
114143
|
if (limit !== undefined) {
|
|
113245
114144
|
localVarQueryParameter['limit'] = limit;
|
|
113246
114145
|
}
|
|
@@ -113471,6 +114370,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113471
114370
|
// oauth required
|
|
113472
114371
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113473
114372
|
|
|
114373
|
+
// authentication applicationAuth required
|
|
114374
|
+
// oauth required
|
|
114375
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114376
|
+
|
|
113474
114377
|
|
|
113475
114378
|
|
|
113476
114379
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -113516,6 +114419,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113516
114419
|
// oauth required
|
|
113517
114420
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113518
114421
|
|
|
114422
|
+
// authentication applicationAuth required
|
|
114423
|
+
// oauth required
|
|
114424
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114425
|
+
|
|
113519
114426
|
if (provisionAsCsv !== undefined) {
|
|
113520
114427
|
localVarQueryParameter['provisionAsCsv'] = provisionAsCsv;
|
|
113521
114428
|
}
|
|
@@ -113568,6 +114475,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113568
114475
|
// oauth required
|
|
113569
114476
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113570
114477
|
|
|
114478
|
+
// authentication applicationAuth required
|
|
114479
|
+
// oauth required
|
|
114480
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114481
|
+
|
|
113571
114482
|
|
|
113572
114483
|
|
|
113573
114484
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -113799,6 +114710,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113799
114710
|
// oauth required
|
|
113800
114711
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113801
114712
|
|
|
114713
|
+
// authentication applicationAuth required
|
|
114714
|
+
// oauth required
|
|
114715
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114716
|
+
|
|
113802
114717
|
|
|
113803
114718
|
|
|
113804
114719
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -113845,6 +114760,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113845
114760
|
// oauth required
|
|
113846
114761
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113847
114762
|
|
|
114763
|
+
// authentication applicationAuth required
|
|
114764
|
+
// oauth required
|
|
114765
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114766
|
+
|
|
113848
114767
|
|
|
113849
114768
|
|
|
113850
114769
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -113885,11 +114804,11 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113885
114804
|
|
|
113886
114805
|
// authentication userAuth required
|
|
113887
114806
|
// oauth required
|
|
113888
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
114807
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113889
114808
|
|
|
113890
114809
|
// authentication userAuth required
|
|
113891
114810
|
// oauth required
|
|
113892
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
114811
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113893
114812
|
|
|
113894
114813
|
|
|
113895
114814
|
|
|
@@ -113975,6 +114894,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113975
114894
|
// oauth required
|
|
113976
114895
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
113977
114896
|
|
|
114897
|
+
// authentication applicationAuth required
|
|
114898
|
+
// oauth required
|
|
114899
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114900
|
+
|
|
113978
114901
|
|
|
113979
114902
|
|
|
113980
114903
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114064,6 +114987,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114064
114987
|
// oauth required
|
|
114065
114988
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114066
114989
|
|
|
114990
|
+
// authentication applicationAuth required
|
|
114991
|
+
// oauth required
|
|
114992
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
114993
|
+
|
|
114067
114994
|
|
|
114068
114995
|
|
|
114069
114996
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114156,6 +115083,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114156
115083
|
// oauth required
|
|
114157
115084
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114158
115085
|
|
|
115086
|
+
// authentication applicationAuth required
|
|
115087
|
+
// oauth required
|
|
115088
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115089
|
+
|
|
114159
115090
|
|
|
114160
115091
|
|
|
114161
115092
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114295,6 +115226,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114295
115226
|
// oauth required
|
|
114296
115227
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114297
115228
|
|
|
115229
|
+
// authentication applicationAuth required
|
|
115230
|
+
// oauth required
|
|
115231
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115232
|
+
|
|
114298
115233
|
|
|
114299
115234
|
|
|
114300
115235
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114338,6 +115273,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114338
115273
|
// oauth required
|
|
114339
115274
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114340
115275
|
|
|
115276
|
+
// authentication applicationAuth required
|
|
115277
|
+
// oauth required
|
|
115278
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115279
|
+
|
|
114341
115280
|
|
|
114342
115281
|
|
|
114343
115282
|
if (xSailPointExperimental != null) {
|
|
@@ -114383,6 +115322,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114383
115322
|
// oauth required
|
|
114384
115323
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114385
115324
|
|
|
115325
|
+
// authentication applicationAuth required
|
|
115326
|
+
// oauth required
|
|
115327
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115328
|
+
|
|
114386
115329
|
|
|
114387
115330
|
|
|
114388
115331
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114429,6 +115372,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114429
115372
|
// oauth required
|
|
114430
115373
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114431
115374
|
|
|
115375
|
+
// authentication applicationAuth required
|
|
115376
|
+
// oauth required
|
|
115377
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115378
|
+
|
|
114432
115379
|
|
|
114433
115380
|
|
|
114434
115381
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114471,6 +115418,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114471
115418
|
// oauth required
|
|
114472
115419
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114473
115420
|
|
|
115421
|
+
// authentication applicationAuth required
|
|
115422
|
+
// oauth required
|
|
115423
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115424
|
+
|
|
114474
115425
|
|
|
114475
115426
|
|
|
114476
115427
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -114511,11 +115462,11 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114511
115462
|
|
|
114512
115463
|
// authentication userAuth required
|
|
114513
115464
|
// oauth required
|
|
114514
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
115465
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114515
115466
|
|
|
114516
115467
|
// authentication userAuth required
|
|
114517
115468
|
// oauth required
|
|
114518
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
115469
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114519
115470
|
|
|
114520
115471
|
|
|
114521
115472
|
|
|
@@ -114614,6 +115565,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114614
115565
|
// oauth required
|
|
114615
115566
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114616
115567
|
|
|
115568
|
+
// authentication applicationAuth required
|
|
115569
|
+
// oauth required
|
|
115570
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115571
|
+
|
|
114617
115572
|
|
|
114618
115573
|
if (file !== undefined) {
|
|
114619
115574
|
localVarFormParams.append('file', file as any);
|
|
@@ -114878,6 +115833,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114878
115833
|
// oauth required
|
|
114879
115834
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114880
115835
|
|
|
115836
|
+
// authentication applicationAuth required
|
|
115837
|
+
// oauth required
|
|
115838
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
115839
|
+
|
|
114881
115840
|
|
|
114882
115841
|
if (file !== undefined) {
|
|
114883
115842
|
localVarFormParams.append('file', file as any);
|
|
@@ -115050,6 +116009,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115050
116009
|
// oauth required
|
|
115051
116010
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115052
116011
|
|
|
116012
|
+
// authentication applicationAuth required
|
|
116013
|
+
// oauth required
|
|
116014
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116015
|
+
|
|
115053
116016
|
|
|
115054
116017
|
|
|
115055
116018
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -115095,6 +116058,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115095
116058
|
// oauth required
|
|
115096
116059
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115097
116060
|
|
|
116061
|
+
// authentication applicationAuth required
|
|
116062
|
+
// oauth required
|
|
116063
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116064
|
+
|
|
115098
116065
|
|
|
115099
116066
|
|
|
115100
116067
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -115143,6 +116110,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115143
116110
|
// oauth required
|
|
115144
116111
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115145
116112
|
|
|
116113
|
+
// authentication applicationAuth required
|
|
116114
|
+
// oauth required
|
|
116115
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116116
|
+
|
|
115146
116117
|
|
|
115147
116118
|
|
|
115148
116119
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -115247,6 +116218,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115247
116218
|
// oauth required
|
|
115248
116219
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115249
116220
|
|
|
116221
|
+
// authentication applicationAuth required
|
|
116222
|
+
// oauth required
|
|
116223
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116224
|
+
|
|
115250
116225
|
|
|
115251
116226
|
|
|
115252
116227
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -115349,11 +116324,11 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115349
116324
|
|
|
115350
116325
|
// authentication userAuth required
|
|
115351
116326
|
// oauth required
|
|
115352
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
116327
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115353
116328
|
|
|
115354
116329
|
// authentication userAuth required
|
|
115355
116330
|
// oauth required
|
|
115356
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
116331
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115357
116332
|
|
|
115358
116333
|
|
|
115359
116334
|
|
|
@@ -115403,6 +116378,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115403
116378
|
// oauth required
|
|
115404
116379
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115405
116380
|
|
|
116381
|
+
// authentication applicationAuth required
|
|
116382
|
+
// oauth required
|
|
116383
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116384
|
+
|
|
115406
116385
|
|
|
115407
116386
|
|
|
115408
116387
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -115498,6 +116477,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115498
116477
|
// oauth required
|
|
115499
116478
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115500
116479
|
|
|
116480
|
+
// authentication applicationAuth required
|
|
116481
|
+
// oauth required
|
|
116482
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116483
|
+
|
|
115501
116484
|
|
|
115502
116485
|
|
|
115503
116486
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -115540,6 +116523,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115540
116523
|
// oauth required
|
|
115541
116524
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115542
116525
|
|
|
116526
|
+
// authentication applicationAuth required
|
|
116527
|
+
// oauth required
|
|
116528
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116529
|
+
|
|
115543
116530
|
|
|
115544
116531
|
|
|
115545
116532
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -115585,6 +116572,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115585
116572
|
// oauth required
|
|
115586
116573
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115587
116574
|
|
|
116575
|
+
// authentication applicationAuth required
|
|
116576
|
+
// oauth required
|
|
116577
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116578
|
+
|
|
115588
116579
|
|
|
115589
116580
|
|
|
115590
116581
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -115741,6 +116732,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115741
116732
|
// oauth required
|
|
115742
116733
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115743
116734
|
|
|
116735
|
+
// authentication applicationAuth required
|
|
116736
|
+
// oauth required
|
|
116737
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116738
|
+
|
|
115744
116739
|
|
|
115745
116740
|
|
|
115746
116741
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -115790,6 +116785,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115790
116785
|
// oauth required
|
|
115791
116786
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115792
116787
|
|
|
116788
|
+
// authentication applicationAuth required
|
|
116789
|
+
// oauth required
|
|
116790
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116791
|
+
|
|
115793
116792
|
|
|
115794
116793
|
|
|
115795
116794
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -115845,6 +116844,10 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115845
116844
|
// oauth required
|
|
115846
116845
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115847
116846
|
|
|
116847
|
+
// authentication applicationAuth required
|
|
116848
|
+
// oauth required
|
|
116849
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
116850
|
+
|
|
115848
116851
|
|
|
115849
116852
|
|
|
115850
116853
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -115891,11 +116894,11 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
115891
116894
|
|
|
115892
116895
|
// authentication userAuth required
|
|
115893
116896
|
// oauth required
|
|
115894
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
116897
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115895
116898
|
|
|
115896
116899
|
// authentication userAuth required
|
|
115897
116900
|
// oauth required
|
|
115898
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
116901
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
115899
116902
|
|
|
115900
116903
|
|
|
115901
116904
|
|
|
@@ -118937,6 +119940,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
118937
119940
|
// oauth required
|
|
118938
119941
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
118939
119942
|
|
|
119943
|
+
// authentication applicationAuth required
|
|
119944
|
+
// oauth required
|
|
119945
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
119946
|
+
|
|
118940
119947
|
|
|
118941
119948
|
|
|
118942
119949
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -118980,6 +119987,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
118980
119987
|
// oauth required
|
|
118981
119988
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
118982
119989
|
|
|
119990
|
+
// authentication applicationAuth required
|
|
119991
|
+
// oauth required
|
|
119992
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
119993
|
+
|
|
118983
119994
|
if (offset !== undefined) {
|
|
118984
119995
|
localVarQueryParameter['offset'] = offset;
|
|
118985
119996
|
}
|
|
@@ -119046,6 +120057,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
119046
120057
|
// oauth required
|
|
119047
120058
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119048
120059
|
|
|
120060
|
+
// authentication applicationAuth required
|
|
120061
|
+
// oauth required
|
|
120062
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120063
|
+
|
|
119049
120064
|
if (limit !== undefined) {
|
|
119050
120065
|
localVarQueryParameter['limit'] = limit;
|
|
119051
120066
|
}
|
|
@@ -119123,6 +120138,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
119123
120138
|
// oauth required
|
|
119124
120139
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119125
120140
|
|
|
120141
|
+
// authentication applicationAuth required
|
|
120142
|
+
// oauth required
|
|
120143
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120144
|
+
|
|
119126
120145
|
|
|
119127
120146
|
|
|
119128
120147
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -119167,6 +120186,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
119167
120186
|
// oauth required
|
|
119168
120187
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119169
120188
|
|
|
120189
|
+
// authentication applicationAuth required
|
|
120190
|
+
// oauth required
|
|
120191
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120192
|
+
|
|
119170
120193
|
|
|
119171
120194
|
|
|
119172
120195
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -119211,6 +120234,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
119211
120234
|
// oauth required
|
|
119212
120235
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119213
120236
|
|
|
120237
|
+
// authentication applicationAuth required
|
|
120238
|
+
// oauth required
|
|
120239
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120240
|
+
|
|
119214
120241
|
|
|
119215
120242
|
|
|
119216
120243
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -119226,7 +120253,7 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
119226
120253
|
};
|
|
119227
120254
|
},
|
|
119228
120255
|
/**
|
|
119229
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
120256
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
119230
120257
|
* @summary Submit sed batch request
|
|
119231
120258
|
* @param {SedBatchRequestV2024} [sedBatchRequestV2024] Sed Batch Request
|
|
119232
120259
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119253,6 +120280,10 @@ export const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator = function
|
|
|
119253
120280
|
// oauth required
|
|
119254
120281
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119255
120282
|
|
|
120283
|
+
// authentication applicationAuth required
|
|
120284
|
+
// oauth required
|
|
120285
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120286
|
+
|
|
119256
120287
|
|
|
119257
120288
|
|
|
119258
120289
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -119368,7 +120399,7 @@ export const SuggestedEntitlementDescriptionV2024ApiFp = function(configuration?
|
|
|
119368
120399
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
119369
120400
|
},
|
|
119370
120401
|
/**
|
|
119371
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
120402
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
119372
120403
|
* @summary Submit sed batch request
|
|
119373
120404
|
* @param {SedBatchRequestV2024} [sedBatchRequestV2024] Sed Batch Request
|
|
119374
120405
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119451,7 +120482,7 @@ export const SuggestedEntitlementDescriptionV2024ApiFactory = function (configur
|
|
|
119451
120482
|
return localVarFp.submitSedAssignment(requestParameters.sedAssignmentV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
119452
120483
|
},
|
|
119453
120484
|
/**
|
|
119454
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
120485
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
119455
120486
|
* @summary Submit sed batch request
|
|
119456
120487
|
* @param {SuggestedEntitlementDescriptionV2024ApiSubmitSedBatchRequestRequest} requestParameters Request parameters.
|
|
119457
120488
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119725,7 +120756,7 @@ export class SuggestedEntitlementDescriptionV2024Api extends BaseAPI {
|
|
|
119725
120756
|
}
|
|
119726
120757
|
|
|
119727
120758
|
/**
|
|
119728
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
120759
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
119729
120760
|
* @summary Submit sed batch request
|
|
119730
120761
|
* @param {SuggestedEntitlementDescriptionV2024ApiSubmitSedBatchRequestRequest} requestParameters Request parameters.
|
|
119731
120762
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119780,6 +120811,10 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119780
120811
|
// oauth required
|
|
119781
120812
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119782
120813
|
|
|
120814
|
+
// authentication applicationAuth required
|
|
120815
|
+
// oauth required
|
|
120816
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120817
|
+
|
|
119783
120818
|
|
|
119784
120819
|
|
|
119785
120820
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -119874,6 +120909,10 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119874
120909
|
// oauth required
|
|
119875
120910
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119876
120911
|
|
|
120912
|
+
// authentication applicationAuth required
|
|
120913
|
+
// oauth required
|
|
120914
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120915
|
+
|
|
119877
120916
|
|
|
119878
120917
|
|
|
119879
120918
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -119916,6 +120955,10 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119916
120955
|
// oauth required
|
|
119917
120956
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119918
120957
|
|
|
120958
|
+
// authentication applicationAuth required
|
|
120959
|
+
// oauth required
|
|
120960
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120961
|
+
|
|
119919
120962
|
if (limit !== undefined) {
|
|
119920
120963
|
localVarQueryParameter['limit'] = limit;
|
|
119921
120964
|
}
|
|
@@ -119978,6 +121021,10 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119978
121021
|
// oauth required
|
|
119979
121022
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
119980
121023
|
|
|
121024
|
+
// authentication applicationAuth required
|
|
121025
|
+
// oauth required
|
|
121026
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
121027
|
+
|
|
119981
121028
|
if (limit !== undefined) {
|
|
119982
121029
|
localVarQueryParameter['limit'] = limit;
|
|
119983
121030
|
}
|
|
@@ -120043,6 +121090,10 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
120043
121090
|
// oauth required
|
|
120044
121091
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
120045
121092
|
|
|
121093
|
+
// authentication applicationAuth required
|
|
121094
|
+
// oauth required
|
|
121095
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
121096
|
+
|
|
120046
121097
|
|
|
120047
121098
|
|
|
120048
121099
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -120087,6 +121138,10 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
120087
121138
|
// oauth required
|
|
120088
121139
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
120089
121140
|
|
|
121141
|
+
// authentication applicationAuth required
|
|
121142
|
+
// oauth required
|
|
121143
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
121144
|
+
|
|
120090
121145
|
|
|
120091
121146
|
|
|
120092
121147
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -120748,11 +121803,15 @@ export const TagsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
120748
121803
|
|
|
120749
121804
|
// authentication userAuth required
|
|
120750
121805
|
// oauth required
|
|
120751
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121806
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
120752
121807
|
|
|
120753
121808
|
// authentication userAuth required
|
|
120754
121809
|
// oauth required
|
|
120755
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121810
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121811
|
+
|
|
121812
|
+
// authentication applicationAuth required
|
|
121813
|
+
// oauth required
|
|
121814
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120756
121815
|
|
|
120757
121816
|
|
|
120758
121817
|
|
|
@@ -120793,11 +121852,15 @@ export const TagsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
120793
121852
|
|
|
120794
121853
|
// authentication userAuth required
|
|
120795
121854
|
// oauth required
|
|
120796
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121855
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
120797
121856
|
|
|
120798
121857
|
// authentication userAuth required
|
|
120799
121858
|
// oauth required
|
|
120800
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121859
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121860
|
+
|
|
121861
|
+
// authentication applicationAuth required
|
|
121862
|
+
// oauth required
|
|
121863
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120801
121864
|
|
|
120802
121865
|
|
|
120803
121866
|
|
|
@@ -120835,11 +121898,15 @@ export const TagsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
120835
121898
|
|
|
120836
121899
|
// authentication userAuth required
|
|
120837
121900
|
// oauth required
|
|
120838
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121901
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
120839
121902
|
|
|
120840
121903
|
// authentication userAuth required
|
|
120841
121904
|
// oauth required
|
|
120842
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121905
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121906
|
+
|
|
121907
|
+
// authentication applicationAuth required
|
|
121908
|
+
// oauth required
|
|
121909
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120843
121910
|
|
|
120844
121911
|
|
|
120845
121912
|
|
|
@@ -120878,11 +121945,15 @@ export const TagsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
120878
121945
|
|
|
120879
121946
|
// authentication userAuth required
|
|
120880
121947
|
// oauth required
|
|
120881
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121948
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
120882
121949
|
|
|
120883
121950
|
// authentication userAuth required
|
|
120884
121951
|
// oauth required
|
|
120885
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
121952
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121953
|
+
|
|
121954
|
+
// authentication applicationAuth required
|
|
121955
|
+
// oauth required
|
|
121956
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
120886
121957
|
|
|
120887
121958
|
if (limit !== undefined) {
|
|
120888
121959
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -121183,12 +122254,13 @@ export class TagsV2024Api extends BaseAPI {
|
|
|
121183
122254
|
export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
121184
122255
|
return {
|
|
121185
122256
|
/**
|
|
121186
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
122257
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
121187
122258
|
* @summary Retrieve pending task list headers
|
|
121188
122259
|
* @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.
|
|
121189
122260
|
* @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.
|
|
121190
122261
|
* @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.
|
|
121191
122262
|
* @param {*} [axiosOptions] Override http request option.
|
|
122263
|
+
* @deprecated
|
|
121192
122264
|
* @throws {RequiredError}
|
|
121193
122265
|
*/
|
|
121194
122266
|
getPendingTaskHeaders: async (offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -121240,12 +122312,13 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
121240
122312
|
};
|
|
121241
122313
|
},
|
|
121242
122314
|
/**
|
|
121243
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
122315
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
121244
122316
|
* @summary Retrieve pending task status list
|
|
121245
122317
|
* @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.
|
|
121246
122318
|
* @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.
|
|
121247
122319
|
* @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.
|
|
121248
122320
|
* @param {*} [axiosOptions] Override http request option.
|
|
122321
|
+
* @deprecated
|
|
121249
122322
|
* @throws {RequiredError}
|
|
121250
122323
|
*/
|
|
121251
122324
|
getPendingTasks: async (offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -121468,12 +122541,13 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
121468
122541
|
const localVarAxiosParamCreator = TaskManagementV2024ApiAxiosParamCreator(configuration)
|
|
121469
122542
|
return {
|
|
121470
122543
|
/**
|
|
121471
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
122544
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
121472
122545
|
* @summary Retrieve pending task list headers
|
|
121473
122546
|
* @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.
|
|
121474
122547
|
* @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.
|
|
121475
122548
|
* @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.
|
|
121476
122549
|
* @param {*} [axiosOptions] Override http request option.
|
|
122550
|
+
* @deprecated
|
|
121477
122551
|
* @throws {RequiredError}
|
|
121478
122552
|
*/
|
|
121479
122553
|
async getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -121483,12 +122557,13 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
121483
122557
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
121484
122558
|
},
|
|
121485
122559
|
/**
|
|
121486
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
122560
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
121487
122561
|
* @summary Retrieve pending task status list
|
|
121488
122562
|
* @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.
|
|
121489
122563
|
* @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.
|
|
121490
122564
|
* @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.
|
|
121491
122565
|
* @param {*} [axiosOptions] Override http request option.
|
|
122566
|
+
* @deprecated
|
|
121492
122567
|
* @throws {RequiredError}
|
|
121493
122568
|
*/
|
|
121494
122569
|
async getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>> {
|
|
@@ -121552,20 +122627,22 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
121552
122627
|
const localVarFp = TaskManagementV2024ApiFp(configuration)
|
|
121553
122628
|
return {
|
|
121554
122629
|
/**
|
|
121555
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
122630
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
121556
122631
|
* @summary Retrieve pending task list headers
|
|
121557
122632
|
* @param {TaskManagementV2024ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
121558
122633
|
* @param {*} [axiosOptions] Override http request option.
|
|
122634
|
+
* @deprecated
|
|
121559
122635
|
* @throws {RequiredError}
|
|
121560
122636
|
*/
|
|
121561
122637
|
getPendingTaskHeaders(requestParameters: TaskManagementV2024ApiGetPendingTaskHeadersRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
121562
122638
|
return localVarFp.getPendingTaskHeaders(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
121563
122639
|
},
|
|
121564
122640
|
/**
|
|
121565
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
122641
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
121566
122642
|
* @summary Retrieve pending task status list
|
|
121567
122643
|
* @param {TaskManagementV2024ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
121568
122644
|
* @param {*} [axiosOptions] Override http request option.
|
|
122645
|
+
* @deprecated
|
|
121569
122646
|
* @throws {RequiredError}
|
|
121570
122647
|
*/
|
|
121571
122648
|
getPendingTasks(requestParameters: TaskManagementV2024ApiGetPendingTasksRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2024>> {
|
|
@@ -121745,10 +122822,11 @@ export interface TaskManagementV2024ApiUpdateTaskStatusRequest {
|
|
|
121745
122822
|
*/
|
|
121746
122823
|
export class TaskManagementV2024Api extends BaseAPI {
|
|
121747
122824
|
/**
|
|
121748
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
122825
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
121749
122826
|
* @summary Retrieve pending task list headers
|
|
121750
122827
|
* @param {TaskManagementV2024ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
121751
122828
|
* @param {*} [axiosOptions] Override http request option.
|
|
122829
|
+
* @deprecated
|
|
121752
122830
|
* @throws {RequiredError}
|
|
121753
122831
|
* @memberof TaskManagementV2024Api
|
|
121754
122832
|
*/
|
|
@@ -121757,10 +122835,11 @@ export class TaskManagementV2024Api extends BaseAPI {
|
|
|
121757
122835
|
}
|
|
121758
122836
|
|
|
121759
122837
|
/**
|
|
121760
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
122838
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
121761
122839
|
* @summary Retrieve pending task status list
|
|
121762
122840
|
* @param {TaskManagementV2024ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
121763
122841
|
* @param {*} [axiosOptions] Override http request option.
|
|
122842
|
+
* @deprecated
|
|
121764
122843
|
* @throws {RequiredError}
|
|
121765
122844
|
* @memberof TaskManagementV2024Api
|
|
121766
122845
|
*/
|
|
@@ -121954,6 +123033,10 @@ export const TenantContextV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
121954
123033
|
// oauth required
|
|
121955
123034
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121956
123035
|
|
|
123036
|
+
// authentication applicationAuth required
|
|
123037
|
+
// oauth required
|
|
123038
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123039
|
+
|
|
121957
123040
|
|
|
121958
123041
|
|
|
121959
123042
|
if (xSailPointExperimental != null) {
|
|
@@ -122003,6 +123086,10 @@ export const TenantContextV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
122003
123086
|
// oauth required
|
|
122004
123087
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122005
123088
|
|
|
123089
|
+
// authentication applicationAuth required
|
|
123090
|
+
// oauth required
|
|
123091
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123092
|
+
|
|
122006
123093
|
|
|
122007
123094
|
|
|
122008
123095
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -122195,6 +123282,10 @@ export const TransformsV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
122195
123282
|
// oauth required
|
|
122196
123283
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122197
123284
|
|
|
123285
|
+
// authentication applicationAuth required
|
|
123286
|
+
// oauth required
|
|
123287
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123288
|
+
|
|
122198
123289
|
|
|
122199
123290
|
|
|
122200
123291
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -122240,6 +123331,10 @@ export const TransformsV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
122240
123331
|
// oauth required
|
|
122241
123332
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122242
123333
|
|
|
123334
|
+
// authentication applicationAuth required
|
|
123335
|
+
// oauth required
|
|
123336
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123337
|
+
|
|
122243
123338
|
|
|
122244
123339
|
|
|
122245
123340
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -122282,6 +123377,10 @@ export const TransformsV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
122282
123377
|
// oauth required
|
|
122283
123378
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122284
123379
|
|
|
123380
|
+
// authentication applicationAuth required
|
|
123381
|
+
// oauth required
|
|
123382
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123383
|
+
|
|
122285
123384
|
|
|
122286
123385
|
|
|
122287
123386
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -122325,6 +123424,10 @@ export const TransformsV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
122325
123424
|
// oauth required
|
|
122326
123425
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122327
123426
|
|
|
123427
|
+
// authentication applicationAuth required
|
|
123428
|
+
// oauth required
|
|
123429
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123430
|
+
|
|
122328
123431
|
if (offset !== undefined) {
|
|
122329
123432
|
localVarQueryParameter['offset'] = offset;
|
|
122330
123433
|
}
|
|
@@ -122388,6 +123491,10 @@ export const TransformsV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
122388
123491
|
// oauth required
|
|
122389
123492
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122390
123493
|
|
|
123494
|
+
// authentication applicationAuth required
|
|
123495
|
+
// oauth required
|
|
123496
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123497
|
+
|
|
122391
123498
|
|
|
122392
123499
|
|
|
122393
123500
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -122817,6 +123924,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
122817
123924
|
// oauth required
|
|
122818
123925
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122819
123926
|
|
|
123927
|
+
// authentication applicationAuth required
|
|
123928
|
+
// oauth required
|
|
123929
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123930
|
+
|
|
122820
123931
|
|
|
122821
123932
|
|
|
122822
123933
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -122870,6 +123981,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
122870
123981
|
// oauth required
|
|
122871
123982
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122872
123983
|
|
|
123984
|
+
// authentication applicationAuth required
|
|
123985
|
+
// oauth required
|
|
123986
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
123987
|
+
|
|
122873
123988
|
|
|
122874
123989
|
|
|
122875
123990
|
if (xSailPointExperimental != null) {
|
|
@@ -122921,6 +124036,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
122921
124036
|
// oauth required
|
|
122922
124037
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122923
124038
|
|
|
124039
|
+
// authentication applicationAuth required
|
|
124040
|
+
// oauth required
|
|
124041
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124042
|
+
|
|
122924
124043
|
if (limit !== undefined) {
|
|
122925
124044
|
localVarQueryParameter['limit'] = limit;
|
|
122926
124045
|
}
|
|
@@ -122992,6 +124111,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
122992
124111
|
// oauth required
|
|
122993
124112
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122994
124113
|
|
|
124114
|
+
// authentication applicationAuth required
|
|
124115
|
+
// oauth required
|
|
124116
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124117
|
+
|
|
122995
124118
|
if (limit !== undefined) {
|
|
122996
124119
|
localVarQueryParameter['limit'] = limit;
|
|
122997
124120
|
}
|
|
@@ -123063,6 +124186,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
123063
124186
|
// oauth required
|
|
123064
124187
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
123065
124188
|
|
|
124189
|
+
// authentication applicationAuth required
|
|
124190
|
+
// oauth required
|
|
124191
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124192
|
+
|
|
123066
124193
|
if (limit !== undefined) {
|
|
123067
124194
|
localVarQueryParameter['limit'] = limit;
|
|
123068
124195
|
}
|
|
@@ -123136,6 +124263,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
123136
124263
|
// oauth required
|
|
123137
124264
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
123138
124265
|
|
|
124266
|
+
// authentication applicationAuth required
|
|
124267
|
+
// oauth required
|
|
124268
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124269
|
+
|
|
123139
124270
|
|
|
123140
124271
|
|
|
123141
124272
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -123188,6 +124319,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
123188
124319
|
// oauth required
|
|
123189
124320
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
123190
124321
|
|
|
124322
|
+
// authentication applicationAuth required
|
|
124323
|
+
// oauth required
|
|
124324
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124325
|
+
|
|
123191
124326
|
|
|
123192
124327
|
|
|
123193
124328
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -123240,6 +124375,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
123240
124375
|
// oauth required
|
|
123241
124376
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
123242
124377
|
|
|
124378
|
+
// authentication applicationAuth required
|
|
124379
|
+
// oauth required
|
|
124380
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124381
|
+
|
|
123243
124382
|
|
|
123244
124383
|
|
|
123245
124384
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -123296,6 +124435,10 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
123296
124435
|
// oauth required
|
|
123297
124436
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
123298
124437
|
|
|
124438
|
+
// authentication applicationAuth required
|
|
124439
|
+
// oauth required
|
|
124440
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
124441
|
+
|
|
123299
124442
|
|
|
123300
124443
|
|
|
123301
124444
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -124074,6 +125217,10 @@ export const UIMetadataV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
124074
125217
|
// oauth required
|
|
124075
125218
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
124076
125219
|
|
|
125220
|
+
// authentication applicationAuth required
|
|
125221
|
+
// oauth required
|
|
125222
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
125223
|
+
|
|
124077
125224
|
|
|
124078
125225
|
|
|
124079
125226
|
if (xSailPointExperimental != null) {
|
|
@@ -126781,6 +127928,10 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
126781
127928
|
// oauth required
|
|
126782
127929
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
126783
127930
|
|
|
127931
|
+
// authentication applicationAuth required
|
|
127932
|
+
// oauth required
|
|
127933
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
127934
|
+
|
|
126784
127935
|
|
|
126785
127936
|
|
|
126786
127937
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -127464,6 +128615,10 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
127464
128615
|
// oauth required
|
|
127465
128616
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
127466
128617
|
|
|
128618
|
+
// authentication applicationAuth required
|
|
128619
|
+
// oauth required
|
|
128620
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
128621
|
+
|
|
127467
128622
|
|
|
127468
128623
|
|
|
127469
128624
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|