sailpoint-api-client 1.2.1 → 1.2.3
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 +2242 -192
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/cc/README.md +2 -2
- package/cc/common.ts +2 -2
- package/cc/package.json +1 -1
- package/configuration.ts +2 -0
- package/dist/beta/api.d.ts +1914 -138
- package/dist/beta/api.js +989 -161
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/cc/common.js +2 -2
- package/dist/configuration.js +1 -0
- package/dist/configuration.js.map +1 -1
- package/dist/paginator.d.ts +1 -10
- package/dist/paginator.js +10 -6
- package/dist/paginator.js.map +1 -1
- package/dist/v2/common.js +2 -2
- package/dist/v3/api.d.ts +1142 -117
- package/dist/v3/api.js +1304 -46
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/package.json +2 -2
- package/paginator.ts +105 -89
- package/v2/README.md +2 -2
- package/v2/common.ts +2 -2
- package/v2/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +1738 -127
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/api.ts
CHANGED
|
@@ -2227,6 +2227,67 @@ export interface AccountAllOfBeta {
|
|
|
2227
2227
|
*/
|
|
2228
2228
|
'hasEntitlements': boolean;
|
|
2229
2229
|
}
|
|
2230
|
+
/**
|
|
2231
|
+
*
|
|
2232
|
+
* @export
|
|
2233
|
+
* @interface AccountAttributeBeta
|
|
2234
|
+
*/
|
|
2235
|
+
export interface AccountAttributeBeta {
|
|
2236
|
+
/**
|
|
2237
|
+
* A reference to the source to search for the account
|
|
2238
|
+
* @type {string}
|
|
2239
|
+
* @memberof AccountAttributeBeta
|
|
2240
|
+
*/
|
|
2241
|
+
'sourceName': string;
|
|
2242
|
+
/**
|
|
2243
|
+
* The name of the attribute on the account to return. This should match the name of the account attribute name visible in the user interface, or on the source schema.
|
|
2244
|
+
* @type {string}
|
|
2245
|
+
* @memberof AccountAttributeBeta
|
|
2246
|
+
*/
|
|
2247
|
+
'attributeName': string;
|
|
2248
|
+
/**
|
|
2249
|
+
* The value of this configuration is a string name of the attribute to use when determining the ordering of returned accounts when there are multiple entries
|
|
2250
|
+
* @type {string}
|
|
2251
|
+
* @memberof AccountAttributeBeta
|
|
2252
|
+
*/
|
|
2253
|
+
'accountSortAttribute'?: string;
|
|
2254
|
+
/**
|
|
2255
|
+
* The value of this configuration is a boolean (true/false). Controls the order of the sort when there are multiple accounts. If not defined, the transform will default to false (ascending order)
|
|
2256
|
+
* @type {boolean}
|
|
2257
|
+
* @memberof AccountAttributeBeta
|
|
2258
|
+
*/
|
|
2259
|
+
'accountSortDescending'?: boolean;
|
|
2260
|
+
/**
|
|
2261
|
+
* The value of this configuration is a boolean (true/false). Controls which account to source a value from for an attribute. If this flag is set to true, the transform returns the value from the first account in the list, even if it is null. If it is set to false, the transform returns the first non-null value. If not defined, the transform will default to false
|
|
2262
|
+
* @type {boolean}
|
|
2263
|
+
* @memberof AccountAttributeBeta
|
|
2264
|
+
*/
|
|
2265
|
+
'accountReturnFirstLink'?: boolean;
|
|
2266
|
+
/**
|
|
2267
|
+
* This expression queries the database to narrow search results. The value of this configuration is a sailpoint.object.Filter expression and used when searching against the database. The default filter will always include the source and identity, and any subsequent expressions will be combined in an AND operation to the existing search criteria. Only certain searchable attributes are available: - `nativeIdentity` - the Account ID - `displayName` - the Account Name - `entitlements` - a boolean value to determine if the account has entitlements
|
|
2268
|
+
* @type {string}
|
|
2269
|
+
* @memberof AccountAttributeBeta
|
|
2270
|
+
*/
|
|
2271
|
+
'accountFilter'?: string;
|
|
2272
|
+
/**
|
|
2273
|
+
* This expression is used to search and filter accounts in memory. The value of this configuration is a sailpoint.object.Filter expression and used when searching against the returned resultset. All account attributes are available for filtering as this operation is performed in memory.
|
|
2274
|
+
* @type {string}
|
|
2275
|
+
* @memberof AccountAttributeBeta
|
|
2276
|
+
*/
|
|
2277
|
+
'accountPropertyFilter'?: string;
|
|
2278
|
+
/**
|
|
2279
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
2280
|
+
* @type {boolean}
|
|
2281
|
+
* @memberof AccountAttributeBeta
|
|
2282
|
+
*/
|
|
2283
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
2284
|
+
/**
|
|
2285
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
2286
|
+
* @type {{ [key: string]: any; }}
|
|
2287
|
+
* @memberof AccountAttributeBeta
|
|
2288
|
+
*/
|
|
2289
|
+
'input'?: { [key: string]: any; };
|
|
2290
|
+
}
|
|
2230
2291
|
/**
|
|
2231
2292
|
*
|
|
2232
2293
|
* @export
|
|
@@ -3035,6 +3096,25 @@ export interface AccountUnlockRequestBeta {
|
|
|
3035
3096
|
*/
|
|
3036
3097
|
'forceProvisioning'?: boolean;
|
|
3037
3098
|
}
|
|
3099
|
+
/**
|
|
3100
|
+
*
|
|
3101
|
+
* @export
|
|
3102
|
+
* @interface AccountUsageBeta
|
|
3103
|
+
*/
|
|
3104
|
+
export interface AccountUsageBeta {
|
|
3105
|
+
/**
|
|
3106
|
+
* The first day of the month for which activity is aggregated.
|
|
3107
|
+
* @type {string}
|
|
3108
|
+
* @memberof AccountUsageBeta
|
|
3109
|
+
*/
|
|
3110
|
+
'date'?: string;
|
|
3111
|
+
/**
|
|
3112
|
+
* The number of days within the month that the account was active in a source.
|
|
3113
|
+
* @type {number}
|
|
3114
|
+
* @memberof AccountUsageBeta
|
|
3115
|
+
*/
|
|
3116
|
+
'count'?: number;
|
|
3117
|
+
}
|
|
3038
3118
|
/**
|
|
3039
3119
|
* Accounts async response containing details on started async process
|
|
3040
3120
|
* @export
|
|
@@ -3851,6 +3931,44 @@ export interface AuditDetailsBeta {
|
|
|
3851
3931
|
*/
|
|
3852
3932
|
'modifiedBy'?: Identity1Beta;
|
|
3853
3933
|
}
|
|
3934
|
+
/**
|
|
3935
|
+
*
|
|
3936
|
+
* @export
|
|
3937
|
+
* @interface Base64DecodeBeta
|
|
3938
|
+
*/
|
|
3939
|
+
export interface Base64DecodeBeta {
|
|
3940
|
+
/**
|
|
3941
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
3942
|
+
* @type {boolean}
|
|
3943
|
+
* @memberof Base64DecodeBeta
|
|
3944
|
+
*/
|
|
3945
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
3946
|
+
/**
|
|
3947
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
3948
|
+
* @type {{ [key: string]: any; }}
|
|
3949
|
+
* @memberof Base64DecodeBeta
|
|
3950
|
+
*/
|
|
3951
|
+
'input'?: { [key: string]: any; };
|
|
3952
|
+
}
|
|
3953
|
+
/**
|
|
3954
|
+
*
|
|
3955
|
+
* @export
|
|
3956
|
+
* @interface Base64EncodeBeta
|
|
3957
|
+
*/
|
|
3958
|
+
export interface Base64EncodeBeta {
|
|
3959
|
+
/**
|
|
3960
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
3961
|
+
* @type {boolean}
|
|
3962
|
+
* @memberof Base64EncodeBeta
|
|
3963
|
+
*/
|
|
3964
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
3965
|
+
/**
|
|
3966
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
3967
|
+
* @type {{ [key: string]: any; }}
|
|
3968
|
+
* @memberof Base64EncodeBeta
|
|
3969
|
+
*/
|
|
3970
|
+
'input'?: { [key: string]: any; };
|
|
3971
|
+
}
|
|
3854
3972
|
/**
|
|
3855
3973
|
*
|
|
3856
3974
|
* @export
|
|
@@ -4787,7 +4905,7 @@ export interface CampaignTemplateBeta {
|
|
|
4787
4905
|
*/
|
|
4788
4906
|
'deadlineDuration'?: string;
|
|
4789
4907
|
/**
|
|
4790
|
-
*
|
|
4908
|
+
* This will hold campaign related information like name, description etc.
|
|
4791
4909
|
* @type {CampaignBeta}
|
|
4792
4910
|
* @memberof CampaignTemplateBeta
|
|
4793
4911
|
*/
|
|
@@ -5961,6 +6079,31 @@ export const CompletionStatusBeta = {
|
|
|
5961
6079
|
export type CompletionStatusBeta = typeof CompletionStatusBeta[keyof typeof CompletionStatusBeta];
|
|
5962
6080
|
|
|
5963
6081
|
|
|
6082
|
+
/**
|
|
6083
|
+
*
|
|
6084
|
+
* @export
|
|
6085
|
+
* @interface ConcatenationBeta
|
|
6086
|
+
*/
|
|
6087
|
+
export interface ConcatenationBeta {
|
|
6088
|
+
/**
|
|
6089
|
+
* An array of items to join together
|
|
6090
|
+
* @type {Array<object>}
|
|
6091
|
+
* @memberof ConcatenationBeta
|
|
6092
|
+
*/
|
|
6093
|
+
'values': Array<object>;
|
|
6094
|
+
/**
|
|
6095
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
6096
|
+
* @type {boolean}
|
|
6097
|
+
* @memberof ConcatenationBeta
|
|
6098
|
+
*/
|
|
6099
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
6100
|
+
/**
|
|
6101
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
6102
|
+
* @type {{ [key: string]: any; }}
|
|
6103
|
+
* @memberof ConcatenationBeta
|
|
6104
|
+
*/
|
|
6105
|
+
'input'?: { [key: string]: any; };
|
|
6106
|
+
}
|
|
5964
6107
|
/**
|
|
5965
6108
|
* ConditionEffect is the effect produced by a condition
|
|
5966
6109
|
* @export
|
|
@@ -6066,6 +6209,43 @@ export const ConditionRuleBetaValueTypeEnum = {
|
|
|
6066
6209
|
|
|
6067
6210
|
export type ConditionRuleBetaValueTypeEnum = typeof ConditionRuleBetaValueTypeEnum[keyof typeof ConditionRuleBetaValueTypeEnum];
|
|
6068
6211
|
|
|
6212
|
+
/**
|
|
6213
|
+
*
|
|
6214
|
+
* @export
|
|
6215
|
+
* @interface ConditionalBeta
|
|
6216
|
+
*/
|
|
6217
|
+
export interface ConditionalBeta {
|
|
6218
|
+
/**
|
|
6219
|
+
* A comparison statement that follows the structure of `ValueA eq ValueB` where `ValueA` and `ValueB` are static strings or outputs of other transforms. The `eq` operator is the only valid comparison
|
|
6220
|
+
* @type {string}
|
|
6221
|
+
* @memberof ConditionalBeta
|
|
6222
|
+
*/
|
|
6223
|
+
'expression': string;
|
|
6224
|
+
/**
|
|
6225
|
+
* The output of the transform if the expression evalutes to true
|
|
6226
|
+
* @type {string}
|
|
6227
|
+
* @memberof ConditionalBeta
|
|
6228
|
+
*/
|
|
6229
|
+
'positiveCondition': string;
|
|
6230
|
+
/**
|
|
6231
|
+
* The output of the transform if the expression evalutes to false
|
|
6232
|
+
* @type {string}
|
|
6233
|
+
* @memberof ConditionalBeta
|
|
6234
|
+
*/
|
|
6235
|
+
'negativeCondition': string;
|
|
6236
|
+
/**
|
|
6237
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
6238
|
+
* @type {boolean}
|
|
6239
|
+
* @memberof ConditionalBeta
|
|
6240
|
+
*/
|
|
6241
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
6242
|
+
/**
|
|
6243
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
6244
|
+
* @type {{ [key: string]: any; }}
|
|
6245
|
+
* @memberof ConditionalBeta
|
|
6246
|
+
*/
|
|
6247
|
+
'input'?: { [key: string]: any; };
|
|
6248
|
+
}
|
|
6069
6249
|
/**
|
|
6070
6250
|
* Config export and import format for individual object configurations.
|
|
6071
6251
|
* @export
|
|
@@ -7217,6 +7397,174 @@ export const CustomPasswordInstructionBetaPageIdEnum = {
|
|
|
7217
7397
|
|
|
7218
7398
|
export type CustomPasswordInstructionBetaPageIdEnum = typeof CustomPasswordInstructionBetaPageIdEnum[keyof typeof CustomPasswordInstructionBetaPageIdEnum];
|
|
7219
7399
|
|
|
7400
|
+
/**
|
|
7401
|
+
*
|
|
7402
|
+
* @export
|
|
7403
|
+
* @interface DateCompareBeta
|
|
7404
|
+
*/
|
|
7405
|
+
export interface DateCompareBeta {
|
|
7406
|
+
/**
|
|
7407
|
+
*
|
|
7408
|
+
* @type {DateCompareFirstDateBeta}
|
|
7409
|
+
* @memberof DateCompareBeta
|
|
7410
|
+
*/
|
|
7411
|
+
'firstDate': DateCompareFirstDateBeta;
|
|
7412
|
+
/**
|
|
7413
|
+
*
|
|
7414
|
+
* @type {DateCompareSecondDateBeta}
|
|
7415
|
+
* @memberof DateCompareBeta
|
|
7416
|
+
*/
|
|
7417
|
+
'secondDate': DateCompareSecondDateBeta;
|
|
7418
|
+
/**
|
|
7419
|
+
* This is the comparison to perform. | Operation | Description | | --------- | ------- | | LT | Strictly less than: firstDate < secondDate | | LTE | Less than or equal to: firstDate <= secondDate | | GT | Strictly greater than: firstDate > secondDate | | GTE | Greater than or equal to: firstDate >= secondDate |
|
|
7420
|
+
* @type {string}
|
|
7421
|
+
* @memberof DateCompareBeta
|
|
7422
|
+
*/
|
|
7423
|
+
'operator': DateCompareBetaOperatorEnum;
|
|
7424
|
+
/**
|
|
7425
|
+
* The output of the transform if the expression evalutes to true
|
|
7426
|
+
* @type {string}
|
|
7427
|
+
* @memberof DateCompareBeta
|
|
7428
|
+
*/
|
|
7429
|
+
'positiveCondition': string;
|
|
7430
|
+
/**
|
|
7431
|
+
* The output of the transform if the expression evalutes to false
|
|
7432
|
+
* @type {string}
|
|
7433
|
+
* @memberof DateCompareBeta
|
|
7434
|
+
*/
|
|
7435
|
+
'negativeCondition': string;
|
|
7436
|
+
/**
|
|
7437
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
7438
|
+
* @type {boolean}
|
|
7439
|
+
* @memberof DateCompareBeta
|
|
7440
|
+
*/
|
|
7441
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
7442
|
+
/**
|
|
7443
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
7444
|
+
* @type {{ [key: string]: any; }}
|
|
7445
|
+
* @memberof DateCompareBeta
|
|
7446
|
+
*/
|
|
7447
|
+
'input'?: { [key: string]: any; };
|
|
7448
|
+
}
|
|
7449
|
+
|
|
7450
|
+
export const DateCompareBetaOperatorEnum = {
|
|
7451
|
+
Lt: 'LT',
|
|
7452
|
+
Lte: 'LTE',
|
|
7453
|
+
Gt: 'GT',
|
|
7454
|
+
Gte: 'GTE'
|
|
7455
|
+
} as const;
|
|
7456
|
+
|
|
7457
|
+
export type DateCompareBetaOperatorEnum = typeof DateCompareBetaOperatorEnum[keyof typeof DateCompareBetaOperatorEnum];
|
|
7458
|
+
|
|
7459
|
+
/**
|
|
7460
|
+
* @type DateCompareFirstDateBeta
|
|
7461
|
+
* This is the first date to consider (The date that would be on the left hand side of the comparison operation).
|
|
7462
|
+
* @export
|
|
7463
|
+
*/
|
|
7464
|
+
export type DateCompareFirstDateBeta = AccountAttributeBeta | DateFormatBeta;
|
|
7465
|
+
|
|
7466
|
+
/**
|
|
7467
|
+
* @type DateCompareSecondDateBeta
|
|
7468
|
+
* This is the second date to consider (The date that would be on the right hand side of the comparison operation).
|
|
7469
|
+
* @export
|
|
7470
|
+
*/
|
|
7471
|
+
export type DateCompareSecondDateBeta = AccountAttributeBeta | DateFormatBeta;
|
|
7472
|
+
|
|
7473
|
+
/**
|
|
7474
|
+
*
|
|
7475
|
+
* @export
|
|
7476
|
+
* @interface DateFormatBeta
|
|
7477
|
+
*/
|
|
7478
|
+
export interface DateFormatBeta {
|
|
7479
|
+
/**
|
|
7480
|
+
*
|
|
7481
|
+
* @type {DateFormatInputFormatBeta}
|
|
7482
|
+
* @memberof DateFormatBeta
|
|
7483
|
+
*/
|
|
7484
|
+
'inputFormat'?: DateFormatInputFormatBeta;
|
|
7485
|
+
/**
|
|
7486
|
+
*
|
|
7487
|
+
* @type {DateFormatOutputFormatBeta}
|
|
7488
|
+
* @memberof DateFormatBeta
|
|
7489
|
+
*/
|
|
7490
|
+
'outputFormat'?: DateFormatOutputFormatBeta;
|
|
7491
|
+
/**
|
|
7492
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
7493
|
+
* @type {boolean}
|
|
7494
|
+
* @memberof DateFormatBeta
|
|
7495
|
+
*/
|
|
7496
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
7497
|
+
/**
|
|
7498
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
7499
|
+
* @type {{ [key: string]: any; }}
|
|
7500
|
+
* @memberof DateFormatBeta
|
|
7501
|
+
*/
|
|
7502
|
+
'input'?: { [key: string]: any; };
|
|
7503
|
+
}
|
|
7504
|
+
/**
|
|
7505
|
+
* @type DateFormatInputFormatBeta
|
|
7506
|
+
* A string value indicating either the explicit SimpleDateFormat or the built-in named format that the data is coming in as. *If no inputFormat is provided, the transform assumes that it is in ISO8601 format*
|
|
7507
|
+
* @export
|
|
7508
|
+
*/
|
|
7509
|
+
export type DateFormatInputFormatBeta = NamedConstructsBeta | string;
|
|
7510
|
+
|
|
7511
|
+
/**
|
|
7512
|
+
* @type DateFormatOutputFormatBeta
|
|
7513
|
+
* A string value indicating either the explicit SimpleDateFormat or the built-in named format that the data should be formatted into. *If no inputFormat is provided, the transform assumes that it is in ISO8601 format*
|
|
7514
|
+
* @export
|
|
7515
|
+
*/
|
|
7516
|
+
export type DateFormatOutputFormatBeta = NamedConstructsBeta | string;
|
|
7517
|
+
|
|
7518
|
+
/**
|
|
7519
|
+
*
|
|
7520
|
+
* @export
|
|
7521
|
+
* @interface DateMathBeta
|
|
7522
|
+
*/
|
|
7523
|
+
export interface DateMathBeta {
|
|
7524
|
+
/**
|
|
7525
|
+
* A string value of the date and time components to operation on, along with the math operations to execute.
|
|
7526
|
+
* @type {string}
|
|
7527
|
+
* @memberof DateMathBeta
|
|
7528
|
+
*/
|
|
7529
|
+
'expression': string;
|
|
7530
|
+
/**
|
|
7531
|
+
* A boolean value to indicate whether the transform should round up or down when a rounding `/` operation is defined in the expression. If not provided, the transform will default to `false` `true` indicates the transform should round up (i.e., truncate the fractional date/time component indicated and then add one unit of that component) `false` indicates the transform should round down (i.e., truncate the fractional date/time component indicated)
|
|
7532
|
+
* @type {boolean}
|
|
7533
|
+
* @memberof DateMathBeta
|
|
7534
|
+
*/
|
|
7535
|
+
'roundUp'?: boolean;
|
|
7536
|
+
/**
|
|
7537
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
7538
|
+
* @type {boolean}
|
|
7539
|
+
* @memberof DateMathBeta
|
|
7540
|
+
*/
|
|
7541
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
7542
|
+
/**
|
|
7543
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
7544
|
+
* @type {{ [key: string]: any; }}
|
|
7545
|
+
* @memberof DateMathBeta
|
|
7546
|
+
*/
|
|
7547
|
+
'input'?: { [key: string]: any; };
|
|
7548
|
+
}
|
|
7549
|
+
/**
|
|
7550
|
+
*
|
|
7551
|
+
* @export
|
|
7552
|
+
* @interface DecomposeDiacriticalMarksBeta
|
|
7553
|
+
*/
|
|
7554
|
+
export interface DecomposeDiacriticalMarksBeta {
|
|
7555
|
+
/**
|
|
7556
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
7557
|
+
* @type {boolean}
|
|
7558
|
+
* @memberof DecomposeDiacriticalMarksBeta
|
|
7559
|
+
*/
|
|
7560
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
7561
|
+
/**
|
|
7562
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
7563
|
+
* @type {{ [key: string]: any; }}
|
|
7564
|
+
* @memberof DecomposeDiacriticalMarksBeta
|
|
7565
|
+
*/
|
|
7566
|
+
'input'?: { [key: string]: any; };
|
|
7567
|
+
}
|
|
7220
7568
|
/**
|
|
7221
7569
|
*
|
|
7222
7570
|
* @export
|
|
@@ -7402,6 +7750,31 @@ export const DtoTypeBeta = {
|
|
|
7402
7750
|
export type DtoTypeBeta = typeof DtoTypeBeta[keyof typeof DtoTypeBeta];
|
|
7403
7751
|
|
|
7404
7752
|
|
|
7753
|
+
/**
|
|
7754
|
+
*
|
|
7755
|
+
* @export
|
|
7756
|
+
* @interface E164phoneBeta
|
|
7757
|
+
*/
|
|
7758
|
+
export interface E164phoneBeta {
|
|
7759
|
+
/**
|
|
7760
|
+
* This is an optional attribute that can be used to define the region of the phone number to format into. If defaultRegion is not provided, it will take US as the default country. The format of the country code should be in [ISO 3166-1 alpha-2 format](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
|
|
7761
|
+
* @type {string}
|
|
7762
|
+
* @memberof E164phoneBeta
|
|
7763
|
+
*/
|
|
7764
|
+
'defaultRegion'?: string;
|
|
7765
|
+
/**
|
|
7766
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
7767
|
+
* @type {boolean}
|
|
7768
|
+
* @memberof E164phoneBeta
|
|
7769
|
+
*/
|
|
7770
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
7771
|
+
/**
|
|
7772
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
7773
|
+
* @type {{ [key: string]: any; }}
|
|
7774
|
+
* @memberof E164phoneBeta
|
|
7775
|
+
*/
|
|
7776
|
+
'input'?: { [key: string]: any; };
|
|
7777
|
+
}
|
|
7405
7778
|
/**
|
|
7406
7779
|
*
|
|
7407
7780
|
* @export
|
|
@@ -8487,6 +8860,31 @@ export interface FieldDetailsDtoBeta {
|
|
|
8487
8860
|
*/
|
|
8488
8861
|
'isMultiValued'?: boolean;
|
|
8489
8862
|
}
|
|
8863
|
+
/**
|
|
8864
|
+
*
|
|
8865
|
+
* @export
|
|
8866
|
+
* @interface FirstValidBeta
|
|
8867
|
+
*/
|
|
8868
|
+
export interface FirstValidBeta {
|
|
8869
|
+
/**
|
|
8870
|
+
* An array of attributes to evaluate for existence.
|
|
8871
|
+
* @type {Array<object>}
|
|
8872
|
+
* @memberof FirstValidBeta
|
|
8873
|
+
*/
|
|
8874
|
+
'values': Array<object>;
|
|
8875
|
+
/**
|
|
8876
|
+
* a true or false value representing to move on to the next option if an error (like an Null Pointer Exception) were to occur.
|
|
8877
|
+
* @type {boolean}
|
|
8878
|
+
* @memberof FirstValidBeta
|
|
8879
|
+
*/
|
|
8880
|
+
'ignoreErrors'?: boolean;
|
|
8881
|
+
/**
|
|
8882
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
8883
|
+
* @type {boolean}
|
|
8884
|
+
* @memberof FirstValidBeta
|
|
8885
|
+
*/
|
|
8886
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
8887
|
+
}
|
|
8490
8888
|
/**
|
|
8491
8889
|
*
|
|
8492
8890
|
* @export
|
|
@@ -9855,6 +10253,68 @@ export const FullcampaignBetaMandatoryCommentRequirementEnum = {
|
|
|
9855
10253
|
|
|
9856
10254
|
export type FullcampaignBetaMandatoryCommentRequirementEnum = typeof FullcampaignBetaMandatoryCommentRequirementEnum[keyof typeof FullcampaignBetaMandatoryCommentRequirementEnum];
|
|
9857
10255
|
|
|
10256
|
+
/**
|
|
10257
|
+
*
|
|
10258
|
+
* @export
|
|
10259
|
+
* @interface GenerateRandomStringBeta
|
|
10260
|
+
*/
|
|
10261
|
+
export interface GenerateRandomStringBeta {
|
|
10262
|
+
/**
|
|
10263
|
+
* This must always be set to \"Cloud Services Deployment Utility\"
|
|
10264
|
+
* @type {string}
|
|
10265
|
+
* @memberof GenerateRandomStringBeta
|
|
10266
|
+
*/
|
|
10267
|
+
'name': string;
|
|
10268
|
+
/**
|
|
10269
|
+
* The operation to perform `generateRandomString`
|
|
10270
|
+
* @type {string}
|
|
10271
|
+
* @memberof GenerateRandomStringBeta
|
|
10272
|
+
*/
|
|
10273
|
+
'operation': string;
|
|
10274
|
+
/**
|
|
10275
|
+
* This must be either \"true\" or \"false\" to indicate whether the generator logic should include numbers
|
|
10276
|
+
* @type {boolean}
|
|
10277
|
+
* @memberof GenerateRandomStringBeta
|
|
10278
|
+
*/
|
|
10279
|
+
'includeNumbers': boolean;
|
|
10280
|
+
/**
|
|
10281
|
+
* This must be either \"true\" or \"false\" to indicate whether the generator logic should include special characters
|
|
10282
|
+
* @type {boolean}
|
|
10283
|
+
* @memberof GenerateRandomStringBeta
|
|
10284
|
+
*/
|
|
10285
|
+
'includeSpecialChars': boolean;
|
|
10286
|
+
/**
|
|
10287
|
+
* This specifies how long the randomly generated string needs to be >NOTE Due to identity attribute data constraints, the maximum allowable value is 450 characters
|
|
10288
|
+
* @type {string}
|
|
10289
|
+
* @memberof GenerateRandomStringBeta
|
|
10290
|
+
*/
|
|
10291
|
+
'length': string;
|
|
10292
|
+
/**
|
|
10293
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
10294
|
+
* @type {boolean}
|
|
10295
|
+
* @memberof GenerateRandomStringBeta
|
|
10296
|
+
*/
|
|
10297
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
10298
|
+
}
|
|
10299
|
+
/**
|
|
10300
|
+
*
|
|
10301
|
+
* @export
|
|
10302
|
+
* @interface GenericRuleBeta
|
|
10303
|
+
*/
|
|
10304
|
+
export interface GenericRuleBeta {
|
|
10305
|
+
/**
|
|
10306
|
+
* This is the name of the Generic rule that needs to be invoked by the transform
|
|
10307
|
+
* @type {string}
|
|
10308
|
+
* @memberof GenericRuleBeta
|
|
10309
|
+
*/
|
|
10310
|
+
'name': string;
|
|
10311
|
+
/**
|
|
10312
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
10313
|
+
* @type {boolean}
|
|
10314
|
+
* @memberof GenericRuleBeta
|
|
10315
|
+
*/
|
|
10316
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
10317
|
+
}
|
|
9858
10318
|
/**
|
|
9859
10319
|
* @type GetActiveCampaigns200ResponseInnerBeta
|
|
9860
10320
|
* @export
|
|
@@ -10122,6 +10582,37 @@ export interface GetPersonalAccessTokenResponseBeta {
|
|
|
10122
10582
|
*/
|
|
10123
10583
|
'lastUsed'?: string | null;
|
|
10124
10584
|
}
|
|
10585
|
+
/**
|
|
10586
|
+
*
|
|
10587
|
+
* @export
|
|
10588
|
+
* @interface GetReferenceIdentityAttributeBeta
|
|
10589
|
+
*/
|
|
10590
|
+
export interface GetReferenceIdentityAttributeBeta {
|
|
10591
|
+
/**
|
|
10592
|
+
* This must always be set to \"Cloud Services Deployment Utility\"
|
|
10593
|
+
* @type {string}
|
|
10594
|
+
* @memberof GetReferenceIdentityAttributeBeta
|
|
10595
|
+
*/
|
|
10596
|
+
'name': string;
|
|
10597
|
+
/**
|
|
10598
|
+
* The operation to perform `getReferenceIdentityAttribute`
|
|
10599
|
+
* @type {string}
|
|
10600
|
+
* @memberof GetReferenceIdentityAttributeBeta
|
|
10601
|
+
*/
|
|
10602
|
+
'operation': string;
|
|
10603
|
+
/**
|
|
10604
|
+
* This is the SailPoint User Name (uid) value of the identity whose attribute is desired As a convenience feature, you can use the `manager` keyword to dynamically look up the user\'s manager and then get that manager\'s identity attribute.
|
|
10605
|
+
* @type {string}
|
|
10606
|
+
* @memberof GetReferenceIdentityAttributeBeta
|
|
10607
|
+
*/
|
|
10608
|
+
'uid': string;
|
|
10609
|
+
/**
|
|
10610
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
10611
|
+
* @type {boolean}
|
|
10612
|
+
* @memberof GetReferenceIdentityAttributeBeta
|
|
10613
|
+
*/
|
|
10614
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
10615
|
+
}
|
|
10125
10616
|
/**
|
|
10126
10617
|
* OAuth2 Grant Type
|
|
10127
10618
|
* @export
|
|
@@ -10204,6 +10695,31 @@ export const HttpDispatchModeBeta = {
|
|
|
10204
10695
|
export type HttpDispatchModeBeta = typeof HttpDispatchModeBeta[keyof typeof HttpDispatchModeBeta];
|
|
10205
10696
|
|
|
10206
10697
|
|
|
10698
|
+
/**
|
|
10699
|
+
*
|
|
10700
|
+
* @export
|
|
10701
|
+
* @interface ISO3166Beta
|
|
10702
|
+
*/
|
|
10703
|
+
export interface ISO3166Beta {
|
|
10704
|
+
/**
|
|
10705
|
+
* An optional value to denote which ISO 3166 format to return. Valid values are: `alpha2` - Two-character country code (e.g., \"US\"); this is the default value if no format is supplied `alpha3` - Three-character country code (e.g., \"USA\") `numeric` - The numeric country code (e.g., \"840\")
|
|
10706
|
+
* @type {string}
|
|
10707
|
+
* @memberof ISO3166Beta
|
|
10708
|
+
*/
|
|
10709
|
+
'format'?: string;
|
|
10710
|
+
/**
|
|
10711
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
10712
|
+
* @type {boolean}
|
|
10713
|
+
* @memberof ISO3166Beta
|
|
10714
|
+
*/
|
|
10715
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
10716
|
+
/**
|
|
10717
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
10718
|
+
* @type {{ [key: string]: any; }}
|
|
10719
|
+
* @memberof ISO3166Beta
|
|
10720
|
+
*/
|
|
10721
|
+
'input'?: { [key: string]: any; };
|
|
10722
|
+
}
|
|
10207
10723
|
/**
|
|
10208
10724
|
*
|
|
10209
10725
|
* @export
|
|
@@ -10274,6 +10790,86 @@ export interface IdentityAssociationDetailsBeta {
|
|
|
10274
10790
|
*/
|
|
10275
10791
|
'associationDetails'?: Array<IdentityAssociationDetailsAssociationDetailsInnerBeta>;
|
|
10276
10792
|
}
|
|
10793
|
+
/**
|
|
10794
|
+
*
|
|
10795
|
+
* @export
|
|
10796
|
+
* @interface IdentityAttribute1Beta
|
|
10797
|
+
*/
|
|
10798
|
+
export interface IdentityAttribute1Beta {
|
|
10799
|
+
/**
|
|
10800
|
+
* The system (camel-cased) name of the identity attribute to bring in
|
|
10801
|
+
* @type {string}
|
|
10802
|
+
* @memberof IdentityAttribute1Beta
|
|
10803
|
+
*/
|
|
10804
|
+
'name': string;
|
|
10805
|
+
/**
|
|
10806
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
10807
|
+
* @type {boolean}
|
|
10808
|
+
* @memberof IdentityAttribute1Beta
|
|
10809
|
+
*/
|
|
10810
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
10811
|
+
/**
|
|
10812
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
10813
|
+
* @type {{ [key: string]: any; }}
|
|
10814
|
+
* @memberof IdentityAttribute1Beta
|
|
10815
|
+
*/
|
|
10816
|
+
'input'?: { [key: string]: any; };
|
|
10817
|
+
}
|
|
10818
|
+
/**
|
|
10819
|
+
*
|
|
10820
|
+
* @export
|
|
10821
|
+
* @interface IdentityAttributeBeta
|
|
10822
|
+
*/
|
|
10823
|
+
export interface IdentityAttributeBeta {
|
|
10824
|
+
/**
|
|
10825
|
+
* The technical name of the identity attribute
|
|
10826
|
+
* @type {string}
|
|
10827
|
+
* @memberof IdentityAttributeBeta
|
|
10828
|
+
*/
|
|
10829
|
+
'name'?: string;
|
|
10830
|
+
/**
|
|
10831
|
+
* The business-friendly name of the identity attribute
|
|
10832
|
+
* @type {string}
|
|
10833
|
+
* @memberof IdentityAttributeBeta
|
|
10834
|
+
*/
|
|
10835
|
+
'displayName'?: string;
|
|
10836
|
+
/**
|
|
10837
|
+
* Shows if the attribute is \'standard\' or default
|
|
10838
|
+
* @type {boolean}
|
|
10839
|
+
* @memberof IdentityAttributeBeta
|
|
10840
|
+
*/
|
|
10841
|
+
'standard'?: boolean;
|
|
10842
|
+
/**
|
|
10843
|
+
* The type of the identity attribute
|
|
10844
|
+
* @type {string}
|
|
10845
|
+
* @memberof IdentityAttributeBeta
|
|
10846
|
+
*/
|
|
10847
|
+
'type'?: string;
|
|
10848
|
+
/**
|
|
10849
|
+
* Shows if the identity attribute is multi-valued
|
|
10850
|
+
* @type {boolean}
|
|
10851
|
+
* @memberof IdentityAttributeBeta
|
|
10852
|
+
*/
|
|
10853
|
+
'multi'?: boolean;
|
|
10854
|
+
/**
|
|
10855
|
+
* Shows if the identity attribute is searchable
|
|
10856
|
+
* @type {boolean}
|
|
10857
|
+
* @memberof IdentityAttributeBeta
|
|
10858
|
+
*/
|
|
10859
|
+
'searchable'?: boolean;
|
|
10860
|
+
/**
|
|
10861
|
+
* Shows this is \'system\' identity attribute that does not have a source and is not configurable.
|
|
10862
|
+
* @type {boolean}
|
|
10863
|
+
* @memberof IdentityAttributeBeta
|
|
10864
|
+
*/
|
|
10865
|
+
'system'?: boolean;
|
|
10866
|
+
/**
|
|
10867
|
+
* List of sources for an attribute, this specifies how the value of the rule is derived
|
|
10868
|
+
* @type {Array<Source1Beta>}
|
|
10869
|
+
* @memberof IdentityAttributeBeta
|
|
10870
|
+
*/
|
|
10871
|
+
'sources'?: Array<Source1Beta>;
|
|
10872
|
+
}
|
|
10277
10873
|
/**
|
|
10278
10874
|
* Defines all the identity attribute mapping configurations. This defines how to generate or collect data for each identity attributes in identity refresh process.
|
|
10279
10875
|
* @export
|
|
@@ -11905,6 +12501,31 @@ export interface ImportSpConfigRequestBeta {
|
|
|
11905
12501
|
*/
|
|
11906
12502
|
'options'?: ImportOptionsBeta;
|
|
11907
12503
|
}
|
|
12504
|
+
/**
|
|
12505
|
+
*
|
|
12506
|
+
* @export
|
|
12507
|
+
* @interface IndexOfBeta
|
|
12508
|
+
*/
|
|
12509
|
+
export interface IndexOfBeta {
|
|
12510
|
+
/**
|
|
12511
|
+
* A substring to search for, searches the entire calling string, and returns the index of the first occurrence of the specified substring.
|
|
12512
|
+
* @type {string}
|
|
12513
|
+
* @memberof IndexOfBeta
|
|
12514
|
+
*/
|
|
12515
|
+
'substring': string;
|
|
12516
|
+
/**
|
|
12517
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
12518
|
+
* @type {boolean}
|
|
12519
|
+
* @memberof IndexOfBeta
|
|
12520
|
+
*/
|
|
12521
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
12522
|
+
/**
|
|
12523
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
12524
|
+
* @type {{ [key: string]: any; }}
|
|
12525
|
+
* @memberof IndexOfBeta
|
|
12526
|
+
*/
|
|
12527
|
+
'input'?: { [key: string]: any; };
|
|
12528
|
+
}
|
|
11908
12529
|
/**
|
|
11909
12530
|
*
|
|
11910
12531
|
* @export
|
|
@@ -12114,6 +12735,37 @@ export const LatestOutlierSummaryBetaTypeEnum = {
|
|
|
12114
12735
|
|
|
12115
12736
|
export type LatestOutlierSummaryBetaTypeEnum = typeof LatestOutlierSummaryBetaTypeEnum[keyof typeof LatestOutlierSummaryBetaTypeEnum];
|
|
12116
12737
|
|
|
12738
|
+
/**
|
|
12739
|
+
*
|
|
12740
|
+
* @export
|
|
12741
|
+
* @interface LeftPadBeta
|
|
12742
|
+
*/
|
|
12743
|
+
export interface LeftPadBeta {
|
|
12744
|
+
/**
|
|
12745
|
+
* An integer value for the desired length of the final output string
|
|
12746
|
+
* @type {string}
|
|
12747
|
+
* @memberof LeftPadBeta
|
|
12748
|
+
*/
|
|
12749
|
+
'length': string;
|
|
12750
|
+
/**
|
|
12751
|
+
* A string value representing the character that the incoming data should be padded with to get to the desired length If not provided, the transform will default to a single space (\" \") character for padding
|
|
12752
|
+
* @type {string}
|
|
12753
|
+
* @memberof LeftPadBeta
|
|
12754
|
+
*/
|
|
12755
|
+
'padding'?: string;
|
|
12756
|
+
/**
|
|
12757
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
12758
|
+
* @type {boolean}
|
|
12759
|
+
* @memberof LeftPadBeta
|
|
12760
|
+
*/
|
|
12761
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
12762
|
+
/**
|
|
12763
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
12764
|
+
* @type {{ [key: string]: any; }}
|
|
12765
|
+
* @memberof LeftPadBeta
|
|
12766
|
+
*/
|
|
12767
|
+
'input'?: { [key: string]: any; };
|
|
12768
|
+
}
|
|
12117
12769
|
/**
|
|
12118
12770
|
*
|
|
12119
12771
|
* @export
|
|
@@ -12511,6 +13163,31 @@ export interface LocalizedMessageBeta {
|
|
|
12511
13163
|
*/
|
|
12512
13164
|
'message': string;
|
|
12513
13165
|
}
|
|
13166
|
+
/**
|
|
13167
|
+
*
|
|
13168
|
+
* @export
|
|
13169
|
+
* @interface LookupBeta
|
|
13170
|
+
*/
|
|
13171
|
+
export interface LookupBeta {
|
|
13172
|
+
/**
|
|
13173
|
+
* This is a JSON object of key-value pairs. The key is the string that will attempt to be matched to the input, and the value is the output string that should be returned if the key is matched >**Note** the use of the optional default key value here; if none of the three countries in the above example match the input string, the transform will return \"Unknown Region\" for the attribute that is mapped to this transform.
|
|
13174
|
+
* @type {{ [key: string]: any; }}
|
|
13175
|
+
* @memberof LookupBeta
|
|
13176
|
+
*/
|
|
13177
|
+
'table': { [key: string]: any; };
|
|
13178
|
+
/**
|
|
13179
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
13180
|
+
* @type {boolean}
|
|
13181
|
+
* @memberof LookupBeta
|
|
13182
|
+
*/
|
|
13183
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
13184
|
+
/**
|
|
13185
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
13186
|
+
* @type {{ [key: string]: any; }}
|
|
13187
|
+
* @memberof LookupBeta
|
|
13188
|
+
*/
|
|
13189
|
+
'input'?: { [key: string]: any; };
|
|
13190
|
+
}
|
|
12514
13191
|
/**
|
|
12515
13192
|
* The definition of an Identity according to the Reassignment Configuration service
|
|
12516
13193
|
* @export
|
|
@@ -12536,6 +13213,25 @@ export interface LookupStepBeta {
|
|
|
12536
13213
|
*/
|
|
12537
13214
|
'reassignmentType'?: ReassignmentTypeEnumBeta;
|
|
12538
13215
|
}
|
|
13216
|
+
/**
|
|
13217
|
+
*
|
|
13218
|
+
* @export
|
|
13219
|
+
* @interface LowerBeta
|
|
13220
|
+
*/
|
|
13221
|
+
export interface LowerBeta {
|
|
13222
|
+
/**
|
|
13223
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
13224
|
+
* @type {boolean}
|
|
13225
|
+
* @memberof LowerBeta
|
|
13226
|
+
*/
|
|
13227
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
13228
|
+
/**
|
|
13229
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
13230
|
+
* @type {{ [key: string]: any; }}
|
|
13231
|
+
* @memberof LowerBeta
|
|
13232
|
+
*/
|
|
13233
|
+
'input'?: { [key: string]: any; };
|
|
13234
|
+
}
|
|
12539
13235
|
/**
|
|
12540
13236
|
* MAIL FROM attributes for a domain / identity
|
|
12541
13237
|
* @export
|
|
@@ -13274,6 +13970,42 @@ export interface MultiPolicyRequestBeta {
|
|
|
13274
13970
|
*/
|
|
13275
13971
|
'filteredPolicyList'?: Array<string>;
|
|
13276
13972
|
}
|
|
13973
|
+
/**
|
|
13974
|
+
*
|
|
13975
|
+
* @export
|
|
13976
|
+
* @interface NameNormalizerBeta
|
|
13977
|
+
*/
|
|
13978
|
+
export interface NameNormalizerBeta {
|
|
13979
|
+
/**
|
|
13980
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
13981
|
+
* @type {boolean}
|
|
13982
|
+
* @memberof NameNormalizerBeta
|
|
13983
|
+
*/
|
|
13984
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
13985
|
+
/**
|
|
13986
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
13987
|
+
* @type {{ [key: string]: any; }}
|
|
13988
|
+
* @memberof NameNormalizerBeta
|
|
13989
|
+
*/
|
|
13990
|
+
'input'?: { [key: string]: any; };
|
|
13991
|
+
}
|
|
13992
|
+
/**
|
|
13993
|
+
* | Construct | Date Time Pattern | Description | | --------- | ----------------- | ----------- | | ISO8601 | `yyyy-MM-dd\'T\'HH:mm:ss.SSSX` | The ISO8601 standard. | | LDAP | `yyyyMMddHHmmss.Z` | The LDAP standard. | | PEOPLE_SOFT | `MM/dd/yyyy` | The date format People Soft uses. | | EPOCH_TIME_JAVA | # ms from midnight, January 1st, 1970 | The incoming date value as elapsed time in milliseconds from midnight, January 1st, 1970. | | EPOCH_TIME_WIN32| # intervals of 100ns from midnight, January 1st, 1601 | The incoming date value as elapsed time in 100-nanosecond intervals from midnight, January 1st, 1601. |
|
|
13994
|
+
* @export
|
|
13995
|
+
* @enum {string}
|
|
13996
|
+
*/
|
|
13997
|
+
|
|
13998
|
+
export const NamedConstructsBeta = {
|
|
13999
|
+
Iso8601: 'ISO8601',
|
|
14000
|
+
Ldap: 'LDAP',
|
|
14001
|
+
PeopleSoft: 'PEOPLE_SOFT',
|
|
14002
|
+
EpochTimeJava: 'EPOCH_TIME_JAVA',
|
|
14003
|
+
EpochTimeWin32: 'EPOCH_TIME_WIN32'
|
|
14004
|
+
} as const;
|
|
14005
|
+
|
|
14006
|
+
export type NamedConstructsBeta = typeof NamedConstructsBeta[keyof typeof NamedConstructsBeta];
|
|
14007
|
+
|
|
14008
|
+
|
|
13277
14009
|
/**
|
|
13278
14010
|
* Source configuration information for Native Change Detection that is read and used by account aggregation process.
|
|
13279
14011
|
* @export
|
|
@@ -16575,6 +17307,56 @@ export interface QueuedCheckConfigDetailsBeta {
|
|
|
16575
17307
|
*/
|
|
16576
17308
|
'provisioningMaxStatusCheckDays': string;
|
|
16577
17309
|
}
|
|
17310
|
+
/**
|
|
17311
|
+
*
|
|
17312
|
+
* @export
|
|
17313
|
+
* @interface RandomAlphaNumericBeta
|
|
17314
|
+
*/
|
|
17315
|
+
export interface RandomAlphaNumericBeta {
|
|
17316
|
+
/**
|
|
17317
|
+
* This is an integer value specifying the size/number of characters the random string must contain * This value must be a positive number and cannot be blank * If no length is provided, the transform will default to a value of `32` * Due to identity attribute data constraints, the maximum allowable value is `450` characters
|
|
17318
|
+
* @type {string}
|
|
17319
|
+
* @memberof RandomAlphaNumericBeta
|
|
17320
|
+
*/
|
|
17321
|
+
'length'?: string;
|
|
17322
|
+
/**
|
|
17323
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
17324
|
+
* @type {boolean}
|
|
17325
|
+
* @memberof RandomAlphaNumericBeta
|
|
17326
|
+
*/
|
|
17327
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
17328
|
+
/**
|
|
17329
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
17330
|
+
* @type {{ [key: string]: any; }}
|
|
17331
|
+
* @memberof RandomAlphaNumericBeta
|
|
17332
|
+
*/
|
|
17333
|
+
'input'?: { [key: string]: any; };
|
|
17334
|
+
}
|
|
17335
|
+
/**
|
|
17336
|
+
*
|
|
17337
|
+
* @export
|
|
17338
|
+
* @interface RandomNumericBeta
|
|
17339
|
+
*/
|
|
17340
|
+
export interface RandomNumericBeta {
|
|
17341
|
+
/**
|
|
17342
|
+
* This is an integer value specifying the size/number of characters the random string must contain * This value must be a positive number and cannot be blank * If no length is provided, the transform will default to a value of `32` * Due to identity attribute data constraints, the maximum allowable value is `450` characters
|
|
17343
|
+
* @type {string}
|
|
17344
|
+
* @memberof RandomNumericBeta
|
|
17345
|
+
*/
|
|
17346
|
+
'length'?: string;
|
|
17347
|
+
/**
|
|
17348
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
17349
|
+
* @type {boolean}
|
|
17350
|
+
* @memberof RandomNumericBeta
|
|
17351
|
+
*/
|
|
17352
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
17353
|
+
/**
|
|
17354
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
17355
|
+
* @type {{ [key: string]: any; }}
|
|
17356
|
+
* @memberof RandomNumericBeta
|
|
17357
|
+
*/
|
|
17358
|
+
'input'?: { [key: string]: any; };
|
|
17359
|
+
}
|
|
16578
17360
|
/**
|
|
16579
17361
|
*
|
|
16580
17362
|
* @export
|
|
@@ -16863,6 +17645,31 @@ export interface RecommenderCalculationsIdentityAttributesValueBeta {
|
|
|
16863
17645
|
*/
|
|
16864
17646
|
'value'?: string;
|
|
16865
17647
|
}
|
|
17648
|
+
/**
|
|
17649
|
+
*
|
|
17650
|
+
* @export
|
|
17651
|
+
* @interface ReferenceBeta
|
|
17652
|
+
*/
|
|
17653
|
+
export interface ReferenceBeta {
|
|
17654
|
+
/**
|
|
17655
|
+
* This ID specifies the name of the pre-existing transform which you want to use within your current transform
|
|
17656
|
+
* @type {string}
|
|
17657
|
+
* @memberof ReferenceBeta
|
|
17658
|
+
*/
|
|
17659
|
+
'id': string;
|
|
17660
|
+
/**
|
|
17661
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
17662
|
+
* @type {boolean}
|
|
17663
|
+
* @memberof ReferenceBeta
|
|
17664
|
+
*/
|
|
17665
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
17666
|
+
/**
|
|
17667
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
17668
|
+
* @type {{ [key: string]: any; }}
|
|
17669
|
+
* @memberof ReferenceBeta
|
|
17670
|
+
*/
|
|
17671
|
+
'input'?: { [key: string]: any; };
|
|
17672
|
+
}
|
|
16866
17673
|
/**
|
|
16867
17674
|
*
|
|
16868
17675
|
* @export
|
|
@@ -16985,6 +17792,62 @@ export interface RemediationItemsBeta {
|
|
|
16985
17792
|
*/
|
|
16986
17793
|
'nativeIdentity'?: string;
|
|
16987
17794
|
}
|
|
17795
|
+
/**
|
|
17796
|
+
*
|
|
17797
|
+
* @export
|
|
17798
|
+
* @interface ReplaceAllBeta
|
|
17799
|
+
*/
|
|
17800
|
+
export interface ReplaceAllBeta {
|
|
17801
|
+
/**
|
|
17802
|
+
* An attribute of key-value pairs. Each pair identifies the pattern to search for as its key, and the replacement string as its value.
|
|
17803
|
+
* @type {{ [key: string]: any; }}
|
|
17804
|
+
* @memberof ReplaceAllBeta
|
|
17805
|
+
*/
|
|
17806
|
+
'table': { [key: string]: any; };
|
|
17807
|
+
/**
|
|
17808
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
17809
|
+
* @type {boolean}
|
|
17810
|
+
* @memberof ReplaceAllBeta
|
|
17811
|
+
*/
|
|
17812
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
17813
|
+
/**
|
|
17814
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
17815
|
+
* @type {{ [key: string]: any; }}
|
|
17816
|
+
* @memberof ReplaceAllBeta
|
|
17817
|
+
*/
|
|
17818
|
+
'input'?: { [key: string]: any; };
|
|
17819
|
+
}
|
|
17820
|
+
/**
|
|
17821
|
+
*
|
|
17822
|
+
* @export
|
|
17823
|
+
* @interface ReplaceBeta
|
|
17824
|
+
*/
|
|
17825
|
+
export interface ReplaceBeta {
|
|
17826
|
+
/**
|
|
17827
|
+
* This can be a string or a regex pattern in which you want to replace.
|
|
17828
|
+
* @type {string}
|
|
17829
|
+
* @memberof ReplaceBeta
|
|
17830
|
+
*/
|
|
17831
|
+
'regex': string;
|
|
17832
|
+
/**
|
|
17833
|
+
* This is the replacement string that should be substituded wherever the string or pattern is found.
|
|
17834
|
+
* @type {string}
|
|
17835
|
+
* @memberof ReplaceBeta
|
|
17836
|
+
*/
|
|
17837
|
+
'replacement': string;
|
|
17838
|
+
/**
|
|
17839
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
17840
|
+
* @type {boolean}
|
|
17841
|
+
* @memberof ReplaceBeta
|
|
17842
|
+
*/
|
|
17843
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
17844
|
+
/**
|
|
17845
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
17846
|
+
* @type {{ [key: string]: any; }}
|
|
17847
|
+
* @memberof ReplaceBeta
|
|
17848
|
+
*/
|
|
17849
|
+
'input'?: { [key: string]: any; };
|
|
17850
|
+
}
|
|
16988
17851
|
/**
|
|
16989
17852
|
*
|
|
16990
17853
|
* @export
|
|
@@ -17729,6 +18592,37 @@ export interface RevocabilityBeta {
|
|
|
17729
18592
|
*/
|
|
17730
18593
|
'approvalSchemes'?: Array<AccessProfileApprovalSchemeBeta>;
|
|
17731
18594
|
}
|
|
18595
|
+
/**
|
|
18596
|
+
*
|
|
18597
|
+
* @export
|
|
18598
|
+
* @interface RightPadBeta
|
|
18599
|
+
*/
|
|
18600
|
+
export interface RightPadBeta {
|
|
18601
|
+
/**
|
|
18602
|
+
* An integer value for the desired length of the final output string
|
|
18603
|
+
* @type {string}
|
|
18604
|
+
* @memberof RightPadBeta
|
|
18605
|
+
*/
|
|
18606
|
+
'length': string;
|
|
18607
|
+
/**
|
|
18608
|
+
* A string value representing the character that the incoming data should be padded with to get to the desired length If not provided, the transform will default to a single space (\" \") character for padding
|
|
18609
|
+
* @type {string}
|
|
18610
|
+
* @memberof RightPadBeta
|
|
18611
|
+
*/
|
|
18612
|
+
'padding'?: string;
|
|
18613
|
+
/**
|
|
18614
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
18615
|
+
* @type {boolean}
|
|
18616
|
+
* @memberof RightPadBeta
|
|
18617
|
+
*/
|
|
18618
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
18619
|
+
/**
|
|
18620
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
18621
|
+
* @type {{ [key: string]: any; }}
|
|
18622
|
+
* @memberof RightPadBeta
|
|
18623
|
+
*/
|
|
18624
|
+
'input'?: { [key: string]: any; };
|
|
18625
|
+
}
|
|
17732
18626
|
/**
|
|
17733
18627
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
17734
18628
|
* @export
|
|
@@ -19204,6 +20098,12 @@ export interface RoleMiningSessionStatusBeta {
|
|
|
19204
20098
|
*/
|
|
19205
20099
|
'state'?: string;
|
|
19206
20100
|
}
|
|
20101
|
+
/**
|
|
20102
|
+
* @type RuleBeta
|
|
20103
|
+
* @export
|
|
20104
|
+
*/
|
|
20105
|
+
export type RuleBeta = GenerateRandomStringBeta | GenericRuleBeta | GetReferenceIdentityAttributeBeta;
|
|
20106
|
+
|
|
19207
20107
|
/**
|
|
19208
20108
|
*
|
|
19209
20109
|
* @export
|
|
@@ -19477,7 +20377,7 @@ export interface ScheduleBeta {
|
|
|
19477
20377
|
*/
|
|
19478
20378
|
'expiration'?: string;
|
|
19479
20379
|
/**
|
|
19480
|
-
* The time zone to use when running the schedule. For instance, if the schedule is
|
|
20380
|
+
* The time zone to use when running the schedule. For instance, if the schedule is scheduled to run at 1AM, and this field is set to \"CST\", the schedule will run at 1AM CST.
|
|
19481
20381
|
* @type {string}
|
|
19482
20382
|
* @memberof ScheduleBeta
|
|
19483
20383
|
*/
|
|
@@ -19485,7 +20385,6 @@ export interface ScheduleBeta {
|
|
|
19485
20385
|
}
|
|
19486
20386
|
|
|
19487
20387
|
export const ScheduleBetaTypeEnum = {
|
|
19488
|
-
Daily: 'DAILY',
|
|
19489
20388
|
Weekly: 'WEEKLY',
|
|
19490
20389
|
Monthly: 'MONTHLY',
|
|
19491
20390
|
Annually: 'ANNUALLY',
|
|
@@ -19495,25 +20394,25 @@ export const ScheduleBetaTypeEnum = {
|
|
|
19495
20394
|
export type ScheduleBetaTypeEnum = typeof ScheduleBetaTypeEnum[keyof typeof ScheduleBetaTypeEnum];
|
|
19496
20395
|
|
|
19497
20396
|
/**
|
|
19498
|
-
* Specifies which day(s) a schedule is active for. This is required for all schedule types
|
|
20397
|
+
* Specifies which day(s) a schedule is active for. This is required for all schedule types. The \"values\" field holds different data depending on the type of schedule: * WEEKLY: days of the week (1-7) * MONTHLY: days of the month (1-31, L, L-1...) * ANNUALLY: if the \"months\" field is also set: days of the month (1-31, L, L-1...); otherwise: ISO-8601 dates without year (\"--12-31\") * CALENDAR: ISO-8601 dates (\"2020-12-31\") Note that CALENDAR only supports the LIST type, and ANNUALLY does not support the RANGE type when provided with ISO-8601 dates without year. Examples: On Sundays: * type LIST * values \"1\" The second to last day of the month: * type LIST * values \"L-1\" From the 20th to the last day of the month: * type RANGE * values \"20\", \"L\" Every March 2nd: * type LIST * values \"--03-02\" On March 2nd, 2021: * type: LIST * values \"2021-03-02\"
|
|
19499
20398
|
* @export
|
|
19500
20399
|
* @interface ScheduleDaysBeta
|
|
19501
20400
|
*/
|
|
19502
20401
|
export interface ScheduleDaysBeta {
|
|
19503
20402
|
/**
|
|
19504
|
-
*
|
|
20403
|
+
* Enum type to specify days value
|
|
19505
20404
|
* @type {string}
|
|
19506
20405
|
* @memberof ScheduleDaysBeta
|
|
19507
20406
|
*/
|
|
19508
20407
|
'type': ScheduleDaysBetaTypeEnum;
|
|
19509
20408
|
/**
|
|
19510
|
-
*
|
|
20409
|
+
* Values of the days based on the enum type mentioned above
|
|
19511
20410
|
* @type {Array<string>}
|
|
19512
20411
|
* @memberof ScheduleDaysBeta
|
|
19513
20412
|
*/
|
|
19514
20413
|
'values': Array<string>;
|
|
19515
20414
|
/**
|
|
19516
|
-
*
|
|
20415
|
+
* Interval between the cert generations
|
|
19517
20416
|
* @type {number}
|
|
19518
20417
|
* @memberof ScheduleDaysBeta
|
|
19519
20418
|
*/
|
|
@@ -19534,19 +20433,19 @@ export type ScheduleDaysBetaTypeEnum = typeof ScheduleDaysBetaTypeEnum[keyof typ
|
|
|
19534
20433
|
*/
|
|
19535
20434
|
export interface ScheduleHoursBeta {
|
|
19536
20435
|
/**
|
|
19537
|
-
*
|
|
20436
|
+
* Enum type to specify hours value
|
|
19538
20437
|
* @type {string}
|
|
19539
20438
|
* @memberof ScheduleHoursBeta
|
|
19540
20439
|
*/
|
|
19541
20440
|
'type': ScheduleHoursBetaTypeEnum;
|
|
19542
20441
|
/**
|
|
19543
|
-
*
|
|
20442
|
+
* Values of the days based on the enum type mentioned above
|
|
19544
20443
|
* @type {Array<string>}
|
|
19545
20444
|
* @memberof ScheduleHoursBeta
|
|
19546
20445
|
*/
|
|
19547
20446
|
'values': Array<string>;
|
|
19548
20447
|
/**
|
|
19549
|
-
*
|
|
20448
|
+
* Interval between the cert generations
|
|
19550
20449
|
* @type {number}
|
|
19551
20450
|
* @memberof ScheduleHoursBeta
|
|
19552
20451
|
*/
|
|
@@ -19567,19 +20466,19 @@ export type ScheduleHoursBetaTypeEnum = typeof ScheduleHoursBetaTypeEnum[keyof t
|
|
|
19567
20466
|
*/
|
|
19568
20467
|
export interface ScheduleMonthsBeta {
|
|
19569
20468
|
/**
|
|
19570
|
-
*
|
|
20469
|
+
* Enum type to specify months value
|
|
19571
20470
|
* @type {string}
|
|
19572
20471
|
* @memberof ScheduleMonthsBeta
|
|
19573
20472
|
*/
|
|
19574
20473
|
'type': ScheduleMonthsBetaTypeEnum;
|
|
19575
20474
|
/**
|
|
19576
|
-
*
|
|
20475
|
+
* Values of the months based on the enum type mentioned above
|
|
19577
20476
|
* @type {Array<string>}
|
|
19578
20477
|
* @memberof ScheduleMonthsBeta
|
|
19579
20478
|
*/
|
|
19580
20479
|
'values': Array<string>;
|
|
19581
20480
|
/**
|
|
19582
|
-
*
|
|
20481
|
+
* Interval between the cert generations
|
|
19583
20482
|
* @type {number}
|
|
19584
20483
|
* @memberof ScheduleMonthsBeta
|
|
19585
20484
|
*/
|
|
@@ -20970,6 +21869,25 @@ export interface SodViolationContextConflictingAccessCriteriaLeftCriteriaBeta {
|
|
|
20970
21869
|
*/
|
|
20971
21870
|
'criteriaList'?: Array<SodExemptCriteriaBeta>;
|
|
20972
21871
|
}
|
|
21872
|
+
/**
|
|
21873
|
+
*
|
|
21874
|
+
* @export
|
|
21875
|
+
* @interface Source1Beta
|
|
21876
|
+
*/
|
|
21877
|
+
export interface Source1Beta {
|
|
21878
|
+
/**
|
|
21879
|
+
* The type of the source
|
|
21880
|
+
* @type {string}
|
|
21881
|
+
* @memberof Source1Beta
|
|
21882
|
+
*/
|
|
21883
|
+
'type'?: string;
|
|
21884
|
+
/**
|
|
21885
|
+
* The source properties
|
|
21886
|
+
* @type {object}
|
|
21887
|
+
* @memberof Source1Beta
|
|
21888
|
+
*/
|
|
21889
|
+
'properties'?: object;
|
|
21890
|
+
}
|
|
20973
21891
|
/**
|
|
20974
21892
|
*
|
|
20975
21893
|
* @export
|
|
@@ -21831,6 +22749,46 @@ export interface SourceUpdatedBeta {
|
|
|
21831
22749
|
*/
|
|
21832
22750
|
'actor': SourceUpdatedActorBeta;
|
|
21833
22751
|
}
|
|
22752
|
+
/**
|
|
22753
|
+
*
|
|
22754
|
+
* @export
|
|
22755
|
+
* @interface SourceUsageBeta
|
|
22756
|
+
*/
|
|
22757
|
+
export interface SourceUsageBeta {
|
|
22758
|
+
/**
|
|
22759
|
+
* The first day of the month for which activity is aggregated.
|
|
22760
|
+
* @type {string}
|
|
22761
|
+
* @memberof SourceUsageBeta
|
|
22762
|
+
*/
|
|
22763
|
+
'date'?: string;
|
|
22764
|
+
/**
|
|
22765
|
+
* The average number of days that accounts were active within this source, for the month.
|
|
22766
|
+
* @type {number}
|
|
22767
|
+
* @memberof SourceUsageBeta
|
|
22768
|
+
*/
|
|
22769
|
+
'count'?: number;
|
|
22770
|
+
}
|
|
22771
|
+
/**
|
|
22772
|
+
*
|
|
22773
|
+
* @export
|
|
22774
|
+
* @interface SourceUsageStatusBeta
|
|
22775
|
+
*/
|
|
22776
|
+
export interface SourceUsageStatusBeta {
|
|
22777
|
+
/**
|
|
22778
|
+
* Source Usage Status. Acceptable values are: - COMPLETE - This status means that an activity data source has been setup and usage insights are available for the source. - INCOMPLETE - This status means that an activity data source has not been setup and usage insights are not available for the source.
|
|
22779
|
+
* @type {string}
|
|
22780
|
+
* @memberof SourceUsageStatusBeta
|
|
22781
|
+
*/
|
|
22782
|
+
'status'?: SourceUsageStatusBetaStatusEnum;
|
|
22783
|
+
}
|
|
22784
|
+
|
|
22785
|
+
export const SourceUsageStatusBetaStatusEnum = {
|
|
22786
|
+
Complete: 'COMPLETE',
|
|
22787
|
+
Incomplete: 'INCOMPLETE'
|
|
22788
|
+
} as const;
|
|
22789
|
+
|
|
22790
|
+
export type SourceUsageStatusBetaStatusEnum = typeof SourceUsageStatusBetaStatusEnum[keyof typeof SourceUsageStatusBetaStatusEnum];
|
|
22791
|
+
|
|
21834
22792
|
/**
|
|
21835
22793
|
* Response model for config export download response.
|
|
21836
22794
|
* @export
|
|
@@ -22088,6 +23046,43 @@ export interface SpConfigUrlBeta {
|
|
|
22088
23046
|
*/
|
|
22089
23047
|
'query'?: object | null;
|
|
22090
23048
|
}
|
|
23049
|
+
/**
|
|
23050
|
+
*
|
|
23051
|
+
* @export
|
|
23052
|
+
* @interface SplitBeta
|
|
23053
|
+
*/
|
|
23054
|
+
export interface SplitBeta {
|
|
23055
|
+
/**
|
|
23056
|
+
* This can be either a single character or a regex expression, and is used by the transform to identify the break point between two substrings in the incoming data
|
|
23057
|
+
* @type {string}
|
|
23058
|
+
* @memberof SplitBeta
|
|
23059
|
+
*/
|
|
23060
|
+
'delimiter': string;
|
|
23061
|
+
/**
|
|
23062
|
+
* An integer value for the desired array element after the incoming data has been split into a list; the array is a 0-based object, so the first array element would be index 0, the second element would be index 1, etc.
|
|
23063
|
+
* @type {string}
|
|
23064
|
+
* @memberof SplitBeta
|
|
23065
|
+
*/
|
|
23066
|
+
'index': string;
|
|
23067
|
+
/**
|
|
23068
|
+
* A boolean (true/false) value which indicates whether an exception should be thrown and returned as an output when an index is out of bounds with the resultant array (i.e., the provided index value is larger than the size of the array) `true` - The transform should return \"IndexOutOfBoundsException\" `false` - The transform should return null If not provided, the transform will default to false and return a null
|
|
23069
|
+
* @type {boolean}
|
|
23070
|
+
* @memberof SplitBeta
|
|
23071
|
+
*/
|
|
23072
|
+
'throws'?: boolean;
|
|
23073
|
+
/**
|
|
23074
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
23075
|
+
* @type {boolean}
|
|
23076
|
+
* @memberof SplitBeta
|
|
23077
|
+
*/
|
|
23078
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
23079
|
+
/**
|
|
23080
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
23081
|
+
* @type {{ [key: string]: any; }}
|
|
23082
|
+
* @memberof SplitBeta
|
|
23083
|
+
*/
|
|
23084
|
+
'input'?: { [key: string]: any; };
|
|
23085
|
+
}
|
|
22091
23086
|
/**
|
|
22092
23087
|
* Standard Log4j log level
|
|
22093
23088
|
* @export
|
|
@@ -22132,6 +23127,25 @@ export interface StartInvocationInputBeta {
|
|
|
22132
23127
|
*/
|
|
22133
23128
|
'contentJson'?: object;
|
|
22134
23129
|
}
|
|
23130
|
+
/**
|
|
23131
|
+
*
|
|
23132
|
+
* @export
|
|
23133
|
+
* @interface StaticBeta
|
|
23134
|
+
*/
|
|
23135
|
+
export interface StaticBeta {
|
|
23136
|
+
/**
|
|
23137
|
+
* This must evaluate to a JSON string, either through a fixed value or through conditional logic using the Apache Velocity Template Language.
|
|
23138
|
+
* @type {string}
|
|
23139
|
+
* @memberof StaticBeta
|
|
23140
|
+
*/
|
|
23141
|
+
'values': string;
|
|
23142
|
+
/**
|
|
23143
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
23144
|
+
* @type {boolean}
|
|
23145
|
+
* @memberof StaticBeta
|
|
23146
|
+
*/
|
|
23147
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
23148
|
+
}
|
|
22135
23149
|
/**
|
|
22136
23150
|
* Response model for connection check, configuration test and ping of source connectors.
|
|
22137
23151
|
* @export
|
|
@@ -22419,6 +23433,49 @@ export const SubscriptionTypeBeta = {
|
|
|
22419
23433
|
export type SubscriptionTypeBeta = typeof SubscriptionTypeBeta[keyof typeof SubscriptionTypeBeta];
|
|
22420
23434
|
|
|
22421
23435
|
|
|
23436
|
+
/**
|
|
23437
|
+
*
|
|
23438
|
+
* @export
|
|
23439
|
+
* @interface SubstringBeta
|
|
23440
|
+
*/
|
|
23441
|
+
export interface SubstringBeta {
|
|
23442
|
+
/**
|
|
23443
|
+
* The index of the first character to include in the returned substring. If `begin` is set to -1, the transform will begin at character 0 of the input data
|
|
23444
|
+
* @type {number}
|
|
23445
|
+
* @memberof SubstringBeta
|
|
23446
|
+
*/
|
|
23447
|
+
'begin': number;
|
|
23448
|
+
/**
|
|
23449
|
+
* This integer value is the number of characters to add to the begin attribute when returning a substring. This attribute is only used if begin is not -1.
|
|
23450
|
+
* @type {number}
|
|
23451
|
+
* @memberof SubstringBeta
|
|
23452
|
+
*/
|
|
23453
|
+
'beginOffset'?: number;
|
|
23454
|
+
/**
|
|
23455
|
+
* The index of the first character to exclude from the returned substring. If end is -1 or not provided at all, the substring transform will return everything up to the end of the input string.
|
|
23456
|
+
* @type {number}
|
|
23457
|
+
* @memberof SubstringBeta
|
|
23458
|
+
*/
|
|
23459
|
+
'end'?: number;
|
|
23460
|
+
/**
|
|
23461
|
+
* This integer value is the number of characters to add to the end attribute when returning a substring. This attribute is only used if end is provided and is not -1.
|
|
23462
|
+
* @type {number}
|
|
23463
|
+
* @memberof SubstringBeta
|
|
23464
|
+
*/
|
|
23465
|
+
'endOffset'?: number;
|
|
23466
|
+
/**
|
|
23467
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
23468
|
+
* @type {boolean}
|
|
23469
|
+
* @memberof SubstringBeta
|
|
23470
|
+
*/
|
|
23471
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
23472
|
+
/**
|
|
23473
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
23474
|
+
* @type {{ [key: string]: any; }}
|
|
23475
|
+
* @memberof SubstringBeta
|
|
23476
|
+
*/
|
|
23477
|
+
'input'?: { [key: string]: any; };
|
|
23478
|
+
}
|
|
22422
23479
|
/**
|
|
22423
23480
|
*
|
|
22424
23481
|
* @export
|
|
@@ -23031,17 +24088,75 @@ export interface TestWorkflowRequestBeta {
|
|
|
23031
24088
|
'input': object;
|
|
23032
24089
|
}
|
|
23033
24090
|
/**
|
|
23034
|
-
*
|
|
24091
|
+
* The representation of an internally- or customer-defined transform.
|
|
24092
|
+
* @export
|
|
24093
|
+
* @interface TransformAllOfBeta
|
|
24094
|
+
*/
|
|
24095
|
+
export interface TransformAllOfBeta {
|
|
24096
|
+
/**
|
|
24097
|
+
* Unique name of this transform
|
|
24098
|
+
* @type {string}
|
|
24099
|
+
* @memberof TransformAllOfBeta
|
|
24100
|
+
*/
|
|
24101
|
+
'name': string;
|
|
24102
|
+
/**
|
|
24103
|
+
* The type of transform operation
|
|
24104
|
+
* @type {string}
|
|
24105
|
+
* @memberof TransformAllOfBeta
|
|
24106
|
+
*/
|
|
24107
|
+
'type': TransformAllOfBetaTypeEnum;
|
|
24108
|
+
}
|
|
24109
|
+
|
|
24110
|
+
export const TransformAllOfBetaTypeEnum = {
|
|
24111
|
+
AccountAttribute: 'accountAttribute',
|
|
24112
|
+
Base64Decode: 'base64Decode',
|
|
24113
|
+
Base64Encode: 'base64Encode',
|
|
24114
|
+
Concat: 'concat',
|
|
24115
|
+
Conditional: 'conditional',
|
|
24116
|
+
DateCompare: 'dateCompare',
|
|
24117
|
+
DateFormat: 'dateFormat',
|
|
24118
|
+
DateMath: 'dateMath',
|
|
24119
|
+
DecomposeDiacriticalMarks: 'decomposeDiacriticalMarks',
|
|
24120
|
+
E164phone: 'e164phone',
|
|
24121
|
+
FirstValid: 'firstValid',
|
|
24122
|
+
Rule: 'rule',
|
|
24123
|
+
IdentityAttribute: 'identityAttribute',
|
|
24124
|
+
IndexOf: 'indexOf',
|
|
24125
|
+
Iso3166: 'iso3166',
|
|
24126
|
+
LastIndexOf: 'lastIndexOf',
|
|
24127
|
+
LeftPad: 'leftPad',
|
|
24128
|
+
Lookup: 'lookup',
|
|
24129
|
+
Lower: 'lower',
|
|
24130
|
+
NormalizeNames: 'normalizeNames',
|
|
24131
|
+
RandomAlphaNumeric: 'randomAlphaNumeric',
|
|
24132
|
+
RandomNumeric: 'randomNumeric',
|
|
24133
|
+
Reference: 'reference',
|
|
24134
|
+
ReplaceAll: 'replaceAll',
|
|
24135
|
+
Replace: 'replace',
|
|
24136
|
+
RightPad: 'rightPad',
|
|
24137
|
+
Split: 'split',
|
|
24138
|
+
Static: 'static',
|
|
24139
|
+
Substring: 'substring',
|
|
24140
|
+
Trim: 'trim',
|
|
24141
|
+
Upper: 'upper',
|
|
24142
|
+
UsernameGenerator: 'usernameGenerator',
|
|
24143
|
+
Uuid: 'uuid'
|
|
24144
|
+
} as const;
|
|
24145
|
+
|
|
24146
|
+
export type TransformAllOfBetaTypeEnum = typeof TransformAllOfBetaTypeEnum[keyof typeof TransformAllOfBetaTypeEnum];
|
|
24147
|
+
|
|
24148
|
+
/**
|
|
24149
|
+
*
|
|
23035
24150
|
* @export
|
|
23036
24151
|
* @interface TransformBeta
|
|
23037
24152
|
*/
|
|
23038
24153
|
export interface TransformBeta {
|
|
23039
24154
|
/**
|
|
23040
|
-
*
|
|
23041
|
-
* @type {
|
|
24155
|
+
*
|
|
24156
|
+
* @type {TransformUpdateAttributesBeta}
|
|
23042
24157
|
* @memberof TransformBeta
|
|
23043
24158
|
*/
|
|
23044
|
-
'
|
|
24159
|
+
'attributes': TransformUpdateAttributesBeta;
|
|
23045
24160
|
/**
|
|
23046
24161
|
* Unique name of this transform
|
|
23047
24162
|
* @type {string}
|
|
@@ -23049,24 +24164,51 @@ export interface TransformBeta {
|
|
|
23049
24164
|
*/
|
|
23050
24165
|
'name': string;
|
|
23051
24166
|
/**
|
|
23052
|
-
* The
|
|
24167
|
+
* The type of transform operation
|
|
23053
24168
|
* @type {string}
|
|
23054
24169
|
* @memberof TransformBeta
|
|
23055
24170
|
*/
|
|
23056
|
-
'type':
|
|
23057
|
-
|
|
23058
|
-
|
|
23059
|
-
|
|
23060
|
-
|
|
23061
|
-
|
|
23062
|
-
'
|
|
23063
|
-
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
|
|
23068
|
-
'
|
|
23069
|
-
|
|
24171
|
+
'type': TransformBetaTypeEnum;
|
|
24172
|
+
}
|
|
24173
|
+
|
|
24174
|
+
export const TransformBetaTypeEnum = {
|
|
24175
|
+
AccountAttribute: 'accountAttribute',
|
|
24176
|
+
Base64Decode: 'base64Decode',
|
|
24177
|
+
Base64Encode: 'base64Encode',
|
|
24178
|
+
Concat: 'concat',
|
|
24179
|
+
Conditional: 'conditional',
|
|
24180
|
+
DateCompare: 'dateCompare',
|
|
24181
|
+
DateFormat: 'dateFormat',
|
|
24182
|
+
DateMath: 'dateMath',
|
|
24183
|
+
DecomposeDiacriticalMarks: 'decomposeDiacriticalMarks',
|
|
24184
|
+
E164phone: 'e164phone',
|
|
24185
|
+
FirstValid: 'firstValid',
|
|
24186
|
+
Rule: 'rule',
|
|
24187
|
+
IdentityAttribute: 'identityAttribute',
|
|
24188
|
+
IndexOf: 'indexOf',
|
|
24189
|
+
Iso3166: 'iso3166',
|
|
24190
|
+
LastIndexOf: 'lastIndexOf',
|
|
24191
|
+
LeftPad: 'leftPad',
|
|
24192
|
+
Lookup: 'lookup',
|
|
24193
|
+
Lower: 'lower',
|
|
24194
|
+
NormalizeNames: 'normalizeNames',
|
|
24195
|
+
RandomAlphaNumeric: 'randomAlphaNumeric',
|
|
24196
|
+
RandomNumeric: 'randomNumeric',
|
|
24197
|
+
Reference: 'reference',
|
|
24198
|
+
ReplaceAll: 'replaceAll',
|
|
24199
|
+
Replace: 'replace',
|
|
24200
|
+
RightPad: 'rightPad',
|
|
24201
|
+
Split: 'split',
|
|
24202
|
+
Static: 'static',
|
|
24203
|
+
Substring: 'substring',
|
|
24204
|
+
Trim: 'trim',
|
|
24205
|
+
Upper: 'upper',
|
|
24206
|
+
UsernameGenerator: 'usernameGenerator',
|
|
24207
|
+
Uuid: 'uuid'
|
|
24208
|
+
} as const;
|
|
24209
|
+
|
|
24210
|
+
export type TransformBetaTypeEnum = typeof TransformBetaTypeEnum[keyof typeof TransformBetaTypeEnum];
|
|
24211
|
+
|
|
23070
24212
|
/**
|
|
23071
24213
|
*
|
|
23072
24214
|
* @export
|
|
@@ -23112,6 +24254,121 @@ export interface TransformDefinitionBeta {
|
|
|
23112
24254
|
*/
|
|
23113
24255
|
'attributes'?: { [key: string]: any; } | null;
|
|
23114
24256
|
}
|
|
24257
|
+
/**
|
|
24258
|
+
*
|
|
24259
|
+
* @export
|
|
24260
|
+
* @interface TransformReadAllOfBeta
|
|
24261
|
+
*/
|
|
24262
|
+
export interface TransformReadAllOfBeta {
|
|
24263
|
+
/**
|
|
24264
|
+
* Unique ID of this transform
|
|
24265
|
+
* @type {string}
|
|
24266
|
+
* @memberof TransformReadAllOfBeta
|
|
24267
|
+
*/
|
|
24268
|
+
'id': string;
|
|
24269
|
+
/**
|
|
24270
|
+
* Indicates whether this is an internal SailPoint-created transform or a customer-created transform
|
|
24271
|
+
* @type {boolean}
|
|
24272
|
+
* @memberof TransformReadAllOfBeta
|
|
24273
|
+
*/
|
|
24274
|
+
'internal'?: boolean;
|
|
24275
|
+
}
|
|
24276
|
+
/**
|
|
24277
|
+
*
|
|
24278
|
+
* @export
|
|
24279
|
+
* @interface TransformReadBeta
|
|
24280
|
+
*/
|
|
24281
|
+
export interface TransformReadBeta {
|
|
24282
|
+
/**
|
|
24283
|
+
*
|
|
24284
|
+
* @type {TransformUpdateAttributesBeta}
|
|
24285
|
+
* @memberof TransformReadBeta
|
|
24286
|
+
*/
|
|
24287
|
+
'attributes': TransformUpdateAttributesBeta;
|
|
24288
|
+
/**
|
|
24289
|
+
* Unique name of this transform
|
|
24290
|
+
* @type {string}
|
|
24291
|
+
* @memberof TransformReadBeta
|
|
24292
|
+
*/
|
|
24293
|
+
'name': string;
|
|
24294
|
+
/**
|
|
24295
|
+
* The type of transform operation
|
|
24296
|
+
* @type {string}
|
|
24297
|
+
* @memberof TransformReadBeta
|
|
24298
|
+
*/
|
|
24299
|
+
'type': TransformReadBetaTypeEnum;
|
|
24300
|
+
/**
|
|
24301
|
+
* Unique ID of this transform
|
|
24302
|
+
* @type {string}
|
|
24303
|
+
* @memberof TransformReadBeta
|
|
24304
|
+
*/
|
|
24305
|
+
'id': string;
|
|
24306
|
+
/**
|
|
24307
|
+
* Indicates whether this is an internal SailPoint-created transform or a customer-created transform
|
|
24308
|
+
* @type {boolean}
|
|
24309
|
+
* @memberof TransformReadBeta
|
|
24310
|
+
*/
|
|
24311
|
+
'internal'?: boolean;
|
|
24312
|
+
}
|
|
24313
|
+
|
|
24314
|
+
export const TransformReadBetaTypeEnum = {
|
|
24315
|
+
AccountAttribute: 'accountAttribute',
|
|
24316
|
+
Base64Decode: 'base64Decode',
|
|
24317
|
+
Base64Encode: 'base64Encode',
|
|
24318
|
+
Concat: 'concat',
|
|
24319
|
+
Conditional: 'conditional',
|
|
24320
|
+
DateCompare: 'dateCompare',
|
|
24321
|
+
DateFormat: 'dateFormat',
|
|
24322
|
+
DateMath: 'dateMath',
|
|
24323
|
+
DecomposeDiacriticalMarks: 'decomposeDiacriticalMarks',
|
|
24324
|
+
E164phone: 'e164phone',
|
|
24325
|
+
FirstValid: 'firstValid',
|
|
24326
|
+
Rule: 'rule',
|
|
24327
|
+
IdentityAttribute: 'identityAttribute',
|
|
24328
|
+
IndexOf: 'indexOf',
|
|
24329
|
+
Iso3166: 'iso3166',
|
|
24330
|
+
LastIndexOf: 'lastIndexOf',
|
|
24331
|
+
LeftPad: 'leftPad',
|
|
24332
|
+
Lookup: 'lookup',
|
|
24333
|
+
Lower: 'lower',
|
|
24334
|
+
NormalizeNames: 'normalizeNames',
|
|
24335
|
+
RandomAlphaNumeric: 'randomAlphaNumeric',
|
|
24336
|
+
RandomNumeric: 'randomNumeric',
|
|
24337
|
+
Reference: 'reference',
|
|
24338
|
+
ReplaceAll: 'replaceAll',
|
|
24339
|
+
Replace: 'replace',
|
|
24340
|
+
RightPad: 'rightPad',
|
|
24341
|
+
Split: 'split',
|
|
24342
|
+
Static: 'static',
|
|
24343
|
+
Substring: 'substring',
|
|
24344
|
+
Trim: 'trim',
|
|
24345
|
+
Upper: 'upper',
|
|
24346
|
+
UsernameGenerator: 'usernameGenerator',
|
|
24347
|
+
Uuid: 'uuid'
|
|
24348
|
+
} as const;
|
|
24349
|
+
|
|
24350
|
+
export type TransformReadBetaTypeEnum = typeof TransformReadBetaTypeEnum[keyof typeof TransformReadBetaTypeEnum];
|
|
24351
|
+
|
|
24352
|
+
/**
|
|
24353
|
+
* @type TransformUpdateAttributesBeta
|
|
24354
|
+
* Meta-data about the transform. Values in this list are specific to the type of transform to be executed.
|
|
24355
|
+
* @export
|
|
24356
|
+
*/
|
|
24357
|
+
export type TransformUpdateAttributesBeta = AccountAttributeBeta | Base64DecodeBeta | Base64EncodeBeta | ConcatenationBeta | ConditionalBeta | DateCompareBeta | DateFormatBeta | DateMathBeta | DecomposeDiacriticalMarksBeta | E164phoneBeta | FirstValidBeta | ISO3166Beta | IdentityAttribute1Beta | IndexOfBeta | LeftPadBeta | LookupBeta | LowerBeta | NameNormalizerBeta | RandomAlphaNumericBeta | RandomNumericBeta | ReferenceBeta | ReplaceAllBeta | ReplaceBeta | RightPadBeta | RuleBeta | SplitBeta | StaticBeta | SubstringBeta | TrimBeta | UUIDGeneratorBeta | UpperBeta;
|
|
24358
|
+
|
|
24359
|
+
/**
|
|
24360
|
+
* The representation of an internally- or customer-defined transform.
|
|
24361
|
+
* @export
|
|
24362
|
+
* @interface TransformUpdateBeta
|
|
24363
|
+
*/
|
|
24364
|
+
export interface TransformUpdateBeta {
|
|
24365
|
+
/**
|
|
24366
|
+
*
|
|
24367
|
+
* @type {TransformUpdateAttributesBeta}
|
|
24368
|
+
* @memberof TransformUpdateBeta
|
|
24369
|
+
*/
|
|
24370
|
+
'attributes': TransformUpdateAttributesBeta;
|
|
24371
|
+
}
|
|
23115
24372
|
/**
|
|
23116
24373
|
*
|
|
23117
24374
|
* @export
|
|
@@ -23214,6 +24471,38 @@ export const TriggerTypeBeta = {
|
|
|
23214
24471
|
export type TriggerTypeBeta = typeof TriggerTypeBeta[keyof typeof TriggerTypeBeta];
|
|
23215
24472
|
|
|
23216
24473
|
|
|
24474
|
+
/**
|
|
24475
|
+
*
|
|
24476
|
+
* @export
|
|
24477
|
+
* @interface TrimBeta
|
|
24478
|
+
*/
|
|
24479
|
+
export interface TrimBeta {
|
|
24480
|
+
/**
|
|
24481
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
24482
|
+
* @type {boolean}
|
|
24483
|
+
* @memberof TrimBeta
|
|
24484
|
+
*/
|
|
24485
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
24486
|
+
/**
|
|
24487
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
24488
|
+
* @type {{ [key: string]: any; }}
|
|
24489
|
+
* @memberof TrimBeta
|
|
24490
|
+
*/
|
|
24491
|
+
'input'?: { [key: string]: any; };
|
|
24492
|
+
}
|
|
24493
|
+
/**
|
|
24494
|
+
*
|
|
24495
|
+
* @export
|
|
24496
|
+
* @interface UUIDGeneratorBeta
|
|
24497
|
+
*/
|
|
24498
|
+
export interface UUIDGeneratorBeta {
|
|
24499
|
+
/**
|
|
24500
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
24501
|
+
* @type {boolean}
|
|
24502
|
+
* @memberof UUIDGeneratorBeta
|
|
24503
|
+
*/
|
|
24504
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
24505
|
+
}
|
|
23217
24506
|
/**
|
|
23218
24507
|
*
|
|
23219
24508
|
* @export
|
|
@@ -23227,6 +24516,25 @@ export interface UpdatePasswordDictionaryRequestBeta {
|
|
|
23227
24516
|
*/
|
|
23228
24517
|
'file'?: any;
|
|
23229
24518
|
}
|
|
24519
|
+
/**
|
|
24520
|
+
*
|
|
24521
|
+
* @export
|
|
24522
|
+
* @interface UpperBeta
|
|
24523
|
+
*/
|
|
24524
|
+
export interface UpperBeta {
|
|
24525
|
+
/**
|
|
24526
|
+
* A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process
|
|
24527
|
+
* @type {boolean}
|
|
24528
|
+
* @memberof UpperBeta
|
|
24529
|
+
*/
|
|
24530
|
+
'requiresPeriodicRefresh'?: boolean;
|
|
24531
|
+
/**
|
|
24532
|
+
* This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI.
|
|
24533
|
+
* @type {{ [key: string]: any; }}
|
|
24534
|
+
* @memberof UpperBeta
|
|
24535
|
+
*/
|
|
24536
|
+
'input'?: { [key: string]: any; };
|
|
24537
|
+
}
|
|
23230
24538
|
/**
|
|
23231
24539
|
* The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
23232
24540
|
* @export
|
|
@@ -26184,7 +27492,7 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
26184
27492
|
};
|
|
26185
27493
|
},
|
|
26186
27494
|
/**
|
|
26187
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles,
|
|
27495
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles and access profiles. Entitlements are currently unsupported for `removeDate`. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. >**Note:** There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
26188
27496
|
* @summary Submit an Access Request
|
|
26189
27497
|
* @param {AccessRequestBeta} accessRequestBeta
|
|
26190
27498
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -26420,7 +27728,7 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
|
|
|
26420
27728
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26421
27729
|
},
|
|
26422
27730
|
/**
|
|
26423
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles,
|
|
27731
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles and access profiles. Entitlements are currently unsupported for `removeDate`. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. >**Note:** There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
26424
27732
|
* @summary Submit an Access Request
|
|
26425
27733
|
* @param {AccessRequestBeta} accessRequestBeta
|
|
26426
27734
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -26500,7 +27808,7 @@ export const AccessRequestsBetaApiFactory = function (configuration?: Configurat
|
|
|
26500
27808
|
return localVarFp.closeAccessRequest(closeAccessRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
26501
27809
|
},
|
|
26502
27810
|
/**
|
|
26503
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles,
|
|
27811
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles and access profiles. Entitlements are currently unsupported for `removeDate`. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. >**Note:** There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
26504
27812
|
* @summary Submit an Access Request
|
|
26505
27813
|
* @param {AccessRequestBeta} accessRequestBeta
|
|
26506
27814
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -26699,7 +28007,7 @@ export class AccessRequestsBetaApi extends BaseAPI {
|
|
|
26699
28007
|
}
|
|
26700
28008
|
|
|
26701
28009
|
/**
|
|
26702
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles,
|
|
28010
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles and access profiles. Entitlements are currently unsupported for `removeDate`. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. >**Note:** There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
26703
28011
|
* @summary Submit an Access Request
|
|
26704
28012
|
* @param {AccessRequestsBetaApiCreateAccessRequestRequest} requestParameters Request parameters.
|
|
26705
28013
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -27203,6 +28511,189 @@ export class AccountAggregationsBetaApi extends BaseAPI {
|
|
|
27203
28511
|
}
|
|
27204
28512
|
|
|
27205
28513
|
|
|
28514
|
+
/**
|
|
28515
|
+
* AccountUsagesBetaApi - axios parameter creator
|
|
28516
|
+
* @export
|
|
28517
|
+
*/
|
|
28518
|
+
export const AccountUsagesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
28519
|
+
return {
|
|
28520
|
+
/**
|
|
28521
|
+
* This API returns a summary of account usage insights for past 12 months.
|
|
28522
|
+
* @summary Returns account usage insights
|
|
28523
|
+
* @param {string} accountId ID of IDN account
|
|
28524
|
+
* @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.
|
|
28525
|
+
* @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.
|
|
28526
|
+
* @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.
|
|
28527
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
28528
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
28529
|
+
* @throws {RequiredError}
|
|
28530
|
+
*/
|
|
28531
|
+
getUsagesByAccountId: async (accountId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
28532
|
+
// verify required parameter 'accountId' is not null or undefined
|
|
28533
|
+
assertParamExists('getUsagesByAccountId', 'accountId', accountId)
|
|
28534
|
+
const localVarPath = `/account-usages/{accountId}/summaries`
|
|
28535
|
+
.replace(`{${"accountId"}}`, encodeURIComponent(String(accountId)));
|
|
28536
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28537
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28538
|
+
let baseOptions;
|
|
28539
|
+
if (configuration) {
|
|
28540
|
+
baseOptions = configuration.baseOptions;
|
|
28541
|
+
}
|
|
28542
|
+
|
|
28543
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
28544
|
+
const localVarHeaderParameter = {} as any;
|
|
28545
|
+
const localVarQueryParameter = {} as any;
|
|
28546
|
+
|
|
28547
|
+
// authentication UserContextAuth required
|
|
28548
|
+
// oauth required
|
|
28549
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
28550
|
+
|
|
28551
|
+
// authentication UserContextAuth required
|
|
28552
|
+
// oauth required
|
|
28553
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
28554
|
+
|
|
28555
|
+
if (limit !== undefined) {
|
|
28556
|
+
localVarQueryParameter['limit'] = limit;
|
|
28557
|
+
}
|
|
28558
|
+
|
|
28559
|
+
if (offset !== undefined) {
|
|
28560
|
+
localVarQueryParameter['offset'] = offset;
|
|
28561
|
+
}
|
|
28562
|
+
|
|
28563
|
+
if (count !== undefined) {
|
|
28564
|
+
localVarQueryParameter['count'] = count;
|
|
28565
|
+
}
|
|
28566
|
+
|
|
28567
|
+
if (sorters !== undefined) {
|
|
28568
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
28569
|
+
}
|
|
28570
|
+
|
|
28571
|
+
|
|
28572
|
+
|
|
28573
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28574
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28575
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
28576
|
+
|
|
28577
|
+
return {
|
|
28578
|
+
url: toPathString(localVarUrlObj),
|
|
28579
|
+
axiosOptions: localVarRequestOptions,
|
|
28580
|
+
};
|
|
28581
|
+
},
|
|
28582
|
+
}
|
|
28583
|
+
};
|
|
28584
|
+
|
|
28585
|
+
/**
|
|
28586
|
+
* AccountUsagesBetaApi - functional programming interface
|
|
28587
|
+
* @export
|
|
28588
|
+
*/
|
|
28589
|
+
export const AccountUsagesBetaApiFp = function(configuration?: Configuration) {
|
|
28590
|
+
const localVarAxiosParamCreator = AccountUsagesBetaApiAxiosParamCreator(configuration)
|
|
28591
|
+
return {
|
|
28592
|
+
/**
|
|
28593
|
+
* This API returns a summary of account usage insights for past 12 months.
|
|
28594
|
+
* @summary Returns account usage insights
|
|
28595
|
+
* @param {string} accountId ID of IDN account
|
|
28596
|
+
* @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.
|
|
28597
|
+
* @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.
|
|
28598
|
+
* @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.
|
|
28599
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
28600
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
28601
|
+
* @throws {RequiredError}
|
|
28602
|
+
*/
|
|
28603
|
+
async getUsagesByAccountId(accountId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountUsageBeta>>> {
|
|
28604
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getUsagesByAccountId(accountId, limit, offset, count, sorters, axiosOptions);
|
|
28605
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
28606
|
+
},
|
|
28607
|
+
}
|
|
28608
|
+
};
|
|
28609
|
+
|
|
28610
|
+
/**
|
|
28611
|
+
* AccountUsagesBetaApi - factory interface
|
|
28612
|
+
* @export
|
|
28613
|
+
*/
|
|
28614
|
+
export const AccountUsagesBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
28615
|
+
const localVarFp = AccountUsagesBetaApiFp(configuration)
|
|
28616
|
+
return {
|
|
28617
|
+
/**
|
|
28618
|
+
* This API returns a summary of account usage insights for past 12 months.
|
|
28619
|
+
* @summary Returns account usage insights
|
|
28620
|
+
* @param {string} accountId ID of IDN account
|
|
28621
|
+
* @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.
|
|
28622
|
+
* @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.
|
|
28623
|
+
* @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.
|
|
28624
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
28625
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
28626
|
+
* @throws {RequiredError}
|
|
28627
|
+
*/
|
|
28628
|
+
getUsagesByAccountId(accountId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions?: any): AxiosPromise<Array<AccountUsageBeta>> {
|
|
28629
|
+
return localVarFp.getUsagesByAccountId(accountId, limit, offset, count, sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
28630
|
+
},
|
|
28631
|
+
};
|
|
28632
|
+
};
|
|
28633
|
+
|
|
28634
|
+
/**
|
|
28635
|
+
* Request parameters for getUsagesByAccountId operation in AccountUsagesBetaApi.
|
|
28636
|
+
* @export
|
|
28637
|
+
* @interface AccountUsagesBetaApiGetUsagesByAccountIdRequest
|
|
28638
|
+
*/
|
|
28639
|
+
export interface AccountUsagesBetaApiGetUsagesByAccountIdRequest {
|
|
28640
|
+
/**
|
|
28641
|
+
* ID of IDN account
|
|
28642
|
+
* @type {string}
|
|
28643
|
+
* @memberof AccountUsagesBetaApiGetUsagesByAccountId
|
|
28644
|
+
*/
|
|
28645
|
+
readonly accountId: string
|
|
28646
|
+
|
|
28647
|
+
/**
|
|
28648
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
28649
|
+
* @type {number}
|
|
28650
|
+
* @memberof AccountUsagesBetaApiGetUsagesByAccountId
|
|
28651
|
+
*/
|
|
28652
|
+
readonly limit?: number
|
|
28653
|
+
|
|
28654
|
+
/**
|
|
28655
|
+
* 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.
|
|
28656
|
+
* @type {number}
|
|
28657
|
+
* @memberof AccountUsagesBetaApiGetUsagesByAccountId
|
|
28658
|
+
*/
|
|
28659
|
+
readonly offset?: number
|
|
28660
|
+
|
|
28661
|
+
/**
|
|
28662
|
+
* 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.
|
|
28663
|
+
* @type {boolean}
|
|
28664
|
+
* @memberof AccountUsagesBetaApiGetUsagesByAccountId
|
|
28665
|
+
*/
|
|
28666
|
+
readonly count?: boolean
|
|
28667
|
+
|
|
28668
|
+
/**
|
|
28669
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
28670
|
+
* @type {string}
|
|
28671
|
+
* @memberof AccountUsagesBetaApiGetUsagesByAccountId
|
|
28672
|
+
*/
|
|
28673
|
+
readonly sorters?: string
|
|
28674
|
+
}
|
|
28675
|
+
|
|
28676
|
+
/**
|
|
28677
|
+
* AccountUsagesBetaApi - object-oriented interface
|
|
28678
|
+
* @export
|
|
28679
|
+
* @class AccountUsagesBetaApi
|
|
28680
|
+
* @extends {BaseAPI}
|
|
28681
|
+
*/
|
|
28682
|
+
export class AccountUsagesBetaApi extends BaseAPI {
|
|
28683
|
+
/**
|
|
28684
|
+
* This API returns a summary of account usage insights for past 12 months.
|
|
28685
|
+
* @summary Returns account usage insights
|
|
28686
|
+
* @param {AccountUsagesBetaApiGetUsagesByAccountIdRequest} requestParameters Request parameters.
|
|
28687
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
28688
|
+
* @throws {RequiredError}
|
|
28689
|
+
* @memberof AccountUsagesBetaApi
|
|
28690
|
+
*/
|
|
28691
|
+
public getUsagesByAccountId(requestParameters: AccountUsagesBetaApiGetUsagesByAccountIdRequest, axiosOptions?: AxiosRequestConfig) {
|
|
28692
|
+
return AccountUsagesBetaApiFp(this.configuration).getUsagesByAccountId(requestParameters.accountId, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
28693
|
+
}
|
|
28694
|
+
}
|
|
28695
|
+
|
|
28696
|
+
|
|
27206
28697
|
/**
|
|
27207
28698
|
* AccountsBetaApi - axios parameter creator
|
|
27208
28699
|
* @export
|
|
@@ -28869,10 +30360,11 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
28869
30360
|
};
|
|
28870
30361
|
},
|
|
28871
30362
|
/**
|
|
28872
|
-
*
|
|
30363
|
+
* Create a campaign Template based on campaign.
|
|
28873
30364
|
* @summary Create a Campaign Template
|
|
28874
30365
|
* @param {CampaignTemplateBeta} campaignTemplateBeta
|
|
28875
30366
|
* @param {*} [axiosOptions] Override http request option.
|
|
30367
|
+
* @deprecated
|
|
28876
30368
|
* @throws {RequiredError}
|
|
28877
30369
|
*/
|
|
28878
30370
|
createCampaignTemplate: async (campaignTemplateBeta: CampaignTemplateBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -29041,48 +30533,6 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29041
30533
|
axiosOptions: localVarRequestOptions,
|
|
29042
30534
|
};
|
|
29043
30535
|
},
|
|
29044
|
-
/**
|
|
29045
|
-
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
29046
|
-
* @summary Generate a Campaign from Template
|
|
29047
|
-
* @param {string} id The ID of the campaign template to use for generation.
|
|
29048
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
29049
|
-
* @throws {RequiredError}
|
|
29050
|
-
*/
|
|
29051
|
-
generateCampaignTemplate: async (id: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29052
|
-
// verify required parameter 'id' is not null or undefined
|
|
29053
|
-
assertParamExists('generateCampaignTemplate', 'id', id)
|
|
29054
|
-
const localVarPath = `/campaign-templates/{id}/generate`
|
|
29055
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29056
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29057
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29058
|
-
let baseOptions;
|
|
29059
|
-
if (configuration) {
|
|
29060
|
-
baseOptions = configuration.baseOptions;
|
|
29061
|
-
}
|
|
29062
|
-
|
|
29063
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
29064
|
-
const localVarHeaderParameter = {} as any;
|
|
29065
|
-
const localVarQueryParameter = {} as any;
|
|
29066
|
-
|
|
29067
|
-
// authentication UserContextAuth required
|
|
29068
|
-
// oauth required
|
|
29069
|
-
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
29070
|
-
|
|
29071
|
-
// authentication UserContextAuth required
|
|
29072
|
-
// oauth required
|
|
29073
|
-
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
29074
|
-
|
|
29075
|
-
|
|
29076
|
-
|
|
29077
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29078
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29079
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
29080
|
-
|
|
29081
|
-
return {
|
|
29082
|
-
url: toPathString(localVarUrlObj),
|
|
29083
|
-
axiosOptions: localVarRequestOptions,
|
|
29084
|
-
};
|
|
29085
|
-
},
|
|
29086
30536
|
/**
|
|
29087
30537
|
* Gets campaigns and returns them in a list. Can provide increased level of detail for each campaign if provided the correct query.
|
|
29088
30538
|
* @summary List Campaigns
|
|
@@ -29362,7 +30812,7 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29362
30812
|
};
|
|
29363
30813
|
},
|
|
29364
30814
|
/**
|
|
29365
|
-
*
|
|
30815
|
+
* Lists all CampaignTemplates. Scope can be reduced via standard V3 query params. All CampaignTemplates matching the query params
|
|
29366
30816
|
* @summary List Campaign Templates
|
|
29367
30817
|
* @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.
|
|
29368
30818
|
* @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.
|
|
@@ -29370,6 +30820,7 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29370
30820
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
29371
30821
|
* @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: **name, id**
|
|
29372
30822
|
* @param {*} [axiosOptions] Override http request option.
|
|
30823
|
+
* @deprecated
|
|
29373
30824
|
* @throws {RequiredError}
|
|
29374
30825
|
*/
|
|
29375
30826
|
listCampaignTemplates: async (limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -29477,15 +30928,16 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29477
30928
|
* Allows updating individual fields on a campaign template using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
29478
30929
|
* @summary Update a Campaign Template
|
|
29479
30930
|
* @param {string} id The ID of the campaign template being modified.
|
|
29480
|
-
* @param {Array<
|
|
30931
|
+
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of campaign update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * deadlineDuration * campaign (all fields that are allowed during create)
|
|
29481
30932
|
* @param {*} [axiosOptions] Override http request option.
|
|
30933
|
+
* @deprecated
|
|
29482
30934
|
* @throws {RequiredError}
|
|
29483
30935
|
*/
|
|
29484
|
-
patchCampaignTemplate: async (id: string,
|
|
30936
|
+
patchCampaignTemplate: async (id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29485
30937
|
// verify required parameter 'id' is not null or undefined
|
|
29486
30938
|
assertParamExists('patchCampaignTemplate', 'id', id)
|
|
29487
|
-
// verify required parameter '
|
|
29488
|
-
assertParamExists('patchCampaignTemplate', '
|
|
30939
|
+
// verify required parameter 'jsonPatchOperationBeta' is not null or undefined
|
|
30940
|
+
assertParamExists('patchCampaignTemplate', 'jsonPatchOperationBeta', jsonPatchOperationBeta)
|
|
29489
30941
|
const localVarPath = `/campaign-templates/{id}`
|
|
29490
30942
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29491
30943
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -29514,7 +30966,7 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29514
30966
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29515
30967
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29516
30968
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
29517
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
30969
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationBeta, localVarRequestOptions, configuration)
|
|
29518
30970
|
|
|
29519
30971
|
return {
|
|
29520
30972
|
url: toPathString(localVarUrlObj),
|
|
@@ -29572,6 +31024,7 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29572
31024
|
* @param {string} id The ID of the campaign template being scheduled.
|
|
29573
31025
|
* @param {ScheduleBeta} [scheduleBeta]
|
|
29574
31026
|
* @param {*} [axiosOptions] Override http request option.
|
|
31027
|
+
* @deprecated
|
|
29575
31028
|
* @throws {RequiredError}
|
|
29576
31029
|
*/
|
|
29577
31030
|
setCampaignTemplateSchedule: async (id: string, scheduleBeta?: ScheduleBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -29740,6 +31193,49 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
29740
31193
|
|
|
29741
31194
|
|
|
29742
31195
|
|
|
31196
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31197
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31198
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
31199
|
+
|
|
31200
|
+
return {
|
|
31201
|
+
url: toPathString(localVarUrlObj),
|
|
31202
|
+
axiosOptions: localVarRequestOptions,
|
|
31203
|
+
};
|
|
31204
|
+
},
|
|
31205
|
+
/**
|
|
31206
|
+
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
31207
|
+
* @summary Generate a Campaign from Template
|
|
31208
|
+
* @param {string} id The ID of the campaign template to use for generation.
|
|
31209
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31210
|
+
* @deprecated
|
|
31211
|
+
* @throws {RequiredError}
|
|
31212
|
+
*/
|
|
31213
|
+
startGenerateCampaignTemplate: async (id: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31214
|
+
// verify required parameter 'id' is not null or undefined
|
|
31215
|
+
assertParamExists('startGenerateCampaignTemplate', 'id', id)
|
|
31216
|
+
const localVarPath = `/campaign-templates/{id}/generate`
|
|
31217
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
31218
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31219
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31220
|
+
let baseOptions;
|
|
31221
|
+
if (configuration) {
|
|
31222
|
+
baseOptions = configuration.baseOptions;
|
|
31223
|
+
}
|
|
31224
|
+
|
|
31225
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
31226
|
+
const localVarHeaderParameter = {} as any;
|
|
31227
|
+
const localVarQueryParameter = {} as any;
|
|
31228
|
+
|
|
31229
|
+
// authentication UserContextAuth required
|
|
31230
|
+
// oauth required
|
|
31231
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
31232
|
+
|
|
31233
|
+
// authentication UserContextAuth required
|
|
31234
|
+
// oauth required
|
|
31235
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
31236
|
+
|
|
31237
|
+
|
|
31238
|
+
|
|
29743
31239
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29744
31240
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29745
31241
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -29834,10 +31330,11 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
29834
31330
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
29835
31331
|
},
|
|
29836
31332
|
/**
|
|
29837
|
-
*
|
|
31333
|
+
* Create a campaign Template based on campaign.
|
|
29838
31334
|
* @summary Create a Campaign Template
|
|
29839
31335
|
* @param {CampaignTemplateBeta} campaignTemplateBeta
|
|
29840
31336
|
* @param {*} [axiosOptions] Override http request option.
|
|
31337
|
+
* @deprecated
|
|
29841
31338
|
* @throws {RequiredError}
|
|
29842
31339
|
*/
|
|
29843
31340
|
async createCampaignTemplate(campaignTemplateBeta: CampaignTemplateBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CampaignTemplateBeta>> {
|
|
@@ -29878,17 +31375,6 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
29878
31375
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCampaigns(deleteCampaignsRequestBeta, axiosOptions);
|
|
29879
31376
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
29880
31377
|
},
|
|
29881
|
-
/**
|
|
29882
|
-
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
29883
|
-
* @summary Generate a Campaign from Template
|
|
29884
|
-
* @param {string} id The ID of the campaign template to use for generation.
|
|
29885
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
29886
|
-
* @throws {RequiredError}
|
|
29887
|
-
*/
|
|
29888
|
-
async generateCampaignTemplate(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CampaignReferenceBeta>> {
|
|
29889
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.generateCampaignTemplate(id, axiosOptions);
|
|
29890
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
29891
|
-
},
|
|
29892
31378
|
/**
|
|
29893
31379
|
* Gets campaigns and returns them in a list. Can provide increased level of detail for each campaign if provided the correct query.
|
|
29894
31380
|
* @summary List Campaigns
|
|
@@ -29964,7 +31450,7 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
29964
31450
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
29965
31451
|
},
|
|
29966
31452
|
/**
|
|
29967
|
-
*
|
|
31453
|
+
* Lists all CampaignTemplates. Scope can be reduced via standard V3 query params. All CampaignTemplates matching the query params
|
|
29968
31454
|
* @summary List Campaign Templates
|
|
29969
31455
|
* @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.
|
|
29970
31456
|
* @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.
|
|
@@ -29972,6 +31458,7 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
29972
31458
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
29973
31459
|
* @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: **name, id**
|
|
29974
31460
|
* @param {*} [axiosOptions] Override http request option.
|
|
31461
|
+
* @deprecated
|
|
29975
31462
|
* @throws {RequiredError}
|
|
29976
31463
|
*/
|
|
29977
31464
|
async listCampaignTemplates(limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CampaignTemplateBeta>>> {
|
|
@@ -29995,12 +31482,13 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
29995
31482
|
* Allows updating individual fields on a campaign template using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
29996
31483
|
* @summary Update a Campaign Template
|
|
29997
31484
|
* @param {string} id The ID of the campaign template being modified.
|
|
29998
|
-
* @param {Array<
|
|
31485
|
+
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of campaign update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * deadlineDuration * campaign (all fields that are allowed during create)
|
|
29999
31486
|
* @param {*} [axiosOptions] Override http request option.
|
|
31487
|
+
* @deprecated
|
|
30000
31488
|
* @throws {RequiredError}
|
|
30001
31489
|
*/
|
|
30002
|
-
async patchCampaignTemplate(id: string,
|
|
30003
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchCampaignTemplate(id,
|
|
31490
|
+
async patchCampaignTemplate(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CampaignTemplateBeta>> {
|
|
31491
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchCampaignTemplate(id, jsonPatchOperationBeta, axiosOptions);
|
|
30004
31492
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30005
31493
|
},
|
|
30006
31494
|
/**
|
|
@@ -30021,6 +31509,7 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
30021
31509
|
* @param {string} id The ID of the campaign template being scheduled.
|
|
30022
31510
|
* @param {ScheduleBeta} [scheduleBeta]
|
|
30023
31511
|
* @param {*} [axiosOptions] Override http request option.
|
|
31512
|
+
* @deprecated
|
|
30024
31513
|
* @throws {RequiredError}
|
|
30025
31514
|
*/
|
|
30026
31515
|
async setCampaignTemplateSchedule(id: string, scheduleBeta?: ScheduleBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -30065,6 +31554,18 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
30065
31554
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startCampaignReport(id, type, axiosOptions);
|
|
30066
31555
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30067
31556
|
},
|
|
31557
|
+
/**
|
|
31558
|
+
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
31559
|
+
* @summary Generate a Campaign from Template
|
|
31560
|
+
* @param {string} id The ID of the campaign template to use for generation.
|
|
31561
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31562
|
+
* @deprecated
|
|
31563
|
+
* @throws {RequiredError}
|
|
31564
|
+
*/
|
|
31565
|
+
async startGenerateCampaignTemplate(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CampaignReferenceBeta>> {
|
|
31566
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startGenerateCampaignTemplate(id, axiosOptions);
|
|
31567
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
31568
|
+
},
|
|
30068
31569
|
/**
|
|
30069
31570
|
* Allows updating individual fields on a campaign using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
30070
31571
|
* @summary Update a Campaign
|
|
@@ -30112,10 +31613,11 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30112
31613
|
return localVarFp.createCampaign(campaignBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
30113
31614
|
},
|
|
30114
31615
|
/**
|
|
30115
|
-
*
|
|
31616
|
+
* Create a campaign Template based on campaign.
|
|
30116
31617
|
* @summary Create a Campaign Template
|
|
30117
31618
|
* @param {CampaignTemplateBeta} campaignTemplateBeta
|
|
30118
31619
|
* @param {*} [axiosOptions] Override http request option.
|
|
31620
|
+
* @deprecated
|
|
30119
31621
|
* @throws {RequiredError}
|
|
30120
31622
|
*/
|
|
30121
31623
|
createCampaignTemplate(campaignTemplateBeta: CampaignTemplateBeta, axiosOptions?: any): AxiosPromise<CampaignTemplateBeta> {
|
|
@@ -30152,16 +31654,6 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30152
31654
|
deleteCampaigns(deleteCampaignsRequestBeta: DeleteCampaignsRequestBeta, axiosOptions?: any): AxiosPromise<object> {
|
|
30153
31655
|
return localVarFp.deleteCampaigns(deleteCampaignsRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
30154
31656
|
},
|
|
30155
|
-
/**
|
|
30156
|
-
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
30157
|
-
* @summary Generate a Campaign from Template
|
|
30158
|
-
* @param {string} id The ID of the campaign template to use for generation.
|
|
30159
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
30160
|
-
* @throws {RequiredError}
|
|
30161
|
-
*/
|
|
30162
|
-
generateCampaignTemplate(id: string, axiosOptions?: any): AxiosPromise<CampaignReferenceBeta> {
|
|
30163
|
-
return localVarFp.generateCampaignTemplate(id, axiosOptions).then((request) => request(axios, basePath));
|
|
30164
|
-
},
|
|
30165
31657
|
/**
|
|
30166
31658
|
* Gets campaigns and returns them in a list. Can provide increased level of detail for each campaign if provided the correct query.
|
|
30167
31659
|
* @summary List Campaigns
|
|
@@ -30231,7 +31723,7 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30231
31723
|
return localVarFp.getCampaignTemplateSchedule(id, axiosOptions).then((request) => request(axios, basePath));
|
|
30232
31724
|
},
|
|
30233
31725
|
/**
|
|
30234
|
-
*
|
|
31726
|
+
* Lists all CampaignTemplates. Scope can be reduced via standard V3 query params. All CampaignTemplates matching the query params
|
|
30235
31727
|
* @summary List Campaign Templates
|
|
30236
31728
|
* @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.
|
|
30237
31729
|
* @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.
|
|
@@ -30239,6 +31731,7 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30239
31731
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
|
|
30240
31732
|
* @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: **name, id**
|
|
30241
31733
|
* @param {*} [axiosOptions] Override http request option.
|
|
31734
|
+
* @deprecated
|
|
30242
31735
|
* @throws {RequiredError}
|
|
30243
31736
|
*/
|
|
30244
31737
|
listCampaignTemplates(limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: any): AxiosPromise<Array<CampaignTemplateBeta>> {
|
|
@@ -30260,12 +31753,13 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30260
31753
|
* Allows updating individual fields on a campaign template using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
30261
31754
|
* @summary Update a Campaign Template
|
|
30262
31755
|
* @param {string} id The ID of the campaign template being modified.
|
|
30263
|
-
* @param {Array<
|
|
31756
|
+
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of campaign update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * deadlineDuration * campaign (all fields that are allowed during create)
|
|
30264
31757
|
* @param {*} [axiosOptions] Override http request option.
|
|
31758
|
+
* @deprecated
|
|
30265
31759
|
* @throws {RequiredError}
|
|
30266
31760
|
*/
|
|
30267
|
-
patchCampaignTemplate(id: string,
|
|
30268
|
-
return localVarFp.patchCampaignTemplate(id,
|
|
31761
|
+
patchCampaignTemplate(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: any): AxiosPromise<CampaignTemplateBeta> {
|
|
31762
|
+
return localVarFp.patchCampaignTemplate(id, jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
30269
31763
|
},
|
|
30270
31764
|
/**
|
|
30271
31765
|
* Overwrites configuration for campaign reports. Requires roles CERT_ADMIN and ORG_ADMIN.
|
|
@@ -30284,6 +31778,7 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30284
31778
|
* @param {string} id The ID of the campaign template being scheduled.
|
|
30285
31779
|
* @param {ScheduleBeta} [scheduleBeta]
|
|
30286
31780
|
* @param {*} [axiosOptions] Override http request option.
|
|
31781
|
+
* @deprecated
|
|
30287
31782
|
* @throws {RequiredError}
|
|
30288
31783
|
*/
|
|
30289
31784
|
setCampaignTemplateSchedule(id: string, scheduleBeta?: ScheduleBeta, axiosOptions?: any): AxiosPromise<void> {
|
|
@@ -30324,6 +31819,17 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
30324
31819
|
startCampaignReport(id: string, type: ReportTypeBeta, axiosOptions?: any): AxiosPromise<object> {
|
|
30325
31820
|
return localVarFp.startCampaignReport(id, type, axiosOptions).then((request) => request(axios, basePath));
|
|
30326
31821
|
},
|
|
31822
|
+
/**
|
|
31823
|
+
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
31824
|
+
* @summary Generate a Campaign from Template
|
|
31825
|
+
* @param {string} id The ID of the campaign template to use for generation.
|
|
31826
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31827
|
+
* @deprecated
|
|
31828
|
+
* @throws {RequiredError}
|
|
31829
|
+
*/
|
|
31830
|
+
startGenerateCampaignTemplate(id: string, axiosOptions?: any): AxiosPromise<CampaignReferenceBeta> {
|
|
31831
|
+
return localVarFp.startGenerateCampaignTemplate(id, axiosOptions).then((request) => request(axios, basePath));
|
|
31832
|
+
},
|
|
30327
31833
|
/**
|
|
30328
31834
|
* Allows updating individual fields on a campaign using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
30329
31835
|
* @summary Update a Campaign
|
|
@@ -30430,20 +31936,6 @@ export interface CertificationCampaignsBetaApiDeleteCampaignsRequest {
|
|
|
30430
31936
|
readonly deleteCampaignsRequestBeta: DeleteCampaignsRequestBeta
|
|
30431
31937
|
}
|
|
30432
31938
|
|
|
30433
|
-
/**
|
|
30434
|
-
* Request parameters for generateCampaignTemplate operation in CertificationCampaignsBetaApi.
|
|
30435
|
-
* @export
|
|
30436
|
-
* @interface CertificationCampaignsBetaApiGenerateCampaignTemplateRequest
|
|
30437
|
-
*/
|
|
30438
|
-
export interface CertificationCampaignsBetaApiGenerateCampaignTemplateRequest {
|
|
30439
|
-
/**
|
|
30440
|
-
* The ID of the campaign template to use for generation.
|
|
30441
|
-
* @type {string}
|
|
30442
|
-
* @memberof CertificationCampaignsBetaApiGenerateCampaignTemplate
|
|
30443
|
-
*/
|
|
30444
|
-
readonly id: string
|
|
30445
|
-
}
|
|
30446
|
-
|
|
30447
31939
|
/**
|
|
30448
31940
|
* Request parameters for getActiveCampaigns operation in CertificationCampaignsBetaApi.
|
|
30449
31941
|
* @export
|
|
@@ -30627,10 +32119,10 @@ export interface CertificationCampaignsBetaApiPatchCampaignTemplateRequest {
|
|
|
30627
32119
|
|
|
30628
32120
|
/**
|
|
30629
32121
|
* A list of campaign update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * deadlineDuration * campaign (all fields that are allowed during create)
|
|
30630
|
-
* @type {Array<
|
|
32122
|
+
* @type {Array<JsonPatchOperationBeta>}
|
|
30631
32123
|
* @memberof CertificationCampaignsBetaApiPatchCampaignTemplate
|
|
30632
32124
|
*/
|
|
30633
|
-
readonly
|
|
32125
|
+
readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>
|
|
30634
32126
|
}
|
|
30635
32127
|
|
|
30636
32128
|
/**
|
|
@@ -30724,6 +32216,20 @@ export interface CertificationCampaignsBetaApiStartCampaignReportRequest {
|
|
|
30724
32216
|
readonly type: ReportTypeBeta
|
|
30725
32217
|
}
|
|
30726
32218
|
|
|
32219
|
+
/**
|
|
32220
|
+
* Request parameters for startGenerateCampaignTemplate operation in CertificationCampaignsBetaApi.
|
|
32221
|
+
* @export
|
|
32222
|
+
* @interface CertificationCampaignsBetaApiStartGenerateCampaignTemplateRequest
|
|
32223
|
+
*/
|
|
32224
|
+
export interface CertificationCampaignsBetaApiStartGenerateCampaignTemplateRequest {
|
|
32225
|
+
/**
|
|
32226
|
+
* The ID of the campaign template to use for generation.
|
|
32227
|
+
* @type {string}
|
|
32228
|
+
* @memberof CertificationCampaignsBetaApiStartGenerateCampaignTemplate
|
|
32229
|
+
*/
|
|
32230
|
+
readonly id: string
|
|
32231
|
+
}
|
|
32232
|
+
|
|
30727
32233
|
/**
|
|
30728
32234
|
* Request parameters for updateCampaign operation in CertificationCampaignsBetaApi.
|
|
30729
32235
|
* @export
|
|
@@ -30779,10 +32285,11 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
30779
32285
|
}
|
|
30780
32286
|
|
|
30781
32287
|
/**
|
|
30782
|
-
*
|
|
32288
|
+
* Create a campaign Template based on campaign.
|
|
30783
32289
|
* @summary Create a Campaign Template
|
|
30784
32290
|
* @param {CertificationCampaignsBetaApiCreateCampaignTemplateRequest} requestParameters Request parameters.
|
|
30785
32291
|
* @param {*} [axiosOptions] Override http request option.
|
|
32292
|
+
* @deprecated
|
|
30786
32293
|
* @throws {RequiredError}
|
|
30787
32294
|
* @memberof CertificationCampaignsBetaApi
|
|
30788
32295
|
*/
|
|
@@ -30827,18 +32334,6 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
30827
32334
|
return CertificationCampaignsBetaApiFp(this.configuration).deleteCampaigns(requestParameters.deleteCampaignsRequestBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
30828
32335
|
}
|
|
30829
32336
|
|
|
30830
|
-
/**
|
|
30831
|
-
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
30832
|
-
* @summary Generate a Campaign from Template
|
|
30833
|
-
* @param {CertificationCampaignsBetaApiGenerateCampaignTemplateRequest} requestParameters Request parameters.
|
|
30834
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
30835
|
-
* @throws {RequiredError}
|
|
30836
|
-
* @memberof CertificationCampaignsBetaApi
|
|
30837
|
-
*/
|
|
30838
|
-
public generateCampaignTemplate(requestParameters: CertificationCampaignsBetaApiGenerateCampaignTemplateRequest, axiosOptions?: AxiosRequestConfig) {
|
|
30839
|
-
return CertificationCampaignsBetaApiFp(this.configuration).generateCampaignTemplate(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
30840
|
-
}
|
|
30841
|
-
|
|
30842
32337
|
/**
|
|
30843
32338
|
* Gets campaigns and returns them in a list. Can provide increased level of detail for each campaign if provided the correct query.
|
|
30844
32339
|
* @summary List Campaigns
|
|
@@ -30915,10 +32410,11 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
30915
32410
|
}
|
|
30916
32411
|
|
|
30917
32412
|
/**
|
|
30918
|
-
*
|
|
32413
|
+
* Lists all CampaignTemplates. Scope can be reduced via standard V3 query params. All CampaignTemplates matching the query params
|
|
30919
32414
|
* @summary List Campaign Templates
|
|
30920
32415
|
* @param {CertificationCampaignsBetaApiListCampaignTemplatesRequest} requestParameters Request parameters.
|
|
30921
32416
|
* @param {*} [axiosOptions] Override http request option.
|
|
32417
|
+
* @deprecated
|
|
30922
32418
|
* @throws {RequiredError}
|
|
30923
32419
|
* @memberof CertificationCampaignsBetaApi
|
|
30924
32420
|
*/
|
|
@@ -30944,11 +32440,12 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
30944
32440
|
* @summary Update a Campaign Template
|
|
30945
32441
|
* @param {CertificationCampaignsBetaApiPatchCampaignTemplateRequest} requestParameters Request parameters.
|
|
30946
32442
|
* @param {*} [axiosOptions] Override http request option.
|
|
32443
|
+
* @deprecated
|
|
30947
32444
|
* @throws {RequiredError}
|
|
30948
32445
|
* @memberof CertificationCampaignsBetaApi
|
|
30949
32446
|
*/
|
|
30950
32447
|
public patchCampaignTemplate(requestParameters: CertificationCampaignsBetaApiPatchCampaignTemplateRequest, axiosOptions?: AxiosRequestConfig) {
|
|
30951
|
-
return CertificationCampaignsBetaApiFp(this.configuration).patchCampaignTemplate(requestParameters.id, requestParameters.
|
|
32448
|
+
return CertificationCampaignsBetaApiFp(this.configuration).patchCampaignTemplate(requestParameters.id, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
30952
32449
|
}
|
|
30953
32450
|
|
|
30954
32451
|
/**
|
|
@@ -30969,6 +32466,7 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
30969
32466
|
* @summary Sets a Campaign Template\'s Schedule
|
|
30970
32467
|
* @param {CertificationCampaignsBetaApiSetCampaignTemplateScheduleRequest} requestParameters Request parameters.
|
|
30971
32468
|
* @param {*} [axiosOptions] Override http request option.
|
|
32469
|
+
* @deprecated
|
|
30972
32470
|
* @throws {RequiredError}
|
|
30973
32471
|
* @memberof CertificationCampaignsBetaApi
|
|
30974
32472
|
*/
|
|
@@ -31015,6 +32513,19 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
31015
32513
|
return CertificationCampaignsBetaApiFp(this.configuration).startCampaignReport(requestParameters.id, requestParameters.type, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
31016
32514
|
}
|
|
31017
32515
|
|
|
32516
|
+
/**
|
|
32517
|
+
* Generates a new campaign from a campaign template. The campaign object contained in the template has special formatting applied to its name and description fields in order to determine the generated campaign\'s name/description. Placeholders in those fields are formatted with the current date and time upon generation. Placeholders consist of a percent sign followed by a letter indicating what should be inserted; for example, \"%Y\" will insert the current year; a campaign template named \"Campaign for %y\" would generate a campaign called \"Campaign for 2020\" (assuming the year at generation time is 2020). Valid placeholders are the date/time conversion suffix characters supported by [java.util.Formatter](https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html). Requires roles ORG_ADMIN.
|
|
32518
|
+
* @summary Generate a Campaign from Template
|
|
32519
|
+
* @param {CertificationCampaignsBetaApiStartGenerateCampaignTemplateRequest} requestParameters Request parameters.
|
|
32520
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
32521
|
+
* @deprecated
|
|
32522
|
+
* @throws {RequiredError}
|
|
32523
|
+
* @memberof CertificationCampaignsBetaApi
|
|
32524
|
+
*/
|
|
32525
|
+
public startGenerateCampaignTemplate(requestParameters: CertificationCampaignsBetaApiStartGenerateCampaignTemplateRequest, axiosOptions?: AxiosRequestConfig) {
|
|
32526
|
+
return CertificationCampaignsBetaApiFp(this.configuration).startGenerateCampaignTemplate(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
32527
|
+
}
|
|
32528
|
+
|
|
31018
32529
|
/**
|
|
31019
32530
|
* Allows updating individual fields on a campaign using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
31020
32531
|
* @summary Update a Campaign
|
|
@@ -31046,6 +32557,7 @@ export const CertificationsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
31046
32557
|
* @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.
|
|
31047
32558
|
* @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.
|
|
31048
32559
|
* @param {*} [axiosOptions] Override http request option.
|
|
32560
|
+
* @deprecated
|
|
31049
32561
|
* @throws {RequiredError}
|
|
31050
32562
|
*/
|
|
31051
32563
|
getIdentityCertificationItemPermissions: async (certificationId: string, itemId: string, filters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -31264,13 +32776,14 @@ export const CertificationsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
31264
32776
|
* @param {string} id The identity campaign certification ID
|
|
31265
32777
|
* @param {ReviewReassignBeta} reviewReassignBeta
|
|
31266
32778
|
* @param {*} [axiosOptions] Override http request option.
|
|
32779
|
+
* @deprecated
|
|
31267
32780
|
* @throws {RequiredError}
|
|
31268
32781
|
*/
|
|
31269
|
-
|
|
32782
|
+
submitReassignCertsAsync: async (id: string, reviewReassignBeta: ReviewReassignBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31270
32783
|
// verify required parameter 'id' is not null or undefined
|
|
31271
|
-
assertParamExists('
|
|
32784
|
+
assertParamExists('submitReassignCertsAsync', 'id', id)
|
|
31272
32785
|
// verify required parameter 'reviewReassignBeta' is not null or undefined
|
|
31273
|
-
assertParamExists('
|
|
32786
|
+
assertParamExists('submitReassignCertsAsync', 'reviewReassignBeta', reviewReassignBeta)
|
|
31274
32787
|
const localVarPath = `/certifications/{id}/reassign-async`
|
|
31275
32788
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
31276
32789
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -31326,6 +32839,7 @@ export const CertificationsBetaApiFp = function(configuration?: Configuration) {
|
|
|
31326
32839
|
* @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.
|
|
31327
32840
|
* @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.
|
|
31328
32841
|
* @param {*} [axiosOptions] Override http request option.
|
|
32842
|
+
* @deprecated
|
|
31329
32843
|
* @throws {RequiredError}
|
|
31330
32844
|
*/
|
|
31331
32845
|
async getIdentityCertificationItemPermissions(certificationId: string, itemId: string, filters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PermissionDtoBeta>>> {
|
|
@@ -31378,10 +32892,11 @@ export const CertificationsBetaApiFp = function(configuration?: Configuration) {
|
|
|
31378
32892
|
* @param {string} id The identity campaign certification ID
|
|
31379
32893
|
* @param {ReviewReassignBeta} reviewReassignBeta
|
|
31380
32894
|
* @param {*} [axiosOptions] Override http request option.
|
|
32895
|
+
* @deprecated
|
|
31381
32896
|
* @throws {RequiredError}
|
|
31382
32897
|
*/
|
|
31383
|
-
async
|
|
31384
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
32898
|
+
async submitReassignCertsAsync(id: string, reviewReassignBeta: ReviewReassignBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityCertificationTaskBeta>> {
|
|
32899
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.submitReassignCertsAsync(id, reviewReassignBeta, axiosOptions);
|
|
31385
32900
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
31386
32901
|
},
|
|
31387
32902
|
}
|
|
@@ -31404,6 +32919,7 @@ export const CertificationsBetaApiFactory = function (configuration?: Configurat
|
|
|
31404
32919
|
* @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.
|
|
31405
32920
|
* @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.
|
|
31406
32921
|
* @param {*} [axiosOptions] Override http request option.
|
|
32922
|
+
* @deprecated
|
|
31407
32923
|
* @throws {RequiredError}
|
|
31408
32924
|
*/
|
|
31409
32925
|
getIdentityCertificationItemPermissions(certificationId: string, itemId: string, filters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: any): AxiosPromise<Array<PermissionDtoBeta>> {
|
|
@@ -31452,10 +32968,11 @@ export const CertificationsBetaApiFactory = function (configuration?: Configurat
|
|
|
31452
32968
|
* @param {string} id The identity campaign certification ID
|
|
31453
32969
|
* @param {ReviewReassignBeta} reviewReassignBeta
|
|
31454
32970
|
* @param {*} [axiosOptions] Override http request option.
|
|
32971
|
+
* @deprecated
|
|
31455
32972
|
* @throws {RequiredError}
|
|
31456
32973
|
*/
|
|
31457
|
-
|
|
31458
|
-
return localVarFp.
|
|
32974
|
+
submitReassignCertsAsync(id: string, reviewReassignBeta: ReviewReassignBeta, axiosOptions?: any): AxiosPromise<IdentityCertificationTaskBeta> {
|
|
32975
|
+
return localVarFp.submitReassignCertsAsync(id, reviewReassignBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
31459
32976
|
},
|
|
31460
32977
|
};
|
|
31461
32978
|
};
|
|
@@ -31594,22 +33111,22 @@ export interface CertificationsBetaApiListCertificationReviewersRequest {
|
|
|
31594
33111
|
}
|
|
31595
33112
|
|
|
31596
33113
|
/**
|
|
31597
|
-
* Request parameters for
|
|
33114
|
+
* Request parameters for submitReassignCertsAsync operation in CertificationsBetaApi.
|
|
31598
33115
|
* @export
|
|
31599
|
-
* @interface
|
|
33116
|
+
* @interface CertificationsBetaApiSubmitReassignCertsAsyncRequest
|
|
31600
33117
|
*/
|
|
31601
|
-
export interface
|
|
33118
|
+
export interface CertificationsBetaApiSubmitReassignCertsAsyncRequest {
|
|
31602
33119
|
/**
|
|
31603
33120
|
* The identity campaign certification ID
|
|
31604
33121
|
* @type {string}
|
|
31605
|
-
* @memberof
|
|
33122
|
+
* @memberof CertificationsBetaApiSubmitReassignCertsAsync
|
|
31606
33123
|
*/
|
|
31607
33124
|
readonly id: string
|
|
31608
33125
|
|
|
31609
33126
|
/**
|
|
31610
33127
|
*
|
|
31611
33128
|
* @type {ReviewReassignBeta}
|
|
31612
|
-
* @memberof
|
|
33129
|
+
* @memberof CertificationsBetaApiSubmitReassignCertsAsync
|
|
31613
33130
|
*/
|
|
31614
33131
|
readonly reviewReassignBeta: ReviewReassignBeta
|
|
31615
33132
|
}
|
|
@@ -31626,6 +33143,7 @@ export class CertificationsBetaApi extends BaseAPI {
|
|
|
31626
33143
|
* @summary Permissions for Entitlement Certification Item
|
|
31627
33144
|
* @param {CertificationsBetaApiGetIdentityCertificationItemPermissionsRequest} requestParameters Request parameters.
|
|
31628
33145
|
* @param {*} [axiosOptions] Override http request option.
|
|
33146
|
+
* @deprecated
|
|
31629
33147
|
* @throws {RequiredError}
|
|
31630
33148
|
* @memberof CertificationsBetaApi
|
|
31631
33149
|
*/
|
|
@@ -31673,13 +33191,14 @@ export class CertificationsBetaApi extends BaseAPI {
|
|
|
31673
33191
|
/**
|
|
31674
33192
|
* This API initiates a task to reassign up to 500 identities or items in an identity campaign certification to another reviewer. The `certification-tasks` API can be used to get an updated status on the task and determine when the reassignment is complete. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API. Reviewers for this certification can also call this API.
|
|
31675
33193
|
* @summary Reassign Certifications Asynchronously
|
|
31676
|
-
* @param {
|
|
33194
|
+
* @param {CertificationsBetaApiSubmitReassignCertsAsyncRequest} requestParameters Request parameters.
|
|
31677
33195
|
* @param {*} [axiosOptions] Override http request option.
|
|
33196
|
+
* @deprecated
|
|
31678
33197
|
* @throws {RequiredError}
|
|
31679
33198
|
* @memberof CertificationsBetaApi
|
|
31680
33199
|
*/
|
|
31681
|
-
public
|
|
31682
|
-
return CertificationsBetaApiFp(this.configuration).
|
|
33200
|
+
public submitReassignCertsAsync(requestParameters: CertificationsBetaApiSubmitReassignCertsAsyncRequest, axiosOptions?: AxiosRequestConfig) {
|
|
33201
|
+
return CertificationsBetaApiFp(this.configuration).submitReassignCertsAsync(requestParameters.id, requestParameters.reviewReassignBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
31683
33202
|
}
|
|
31684
33203
|
}
|
|
31685
33204
|
|
|
@@ -42074,6 +43593,265 @@ export class IdentitiesBetaApi extends BaseAPI {
|
|
|
42074
43593
|
}
|
|
42075
43594
|
|
|
42076
43595
|
|
|
43596
|
+
/**
|
|
43597
|
+
* IdentityAttributesBetaApi - axios parameter creator
|
|
43598
|
+
* @export
|
|
43599
|
+
*/
|
|
43600
|
+
export const IdentityAttributesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
43601
|
+
return {
|
|
43602
|
+
/**
|
|
43603
|
+
* This gets an identity attributes for a given technical name.
|
|
43604
|
+
* @summary Get Identity Attribute
|
|
43605
|
+
* @param {string} name The attribute\'s technical name.
|
|
43606
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43607
|
+
* @throws {RequiredError}
|
|
43608
|
+
*/
|
|
43609
|
+
getIdentityAttribute: async (name: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
43610
|
+
// verify required parameter 'name' is not null or undefined
|
|
43611
|
+
assertParamExists('getIdentityAttribute', 'name', name)
|
|
43612
|
+
const localVarPath = `/identity-attributes/{name}`
|
|
43613
|
+
.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
43614
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
43615
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
43616
|
+
let baseOptions;
|
|
43617
|
+
if (configuration) {
|
|
43618
|
+
baseOptions = configuration.baseOptions;
|
|
43619
|
+
}
|
|
43620
|
+
|
|
43621
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
43622
|
+
const localVarHeaderParameter = {} as any;
|
|
43623
|
+
const localVarQueryParameter = {} as any;
|
|
43624
|
+
|
|
43625
|
+
// authentication UserContextAuth required
|
|
43626
|
+
// oauth required
|
|
43627
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
43628
|
+
|
|
43629
|
+
// authentication UserContextAuth required
|
|
43630
|
+
// oauth required
|
|
43631
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
43632
|
+
|
|
43633
|
+
|
|
43634
|
+
|
|
43635
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
43636
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
43637
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
43638
|
+
|
|
43639
|
+
return {
|
|
43640
|
+
url: toPathString(localVarUrlObj),
|
|
43641
|
+
axiosOptions: localVarRequestOptions,
|
|
43642
|
+
};
|
|
43643
|
+
},
|
|
43644
|
+
/**
|
|
43645
|
+
* This gets a collection of identity attributes.
|
|
43646
|
+
* @summary List Identity Attributes
|
|
43647
|
+
* @param {boolean} [includeSystem] Include \"system\" attributes in the response.
|
|
43648
|
+
* @param {boolean} [includeSilent] Include \"silent\" attributes in the response.
|
|
43649
|
+
* @param {boolean} [searchableOnly] Include only \"searchable\" attributes in the response.
|
|
43650
|
+
* @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.
|
|
43651
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43652
|
+
* @throws {RequiredError}
|
|
43653
|
+
*/
|
|
43654
|
+
listIdentityAttributes: async (includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
43655
|
+
const localVarPath = `/identity-attributes`;
|
|
43656
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
43657
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
43658
|
+
let baseOptions;
|
|
43659
|
+
if (configuration) {
|
|
43660
|
+
baseOptions = configuration.baseOptions;
|
|
43661
|
+
}
|
|
43662
|
+
|
|
43663
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
43664
|
+
const localVarHeaderParameter = {} as any;
|
|
43665
|
+
const localVarQueryParameter = {} as any;
|
|
43666
|
+
|
|
43667
|
+
// authentication UserContextAuth required
|
|
43668
|
+
// oauth required
|
|
43669
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
43670
|
+
|
|
43671
|
+
// authentication UserContextAuth required
|
|
43672
|
+
// oauth required
|
|
43673
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
43674
|
+
|
|
43675
|
+
if (includeSystem !== undefined) {
|
|
43676
|
+
localVarQueryParameter['includeSystem'] = includeSystem;
|
|
43677
|
+
}
|
|
43678
|
+
|
|
43679
|
+
if (includeSilent !== undefined) {
|
|
43680
|
+
localVarQueryParameter['includeSilent'] = includeSilent;
|
|
43681
|
+
}
|
|
43682
|
+
|
|
43683
|
+
if (searchableOnly !== undefined) {
|
|
43684
|
+
localVarQueryParameter['searchableOnly'] = searchableOnly;
|
|
43685
|
+
}
|
|
43686
|
+
|
|
43687
|
+
if (count !== undefined) {
|
|
43688
|
+
localVarQueryParameter['count'] = count;
|
|
43689
|
+
}
|
|
43690
|
+
|
|
43691
|
+
|
|
43692
|
+
|
|
43693
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
43694
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
43695
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
43696
|
+
|
|
43697
|
+
return {
|
|
43698
|
+
url: toPathString(localVarUrlObj),
|
|
43699
|
+
axiosOptions: localVarRequestOptions,
|
|
43700
|
+
};
|
|
43701
|
+
},
|
|
43702
|
+
}
|
|
43703
|
+
};
|
|
43704
|
+
|
|
43705
|
+
/**
|
|
43706
|
+
* IdentityAttributesBetaApi - functional programming interface
|
|
43707
|
+
* @export
|
|
43708
|
+
*/
|
|
43709
|
+
export const IdentityAttributesBetaApiFp = function(configuration?: Configuration) {
|
|
43710
|
+
const localVarAxiosParamCreator = IdentityAttributesBetaApiAxiosParamCreator(configuration)
|
|
43711
|
+
return {
|
|
43712
|
+
/**
|
|
43713
|
+
* This gets an identity attributes for a given technical name.
|
|
43714
|
+
* @summary Get Identity Attribute
|
|
43715
|
+
* @param {string} name The attribute\'s technical name.
|
|
43716
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43717
|
+
* @throws {RequiredError}
|
|
43718
|
+
*/
|
|
43719
|
+
async getIdentityAttribute(name: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeBeta>> {
|
|
43720
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentityAttribute(name, axiosOptions);
|
|
43721
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43722
|
+
},
|
|
43723
|
+
/**
|
|
43724
|
+
* This gets a collection of identity attributes.
|
|
43725
|
+
* @summary List Identity Attributes
|
|
43726
|
+
* @param {boolean} [includeSystem] Include \"system\" attributes in the response.
|
|
43727
|
+
* @param {boolean} [includeSilent] Include \"silent\" attributes in the response.
|
|
43728
|
+
* @param {boolean} [searchableOnly] Include only \"searchable\" attributes in the response.
|
|
43729
|
+
* @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.
|
|
43730
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43731
|
+
* @throws {RequiredError}
|
|
43732
|
+
*/
|
|
43733
|
+
async listIdentityAttributes(includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityAttributeBeta>>> {
|
|
43734
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentityAttributes(includeSystem, includeSilent, searchableOnly, count, axiosOptions);
|
|
43735
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43736
|
+
},
|
|
43737
|
+
}
|
|
43738
|
+
};
|
|
43739
|
+
|
|
43740
|
+
/**
|
|
43741
|
+
* IdentityAttributesBetaApi - factory interface
|
|
43742
|
+
* @export
|
|
43743
|
+
*/
|
|
43744
|
+
export const IdentityAttributesBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
43745
|
+
const localVarFp = IdentityAttributesBetaApiFp(configuration)
|
|
43746
|
+
return {
|
|
43747
|
+
/**
|
|
43748
|
+
* This gets an identity attributes for a given technical name.
|
|
43749
|
+
* @summary Get Identity Attribute
|
|
43750
|
+
* @param {string} name The attribute\'s technical name.
|
|
43751
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43752
|
+
* @throws {RequiredError}
|
|
43753
|
+
*/
|
|
43754
|
+
getIdentityAttribute(name: string, axiosOptions?: any): AxiosPromise<IdentityAttributeBeta> {
|
|
43755
|
+
return localVarFp.getIdentityAttribute(name, axiosOptions).then((request) => request(axios, basePath));
|
|
43756
|
+
},
|
|
43757
|
+
/**
|
|
43758
|
+
* This gets a collection of identity attributes.
|
|
43759
|
+
* @summary List Identity Attributes
|
|
43760
|
+
* @param {boolean} [includeSystem] Include \"system\" attributes in the response.
|
|
43761
|
+
* @param {boolean} [includeSilent] Include \"silent\" attributes in the response.
|
|
43762
|
+
* @param {boolean} [searchableOnly] Include only \"searchable\" attributes in the response.
|
|
43763
|
+
* @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.
|
|
43764
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43765
|
+
* @throws {RequiredError}
|
|
43766
|
+
*/
|
|
43767
|
+
listIdentityAttributes(includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions?: any): AxiosPromise<Array<IdentityAttributeBeta>> {
|
|
43768
|
+
return localVarFp.listIdentityAttributes(includeSystem, includeSilent, searchableOnly, count, axiosOptions).then((request) => request(axios, basePath));
|
|
43769
|
+
},
|
|
43770
|
+
};
|
|
43771
|
+
};
|
|
43772
|
+
|
|
43773
|
+
/**
|
|
43774
|
+
* Request parameters for getIdentityAttribute operation in IdentityAttributesBetaApi.
|
|
43775
|
+
* @export
|
|
43776
|
+
* @interface IdentityAttributesBetaApiGetIdentityAttributeRequest
|
|
43777
|
+
*/
|
|
43778
|
+
export interface IdentityAttributesBetaApiGetIdentityAttributeRequest {
|
|
43779
|
+
/**
|
|
43780
|
+
* The attribute\'s technical name.
|
|
43781
|
+
* @type {string}
|
|
43782
|
+
* @memberof IdentityAttributesBetaApiGetIdentityAttribute
|
|
43783
|
+
*/
|
|
43784
|
+
readonly name: string
|
|
43785
|
+
}
|
|
43786
|
+
|
|
43787
|
+
/**
|
|
43788
|
+
* Request parameters for listIdentityAttributes operation in IdentityAttributesBetaApi.
|
|
43789
|
+
* @export
|
|
43790
|
+
* @interface IdentityAttributesBetaApiListIdentityAttributesRequest
|
|
43791
|
+
*/
|
|
43792
|
+
export interface IdentityAttributesBetaApiListIdentityAttributesRequest {
|
|
43793
|
+
/**
|
|
43794
|
+
* Include \"system\" attributes in the response.
|
|
43795
|
+
* @type {boolean}
|
|
43796
|
+
* @memberof IdentityAttributesBetaApiListIdentityAttributes
|
|
43797
|
+
*/
|
|
43798
|
+
readonly includeSystem?: boolean
|
|
43799
|
+
|
|
43800
|
+
/**
|
|
43801
|
+
* Include \"silent\" attributes in the response.
|
|
43802
|
+
* @type {boolean}
|
|
43803
|
+
* @memberof IdentityAttributesBetaApiListIdentityAttributes
|
|
43804
|
+
*/
|
|
43805
|
+
readonly includeSilent?: boolean
|
|
43806
|
+
|
|
43807
|
+
/**
|
|
43808
|
+
* Include only \"searchable\" attributes in the response.
|
|
43809
|
+
* @type {boolean}
|
|
43810
|
+
* @memberof IdentityAttributesBetaApiListIdentityAttributes
|
|
43811
|
+
*/
|
|
43812
|
+
readonly searchableOnly?: boolean
|
|
43813
|
+
|
|
43814
|
+
/**
|
|
43815
|
+
* 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.
|
|
43816
|
+
* @type {boolean}
|
|
43817
|
+
* @memberof IdentityAttributesBetaApiListIdentityAttributes
|
|
43818
|
+
*/
|
|
43819
|
+
readonly count?: boolean
|
|
43820
|
+
}
|
|
43821
|
+
|
|
43822
|
+
/**
|
|
43823
|
+
* IdentityAttributesBetaApi - object-oriented interface
|
|
43824
|
+
* @export
|
|
43825
|
+
* @class IdentityAttributesBetaApi
|
|
43826
|
+
* @extends {BaseAPI}
|
|
43827
|
+
*/
|
|
43828
|
+
export class IdentityAttributesBetaApi extends BaseAPI {
|
|
43829
|
+
/**
|
|
43830
|
+
* This gets an identity attributes for a given technical name.
|
|
43831
|
+
* @summary Get Identity Attribute
|
|
43832
|
+
* @param {IdentityAttributesBetaApiGetIdentityAttributeRequest} requestParameters Request parameters.
|
|
43833
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43834
|
+
* @throws {RequiredError}
|
|
43835
|
+
* @memberof IdentityAttributesBetaApi
|
|
43836
|
+
*/
|
|
43837
|
+
public getIdentityAttribute(requestParameters: IdentityAttributesBetaApiGetIdentityAttributeRequest, axiosOptions?: AxiosRequestConfig) {
|
|
43838
|
+
return IdentityAttributesBetaApiFp(this.configuration).getIdentityAttribute(requestParameters.name, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
43839
|
+
}
|
|
43840
|
+
|
|
43841
|
+
/**
|
|
43842
|
+
* This gets a collection of identity attributes.
|
|
43843
|
+
* @summary List Identity Attributes
|
|
43844
|
+
* @param {IdentityAttributesBetaApiListIdentityAttributesRequest} requestParameters Request parameters.
|
|
43845
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
43846
|
+
* @throws {RequiredError}
|
|
43847
|
+
* @memberof IdentityAttributesBetaApi
|
|
43848
|
+
*/
|
|
43849
|
+
public listIdentityAttributes(requestParameters: IdentityAttributesBetaApiListIdentityAttributesRequest = {}, axiosOptions?: AxiosRequestConfig) {
|
|
43850
|
+
return IdentityAttributesBetaApiFp(this.configuration).listIdentityAttributes(requestParameters.includeSystem, requestParameters.includeSilent, requestParameters.searchableOnly, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
43851
|
+
}
|
|
43852
|
+
}
|
|
43853
|
+
|
|
43854
|
+
|
|
42077
43855
|
/**
|
|
42078
43856
|
* IdentityHistoryBetaApi - axios parameter creator
|
|
42079
43857
|
* @export
|
|
@@ -60229,6 +62007,278 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
60229
62007
|
}
|
|
60230
62008
|
|
|
60231
62009
|
|
|
62010
|
+
/**
|
|
62011
|
+
* SourceUsagesBetaApi - axios parameter creator
|
|
62012
|
+
* @export
|
|
62013
|
+
*/
|
|
62014
|
+
export const SourceUsagesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
62015
|
+
return {
|
|
62016
|
+
/**
|
|
62017
|
+
* This API returns the status of the source usage insights setup by IDN source ID.
|
|
62018
|
+
* @summary Finds status of source usage
|
|
62019
|
+
* @param {string} sourceId ID of IDN source
|
|
62020
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62021
|
+
* @throws {RequiredError}
|
|
62022
|
+
*/
|
|
62023
|
+
getStatusBySourceId: async (sourceId: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
62024
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
62025
|
+
assertParamExists('getStatusBySourceId', 'sourceId', sourceId)
|
|
62026
|
+
const localVarPath = `/source-usages/{sourceId}/status`
|
|
62027
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
62028
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62029
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
62030
|
+
let baseOptions;
|
|
62031
|
+
if (configuration) {
|
|
62032
|
+
baseOptions = configuration.baseOptions;
|
|
62033
|
+
}
|
|
62034
|
+
|
|
62035
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
62036
|
+
const localVarHeaderParameter = {} as any;
|
|
62037
|
+
const localVarQueryParameter = {} as any;
|
|
62038
|
+
|
|
62039
|
+
// authentication UserContextAuth required
|
|
62040
|
+
// oauth required
|
|
62041
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
62042
|
+
|
|
62043
|
+
// authentication UserContextAuth required
|
|
62044
|
+
// oauth required
|
|
62045
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
62046
|
+
|
|
62047
|
+
|
|
62048
|
+
|
|
62049
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62050
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62051
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
62052
|
+
|
|
62053
|
+
return {
|
|
62054
|
+
url: toPathString(localVarUrlObj),
|
|
62055
|
+
axiosOptions: localVarRequestOptions,
|
|
62056
|
+
};
|
|
62057
|
+
},
|
|
62058
|
+
/**
|
|
62059
|
+
* This API returns a summary of source usage insights for past 12 months.
|
|
62060
|
+
* @summary Returns source usage insights
|
|
62061
|
+
* @param {string} sourceId ID of IDN source
|
|
62062
|
+
* @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.
|
|
62063
|
+
* @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.
|
|
62064
|
+
* @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.
|
|
62065
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
62066
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62067
|
+
* @throws {RequiredError}
|
|
62068
|
+
*/
|
|
62069
|
+
getUsagesBySourceId: async (sourceId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
62070
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
62071
|
+
assertParamExists('getUsagesBySourceId', 'sourceId', sourceId)
|
|
62072
|
+
const localVarPath = `/source-usages/{sourceId}/summaries`
|
|
62073
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
62074
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62075
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
62076
|
+
let baseOptions;
|
|
62077
|
+
if (configuration) {
|
|
62078
|
+
baseOptions = configuration.baseOptions;
|
|
62079
|
+
}
|
|
62080
|
+
|
|
62081
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
62082
|
+
const localVarHeaderParameter = {} as any;
|
|
62083
|
+
const localVarQueryParameter = {} as any;
|
|
62084
|
+
|
|
62085
|
+
// authentication UserContextAuth required
|
|
62086
|
+
// oauth required
|
|
62087
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
62088
|
+
|
|
62089
|
+
// authentication UserContextAuth required
|
|
62090
|
+
// oauth required
|
|
62091
|
+
await setOAuthToObject(localVarHeaderParameter, "UserContextAuth", [], configuration)
|
|
62092
|
+
|
|
62093
|
+
if (limit !== undefined) {
|
|
62094
|
+
localVarQueryParameter['limit'] = limit;
|
|
62095
|
+
}
|
|
62096
|
+
|
|
62097
|
+
if (offset !== undefined) {
|
|
62098
|
+
localVarQueryParameter['offset'] = offset;
|
|
62099
|
+
}
|
|
62100
|
+
|
|
62101
|
+
if (count !== undefined) {
|
|
62102
|
+
localVarQueryParameter['count'] = count;
|
|
62103
|
+
}
|
|
62104
|
+
|
|
62105
|
+
if (sorters !== undefined) {
|
|
62106
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
62107
|
+
}
|
|
62108
|
+
|
|
62109
|
+
|
|
62110
|
+
|
|
62111
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62112
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62113
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
62114
|
+
|
|
62115
|
+
return {
|
|
62116
|
+
url: toPathString(localVarUrlObj),
|
|
62117
|
+
axiosOptions: localVarRequestOptions,
|
|
62118
|
+
};
|
|
62119
|
+
},
|
|
62120
|
+
}
|
|
62121
|
+
};
|
|
62122
|
+
|
|
62123
|
+
/**
|
|
62124
|
+
* SourceUsagesBetaApi - functional programming interface
|
|
62125
|
+
* @export
|
|
62126
|
+
*/
|
|
62127
|
+
export const SourceUsagesBetaApiFp = function(configuration?: Configuration) {
|
|
62128
|
+
const localVarAxiosParamCreator = SourceUsagesBetaApiAxiosParamCreator(configuration)
|
|
62129
|
+
return {
|
|
62130
|
+
/**
|
|
62131
|
+
* This API returns the status of the source usage insights setup by IDN source ID.
|
|
62132
|
+
* @summary Finds status of source usage
|
|
62133
|
+
* @param {string} sourceId ID of IDN source
|
|
62134
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62135
|
+
* @throws {RequiredError}
|
|
62136
|
+
*/
|
|
62137
|
+
async getStatusBySourceId(sourceId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceUsageStatusBeta>> {
|
|
62138
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getStatusBySourceId(sourceId, axiosOptions);
|
|
62139
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
62140
|
+
},
|
|
62141
|
+
/**
|
|
62142
|
+
* This API returns a summary of source usage insights for past 12 months.
|
|
62143
|
+
* @summary Returns source usage insights
|
|
62144
|
+
* @param {string} sourceId ID of IDN source
|
|
62145
|
+
* @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.
|
|
62146
|
+
* @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.
|
|
62147
|
+
* @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.
|
|
62148
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
62149
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62150
|
+
* @throws {RequiredError}
|
|
62151
|
+
*/
|
|
62152
|
+
async getUsagesBySourceId(sourceId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceUsageBeta>>> {
|
|
62153
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getUsagesBySourceId(sourceId, limit, offset, count, sorters, axiosOptions);
|
|
62154
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
62155
|
+
},
|
|
62156
|
+
}
|
|
62157
|
+
};
|
|
62158
|
+
|
|
62159
|
+
/**
|
|
62160
|
+
* SourceUsagesBetaApi - factory interface
|
|
62161
|
+
* @export
|
|
62162
|
+
*/
|
|
62163
|
+
export const SourceUsagesBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
62164
|
+
const localVarFp = SourceUsagesBetaApiFp(configuration)
|
|
62165
|
+
return {
|
|
62166
|
+
/**
|
|
62167
|
+
* This API returns the status of the source usage insights setup by IDN source ID.
|
|
62168
|
+
* @summary Finds status of source usage
|
|
62169
|
+
* @param {string} sourceId ID of IDN source
|
|
62170
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62171
|
+
* @throws {RequiredError}
|
|
62172
|
+
*/
|
|
62173
|
+
getStatusBySourceId(sourceId: string, axiosOptions?: any): AxiosPromise<SourceUsageStatusBeta> {
|
|
62174
|
+
return localVarFp.getStatusBySourceId(sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
62175
|
+
},
|
|
62176
|
+
/**
|
|
62177
|
+
* This API returns a summary of source usage insights for past 12 months.
|
|
62178
|
+
* @summary Returns source usage insights
|
|
62179
|
+
* @param {string} sourceId ID of IDN source
|
|
62180
|
+
* @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.
|
|
62181
|
+
* @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.
|
|
62182
|
+
* @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.
|
|
62183
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
62184
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62185
|
+
* @throws {RequiredError}
|
|
62186
|
+
*/
|
|
62187
|
+
getUsagesBySourceId(sourceId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions?: any): AxiosPromise<Array<SourceUsageBeta>> {
|
|
62188
|
+
return localVarFp.getUsagesBySourceId(sourceId, limit, offset, count, sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
62189
|
+
},
|
|
62190
|
+
};
|
|
62191
|
+
};
|
|
62192
|
+
|
|
62193
|
+
/**
|
|
62194
|
+
* Request parameters for getStatusBySourceId operation in SourceUsagesBetaApi.
|
|
62195
|
+
* @export
|
|
62196
|
+
* @interface SourceUsagesBetaApiGetStatusBySourceIdRequest
|
|
62197
|
+
*/
|
|
62198
|
+
export interface SourceUsagesBetaApiGetStatusBySourceIdRequest {
|
|
62199
|
+
/**
|
|
62200
|
+
* ID of IDN source
|
|
62201
|
+
* @type {string}
|
|
62202
|
+
* @memberof SourceUsagesBetaApiGetStatusBySourceId
|
|
62203
|
+
*/
|
|
62204
|
+
readonly sourceId: string
|
|
62205
|
+
}
|
|
62206
|
+
|
|
62207
|
+
/**
|
|
62208
|
+
* Request parameters for getUsagesBySourceId operation in SourceUsagesBetaApi.
|
|
62209
|
+
* @export
|
|
62210
|
+
* @interface SourceUsagesBetaApiGetUsagesBySourceIdRequest
|
|
62211
|
+
*/
|
|
62212
|
+
export interface SourceUsagesBetaApiGetUsagesBySourceIdRequest {
|
|
62213
|
+
/**
|
|
62214
|
+
* ID of IDN source
|
|
62215
|
+
* @type {string}
|
|
62216
|
+
* @memberof SourceUsagesBetaApiGetUsagesBySourceId
|
|
62217
|
+
*/
|
|
62218
|
+
readonly sourceId: string
|
|
62219
|
+
|
|
62220
|
+
/**
|
|
62221
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62222
|
+
* @type {number}
|
|
62223
|
+
* @memberof SourceUsagesBetaApiGetUsagesBySourceId
|
|
62224
|
+
*/
|
|
62225
|
+
readonly limit?: number
|
|
62226
|
+
|
|
62227
|
+
/**
|
|
62228
|
+
* 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.
|
|
62229
|
+
* @type {number}
|
|
62230
|
+
* @memberof SourceUsagesBetaApiGetUsagesBySourceId
|
|
62231
|
+
*/
|
|
62232
|
+
readonly offset?: number
|
|
62233
|
+
|
|
62234
|
+
/**
|
|
62235
|
+
* 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.
|
|
62236
|
+
* @type {boolean}
|
|
62237
|
+
* @memberof SourceUsagesBetaApiGetUsagesBySourceId
|
|
62238
|
+
*/
|
|
62239
|
+
readonly count?: boolean
|
|
62240
|
+
|
|
62241
|
+
/**
|
|
62242
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **date**
|
|
62243
|
+
* @type {string}
|
|
62244
|
+
* @memberof SourceUsagesBetaApiGetUsagesBySourceId
|
|
62245
|
+
*/
|
|
62246
|
+
readonly sorters?: string
|
|
62247
|
+
}
|
|
62248
|
+
|
|
62249
|
+
/**
|
|
62250
|
+
* SourceUsagesBetaApi - object-oriented interface
|
|
62251
|
+
* @export
|
|
62252
|
+
* @class SourceUsagesBetaApi
|
|
62253
|
+
* @extends {BaseAPI}
|
|
62254
|
+
*/
|
|
62255
|
+
export class SourceUsagesBetaApi extends BaseAPI {
|
|
62256
|
+
/**
|
|
62257
|
+
* This API returns the status of the source usage insights setup by IDN source ID.
|
|
62258
|
+
* @summary Finds status of source usage
|
|
62259
|
+
* @param {SourceUsagesBetaApiGetStatusBySourceIdRequest} requestParameters Request parameters.
|
|
62260
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62261
|
+
* @throws {RequiredError}
|
|
62262
|
+
* @memberof SourceUsagesBetaApi
|
|
62263
|
+
*/
|
|
62264
|
+
public getStatusBySourceId(requestParameters: SourceUsagesBetaApiGetStatusBySourceIdRequest, axiosOptions?: AxiosRequestConfig) {
|
|
62265
|
+
return SourceUsagesBetaApiFp(this.configuration).getStatusBySourceId(requestParameters.sourceId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
62266
|
+
}
|
|
62267
|
+
|
|
62268
|
+
/**
|
|
62269
|
+
* This API returns a summary of source usage insights for past 12 months.
|
|
62270
|
+
* @summary Returns source usage insights
|
|
62271
|
+
* @param {SourceUsagesBetaApiGetUsagesBySourceIdRequest} requestParameters Request parameters.
|
|
62272
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62273
|
+
* @throws {RequiredError}
|
|
62274
|
+
* @memberof SourceUsagesBetaApi
|
|
62275
|
+
*/
|
|
62276
|
+
public getUsagesBySourceId(requestParameters: SourceUsagesBetaApiGetUsagesBySourceIdRequest, axiosOptions?: AxiosRequestConfig) {
|
|
62277
|
+
return SourceUsagesBetaApiFp(this.configuration).getUsagesBySourceId(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
62278
|
+
}
|
|
62279
|
+
}
|
|
62280
|
+
|
|
62281
|
+
|
|
60232
62282
|
/**
|
|
60233
62283
|
* SourcesBetaApi - axios parameter creator
|
|
60234
62284
|
* @export
|
|
@@ -65607,7 +67657,7 @@ export class TaskManagementBetaApi extends BaseAPI {
|
|
|
65607
67657
|
export const TransformsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
65608
67658
|
return {
|
|
65609
67659
|
/**
|
|
65610
|
-
* Creates a new transform object.
|
|
67660
|
+
* Creates a new transform object immediately. By default, the internal flag is set to false to indicate that this is a custom transform. Only SailPoint employees have the ability to create a transform with internal set to true. Newly created Transforms can be used in the Identity Profile mappings within the UI. A token with transform write authority is required to call this API.
|
|
65611
67661
|
* @summary Create transform
|
|
65612
67662
|
* @param {TransformBeta} transformBeta The transform to be created.
|
|
65613
67663
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65651,7 +67701,7 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
|
|
|
65651
67701
|
};
|
|
65652
67702
|
},
|
|
65653
67703
|
/**
|
|
65654
|
-
* Deletes the transform specified by the given ID. A token with transform delete authority is required to call this API.
|
|
67704
|
+
* Deletes the transform specified by the given ID. Attempting to delete a transform that is used in one or more Identity Profile mappings will result in an error. If this occurs, you must first remove the transform from all mappings before deleting the transform. A token with transform delete authority is required to call this API.
|
|
65655
67705
|
* @summary Delete a transform
|
|
65656
67706
|
* @param {string} id ID of the transform to delete
|
|
65657
67707
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65798,14 +67848,14 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
|
|
|
65798
67848
|
};
|
|
65799
67849
|
},
|
|
65800
67850
|
/**
|
|
65801
|
-
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other
|
|
67851
|
+
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other properties (ex. \"name\" and \"type\") will result in an error. A token with transform write authority is required to call this API.
|
|
65802
67852
|
* @summary Update a transform
|
|
65803
67853
|
* @param {string} id ID of the transform to update
|
|
65804
|
-
* @param {
|
|
67854
|
+
* @param {TransformUpdateBeta} [transformUpdateBeta] The updated transform object (must include \"name\", \"type\", and \"attributes\" fields).
|
|
65805
67855
|
* @param {*} [axiosOptions] Override http request option.
|
|
65806
67856
|
* @throws {RequiredError}
|
|
65807
67857
|
*/
|
|
65808
|
-
updateTransform: async (id: string,
|
|
67858
|
+
updateTransform: async (id: string, transformUpdateBeta?: TransformUpdateBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
65809
67859
|
// verify required parameter 'id' is not null or undefined
|
|
65810
67860
|
assertParamExists('updateTransform', 'id', id)
|
|
65811
67861
|
const localVarPath = `/transforms/{id}`
|
|
@@ -65836,7 +67886,7 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
|
|
|
65836
67886
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
65837
67887
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
65838
67888
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
65839
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
67889
|
+
localVarRequestOptions.data = serializeDataIfNeeded(transformUpdateBeta, localVarRequestOptions, configuration)
|
|
65840
67890
|
|
|
65841
67891
|
return {
|
|
65842
67892
|
url: toPathString(localVarUrlObj),
|
|
@@ -65854,18 +67904,18 @@ export const TransformsBetaApiFp = function(configuration?: Configuration) {
|
|
|
65854
67904
|
const localVarAxiosParamCreator = TransformsBetaApiAxiosParamCreator(configuration)
|
|
65855
67905
|
return {
|
|
65856
67906
|
/**
|
|
65857
|
-
* Creates a new transform object.
|
|
67907
|
+
* Creates a new transform object immediately. By default, the internal flag is set to false to indicate that this is a custom transform. Only SailPoint employees have the ability to create a transform with internal set to true. Newly created Transforms can be used in the Identity Profile mappings within the UI. A token with transform write authority is required to call this API.
|
|
65858
67908
|
* @summary Create transform
|
|
65859
67909
|
* @param {TransformBeta} transformBeta The transform to be created.
|
|
65860
67910
|
* @param {*} [axiosOptions] Override http request option.
|
|
65861
67911
|
* @throws {RequiredError}
|
|
65862
67912
|
*/
|
|
65863
|
-
async createTransform(transformBeta: TransformBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
67913
|
+
async createTransform(transformBeta: TransformBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransformReadBeta>> {
|
|
65864
67914
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createTransform(transformBeta, axiosOptions);
|
|
65865
67915
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
65866
67916
|
},
|
|
65867
67917
|
/**
|
|
65868
|
-
* Deletes the transform specified by the given ID. A token with transform delete authority is required to call this API.
|
|
67918
|
+
* Deletes the transform specified by the given ID. Attempting to delete a transform that is used in one or more Identity Profile mappings will result in an error. If this occurs, you must first remove the transform from all mappings before deleting the transform. A token with transform delete authority is required to call this API.
|
|
65869
67919
|
* @summary Delete a transform
|
|
65870
67920
|
* @param {string} id ID of the transform to delete
|
|
65871
67921
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65882,7 +67932,7 @@ export const TransformsBetaApiFp = function(configuration?: Configuration) {
|
|
|
65882
67932
|
* @param {*} [axiosOptions] Override http request option.
|
|
65883
67933
|
* @throws {RequiredError}
|
|
65884
67934
|
*/
|
|
65885
|
-
async getTransform(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
67935
|
+
async getTransform(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransformReadBeta>> {
|
|
65886
67936
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTransform(id, axiosOptions);
|
|
65887
67937
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
65888
67938
|
},
|
|
@@ -65897,20 +67947,20 @@ export const TransformsBetaApiFp = function(configuration?: Configuration) {
|
|
|
65897
67947
|
* @param {*} [axiosOptions] Override http request option.
|
|
65898
67948
|
* @throws {RequiredError}
|
|
65899
67949
|
*/
|
|
65900
|
-
async listTransforms(offset?: number, limit?: number, count?: boolean, name?: string, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
67950
|
+
async listTransforms(offset?: number, limit?: number, count?: boolean, name?: string, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TransformReadBeta>>> {
|
|
65901
67951
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTransforms(offset, limit, count, name, filters, axiosOptions);
|
|
65902
67952
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
65903
67953
|
},
|
|
65904
67954
|
/**
|
|
65905
|
-
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other
|
|
67955
|
+
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other properties (ex. \"name\" and \"type\") will result in an error. A token with transform write authority is required to call this API.
|
|
65906
67956
|
* @summary Update a transform
|
|
65907
67957
|
* @param {string} id ID of the transform to update
|
|
65908
|
-
* @param {
|
|
67958
|
+
* @param {TransformUpdateBeta} [transformUpdateBeta] The updated transform object (must include \"name\", \"type\", and \"attributes\" fields).
|
|
65909
67959
|
* @param {*} [axiosOptions] Override http request option.
|
|
65910
67960
|
* @throws {RequiredError}
|
|
65911
67961
|
*/
|
|
65912
|
-
async updateTransform(id: string,
|
|
65913
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateTransform(id,
|
|
67962
|
+
async updateTransform(id: string, transformUpdateBeta?: TransformUpdateBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransformReadBeta>> {
|
|
67963
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateTransform(id, transformUpdateBeta, axiosOptions);
|
|
65914
67964
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
65915
67965
|
},
|
|
65916
67966
|
}
|
|
@@ -65924,17 +67974,17 @@ export const TransformsBetaApiFactory = function (configuration?: Configuration,
|
|
|
65924
67974
|
const localVarFp = TransformsBetaApiFp(configuration)
|
|
65925
67975
|
return {
|
|
65926
67976
|
/**
|
|
65927
|
-
* Creates a new transform object.
|
|
67977
|
+
* Creates a new transform object immediately. By default, the internal flag is set to false to indicate that this is a custom transform. Only SailPoint employees have the ability to create a transform with internal set to true. Newly created Transforms can be used in the Identity Profile mappings within the UI. A token with transform write authority is required to call this API.
|
|
65928
67978
|
* @summary Create transform
|
|
65929
67979
|
* @param {TransformBeta} transformBeta The transform to be created.
|
|
65930
67980
|
* @param {*} [axiosOptions] Override http request option.
|
|
65931
67981
|
* @throws {RequiredError}
|
|
65932
67982
|
*/
|
|
65933
|
-
createTransform(transformBeta: TransformBeta, axiosOptions?: any): AxiosPromise<
|
|
67983
|
+
createTransform(transformBeta: TransformBeta, axiosOptions?: any): AxiosPromise<TransformReadBeta> {
|
|
65934
67984
|
return localVarFp.createTransform(transformBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
65935
67985
|
},
|
|
65936
67986
|
/**
|
|
65937
|
-
* Deletes the transform specified by the given ID. A token with transform delete authority is required to call this API.
|
|
67987
|
+
* Deletes the transform specified by the given ID. Attempting to delete a transform that is used in one or more Identity Profile mappings will result in an error. If this occurs, you must first remove the transform from all mappings before deleting the transform. A token with transform delete authority is required to call this API.
|
|
65938
67988
|
* @summary Delete a transform
|
|
65939
67989
|
* @param {string} id ID of the transform to delete
|
|
65940
67990
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65950,7 +68000,7 @@ export const TransformsBetaApiFactory = function (configuration?: Configuration,
|
|
|
65950
68000
|
* @param {*} [axiosOptions] Override http request option.
|
|
65951
68001
|
* @throws {RequiredError}
|
|
65952
68002
|
*/
|
|
65953
|
-
getTransform(id: string, axiosOptions?: any): AxiosPromise<
|
|
68003
|
+
getTransform(id: string, axiosOptions?: any): AxiosPromise<TransformReadBeta> {
|
|
65954
68004
|
return localVarFp.getTransform(id, axiosOptions).then((request) => request(axios, basePath));
|
|
65955
68005
|
},
|
|
65956
68006
|
/**
|
|
@@ -65964,19 +68014,19 @@ export const TransformsBetaApiFactory = function (configuration?: Configuration,
|
|
|
65964
68014
|
* @param {*} [axiosOptions] Override http request option.
|
|
65965
68015
|
* @throws {RequiredError}
|
|
65966
68016
|
*/
|
|
65967
|
-
listTransforms(offset?: number, limit?: number, count?: boolean, name?: string, filters?: string, axiosOptions?: any): AxiosPromise<Array<
|
|
68017
|
+
listTransforms(offset?: number, limit?: number, count?: boolean, name?: string, filters?: string, axiosOptions?: any): AxiosPromise<Array<TransformReadBeta>> {
|
|
65968
68018
|
return localVarFp.listTransforms(offset, limit, count, name, filters, axiosOptions).then((request) => request(axios, basePath));
|
|
65969
68019
|
},
|
|
65970
68020
|
/**
|
|
65971
|
-
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other
|
|
68021
|
+
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other properties (ex. \"name\" and \"type\") will result in an error. A token with transform write authority is required to call this API.
|
|
65972
68022
|
* @summary Update a transform
|
|
65973
68023
|
* @param {string} id ID of the transform to update
|
|
65974
|
-
* @param {
|
|
68024
|
+
* @param {TransformUpdateBeta} [transformUpdateBeta] The updated transform object (must include \"name\", \"type\", and \"attributes\" fields).
|
|
65975
68025
|
* @param {*} [axiosOptions] Override http request option.
|
|
65976
68026
|
* @throws {RequiredError}
|
|
65977
68027
|
*/
|
|
65978
|
-
updateTransform(id: string,
|
|
65979
|
-
return localVarFp.updateTransform(id,
|
|
68028
|
+
updateTransform(id: string, transformUpdateBeta?: TransformUpdateBeta, axiosOptions?: any): AxiosPromise<TransformReadBeta> {
|
|
68029
|
+
return localVarFp.updateTransform(id, transformUpdateBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
65980
68030
|
},
|
|
65981
68031
|
};
|
|
65982
68032
|
};
|
|
@@ -66080,10 +68130,10 @@ export interface TransformsBetaApiUpdateTransformRequest {
|
|
|
66080
68130
|
|
|
66081
68131
|
/**
|
|
66082
68132
|
* The updated transform object (must include \"name\", \"type\", and \"attributes\" fields).
|
|
66083
|
-
* @type {
|
|
68133
|
+
* @type {TransformUpdateBeta}
|
|
66084
68134
|
* @memberof TransformsBetaApiUpdateTransform
|
|
66085
68135
|
*/
|
|
66086
|
-
readonly
|
|
68136
|
+
readonly transformUpdateBeta?: TransformUpdateBeta
|
|
66087
68137
|
}
|
|
66088
68138
|
|
|
66089
68139
|
/**
|
|
@@ -66094,7 +68144,7 @@ export interface TransformsBetaApiUpdateTransformRequest {
|
|
|
66094
68144
|
*/
|
|
66095
68145
|
export class TransformsBetaApi extends BaseAPI {
|
|
66096
68146
|
/**
|
|
66097
|
-
* Creates a new transform object.
|
|
68147
|
+
* Creates a new transform object immediately. By default, the internal flag is set to false to indicate that this is a custom transform. Only SailPoint employees have the ability to create a transform with internal set to true. Newly created Transforms can be used in the Identity Profile mappings within the UI. A token with transform write authority is required to call this API.
|
|
66098
68148
|
* @summary Create transform
|
|
66099
68149
|
* @param {TransformsBetaApiCreateTransformRequest} requestParameters Request parameters.
|
|
66100
68150
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -66106,7 +68156,7 @@ export class TransformsBetaApi extends BaseAPI {
|
|
|
66106
68156
|
}
|
|
66107
68157
|
|
|
66108
68158
|
/**
|
|
66109
|
-
* Deletes the transform specified by the given ID. A token with transform delete authority is required to call this API.
|
|
68159
|
+
* Deletes the transform specified by the given ID. Attempting to delete a transform that is used in one or more Identity Profile mappings will result in an error. If this occurs, you must first remove the transform from all mappings before deleting the transform. A token with transform delete authority is required to call this API.
|
|
66110
68160
|
* @summary Delete a transform
|
|
66111
68161
|
* @param {TransformsBetaApiDeleteTransformRequest} requestParameters Request parameters.
|
|
66112
68162
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -66142,7 +68192,7 @@ export class TransformsBetaApi extends BaseAPI {
|
|
|
66142
68192
|
}
|
|
66143
68193
|
|
|
66144
68194
|
/**
|
|
66145
|
-
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other
|
|
68195
|
+
* Replaces the transform specified by the given ID with the transform provided in the request body. Only the \"attributes\" field is mutable. Attempting to change other properties (ex. \"name\" and \"type\") will result in an error. A token with transform write authority is required to call this API.
|
|
66146
68196
|
* @summary Update a transform
|
|
66147
68197
|
* @param {TransformsBetaApiUpdateTransformRequest} requestParameters Request parameters.
|
|
66148
68198
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -66150,7 +68200,7 @@ export class TransformsBetaApi extends BaseAPI {
|
|
|
66150
68200
|
* @memberof TransformsBetaApi
|
|
66151
68201
|
*/
|
|
66152
68202
|
public updateTransform(requestParameters: TransformsBetaApiUpdateTransformRequest, axiosOptions?: AxiosRequestConfig) {
|
|
66153
|
-
return TransformsBetaApiFp(this.configuration).updateTransform(requestParameters.id, requestParameters.
|
|
68203
|
+
return TransformsBetaApiFp(this.configuration).updateTransform(requestParameters.id, requestParameters.transformUpdateBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
66154
68204
|
}
|
|
66155
68205
|
}
|
|
66156
68206
|
|