sailpoint-api-client 1.4.15 → 1.4.16
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 +514 -389
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +462 -363
- package/dist/beta/api.js +181 -126
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +860 -124
- package/dist/v2024/api.js +364 -131
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v3/api.d.ts +180 -65
- package/dist/v3/api.js +87 -62
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +7 -2
- package/v2024/README.md +2 -2
- package/v2024/api.ts +994 -144
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +202 -72
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2024/api.ts
CHANGED
|
@@ -10023,6 +10023,260 @@ export const CloseAccessRequestV2024CompletionStatusV2024 = {
|
|
|
10023
10023
|
|
|
10024
10024
|
export type CloseAccessRequestV2024CompletionStatusV2024 = typeof CloseAccessRequestV2024CompletionStatusV2024[keyof typeof CloseAccessRequestV2024CompletionStatusV2024];
|
|
10025
10025
|
|
|
10026
|
+
/**
|
|
10027
|
+
* Configuration details for the \'ccg\' process.
|
|
10028
|
+
* @export
|
|
10029
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
10030
|
+
*/
|
|
10031
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024 {
|
|
10032
|
+
/**
|
|
10033
|
+
* Version of the \'ccg\' process.
|
|
10034
|
+
* @type {string}
|
|
10035
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
10036
|
+
*/
|
|
10037
|
+
'version': string;
|
|
10038
|
+
/**
|
|
10039
|
+
* Path to the \'ccg\' process.
|
|
10040
|
+
* @type {string}
|
|
10041
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
10042
|
+
*/
|
|
10043
|
+
'path': string;
|
|
10044
|
+
/**
|
|
10045
|
+
* A brief description of the \'ccg\' process.
|
|
10046
|
+
* @type {string}
|
|
10047
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
10048
|
+
*/
|
|
10049
|
+
'description': string;
|
|
10050
|
+
/**
|
|
10051
|
+
* Indicates whether the process needs to be restarted.
|
|
10052
|
+
* @type {boolean}
|
|
10053
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
10054
|
+
*/
|
|
10055
|
+
'restartNeeded': boolean;
|
|
10056
|
+
/**
|
|
10057
|
+
* A map of dependencies for the \'ccg\' process.
|
|
10058
|
+
* @type {{ [key: string]: string; }}
|
|
10059
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
10060
|
+
*/
|
|
10061
|
+
'dependencies': { [key: string]: string; };
|
|
10062
|
+
}
|
|
10063
|
+
/**
|
|
10064
|
+
* Configuration details for the \'charon\' process.
|
|
10065
|
+
* @export
|
|
10066
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
10067
|
+
*/
|
|
10068
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024 {
|
|
10069
|
+
/**
|
|
10070
|
+
* Version of the \'charon\' process.
|
|
10071
|
+
* @type {string}
|
|
10072
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
10073
|
+
*/
|
|
10074
|
+
'version': string;
|
|
10075
|
+
/**
|
|
10076
|
+
* Path to the \'charon\' process.
|
|
10077
|
+
* @type {string}
|
|
10078
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
10079
|
+
*/
|
|
10080
|
+
'path': string;
|
|
10081
|
+
/**
|
|
10082
|
+
* A brief description of the \'charon\' process.
|
|
10083
|
+
* @type {string}
|
|
10084
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
10085
|
+
*/
|
|
10086
|
+
'description': string;
|
|
10087
|
+
/**
|
|
10088
|
+
* Indicates whether the process needs to be restarted.
|
|
10089
|
+
* @type {boolean}
|
|
10090
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
10091
|
+
*/
|
|
10092
|
+
'restartNeeded': boolean;
|
|
10093
|
+
}
|
|
10094
|
+
/**
|
|
10095
|
+
* Configuration details for the \'otel_agent\' process.
|
|
10096
|
+
* @export
|
|
10097
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
10098
|
+
*/
|
|
10099
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024 {
|
|
10100
|
+
/**
|
|
10101
|
+
* Version of the \'otel_agent\' process.
|
|
10102
|
+
* @type {string}
|
|
10103
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
10104
|
+
*/
|
|
10105
|
+
'version': string;
|
|
10106
|
+
/**
|
|
10107
|
+
* Path to the \'otel_agent\' process.
|
|
10108
|
+
* @type {string}
|
|
10109
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
10110
|
+
*/
|
|
10111
|
+
'path': string;
|
|
10112
|
+
/**
|
|
10113
|
+
* A brief description of the \'otel_agent\' process.
|
|
10114
|
+
* @type {string}
|
|
10115
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
10116
|
+
*/
|
|
10117
|
+
'description': string;
|
|
10118
|
+
/**
|
|
10119
|
+
* Indicates whether the process needs to be restarted.
|
|
10120
|
+
* @type {boolean}
|
|
10121
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
10122
|
+
*/
|
|
10123
|
+
'restartNeeded': boolean;
|
|
10124
|
+
}
|
|
10125
|
+
/**
|
|
10126
|
+
* Configuration details for the \'relay\' process.
|
|
10127
|
+
* @export
|
|
10128
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
10129
|
+
*/
|
|
10130
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024 {
|
|
10131
|
+
/**
|
|
10132
|
+
* Version of the \'relay\' process.
|
|
10133
|
+
* @type {string}
|
|
10134
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
10135
|
+
*/
|
|
10136
|
+
'version': string;
|
|
10137
|
+
/**
|
|
10138
|
+
* Path to the \'relay\' process.
|
|
10139
|
+
* @type {string}
|
|
10140
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
10141
|
+
*/
|
|
10142
|
+
'path': string;
|
|
10143
|
+
/**
|
|
10144
|
+
* A brief description of the \'relay\' process.
|
|
10145
|
+
* @type {string}
|
|
10146
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
10147
|
+
*/
|
|
10148
|
+
'description': string;
|
|
10149
|
+
/**
|
|
10150
|
+
* Indicates whether the process needs to be restarted.
|
|
10151
|
+
* @type {boolean}
|
|
10152
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
10153
|
+
*/
|
|
10154
|
+
'restartNeeded': boolean;
|
|
10155
|
+
}
|
|
10156
|
+
/**
|
|
10157
|
+
* Configuration details for the \'toolbox\' process.
|
|
10158
|
+
* @export
|
|
10159
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
10160
|
+
*/
|
|
10161
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024 {
|
|
10162
|
+
/**
|
|
10163
|
+
* Version of the \'toolbox\' process.
|
|
10164
|
+
* @type {string}
|
|
10165
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
10166
|
+
*/
|
|
10167
|
+
'version': string;
|
|
10168
|
+
/**
|
|
10169
|
+
* Path to the \'toolbox\' process.
|
|
10170
|
+
* @type {string}
|
|
10171
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
10172
|
+
*/
|
|
10173
|
+
'path': string;
|
|
10174
|
+
/**
|
|
10175
|
+
* A brief description of the \'toolbox\' process.
|
|
10176
|
+
* @type {string}
|
|
10177
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
10178
|
+
*/
|
|
10179
|
+
'description': string;
|
|
10180
|
+
/**
|
|
10181
|
+
* Indicates whether the process needs to be restarted.
|
|
10182
|
+
* @type {boolean}
|
|
10183
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
10184
|
+
*/
|
|
10185
|
+
'restartNeeded': boolean;
|
|
10186
|
+
}
|
|
10187
|
+
/**
|
|
10188
|
+
* Configuration of the managed processes involved in the upgrade.
|
|
10189
|
+
* @export
|
|
10190
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
10191
|
+
*/
|
|
10192
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024 {
|
|
10193
|
+
/**
|
|
10194
|
+
*
|
|
10195
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024}
|
|
10196
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
10197
|
+
*/
|
|
10198
|
+
'charon'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024;
|
|
10199
|
+
/**
|
|
10200
|
+
*
|
|
10201
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024}
|
|
10202
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
10203
|
+
*/
|
|
10204
|
+
'ccg'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024;
|
|
10205
|
+
/**
|
|
10206
|
+
*
|
|
10207
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024}
|
|
10208
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
10209
|
+
*/
|
|
10210
|
+
'otel_agent'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024;
|
|
10211
|
+
/**
|
|
10212
|
+
*
|
|
10213
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024}
|
|
10214
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
10215
|
+
*/
|
|
10216
|
+
'relay'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024;
|
|
10217
|
+
/**
|
|
10218
|
+
*
|
|
10219
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024}
|
|
10220
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
10221
|
+
*/
|
|
10222
|
+
'toolbox'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024;
|
|
10223
|
+
}
|
|
10224
|
+
/**
|
|
10225
|
+
*
|
|
10226
|
+
* @export
|
|
10227
|
+
* @interface ClusterManualUpgradeJobsInnerV2024
|
|
10228
|
+
*/
|
|
10229
|
+
export interface ClusterManualUpgradeJobsInnerV2024 {
|
|
10230
|
+
/**
|
|
10231
|
+
* Unique identifier for the upgrade job.
|
|
10232
|
+
* @type {string}
|
|
10233
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
10234
|
+
*/
|
|
10235
|
+
'uuid': string;
|
|
10236
|
+
/**
|
|
10237
|
+
* Identifier for the cookbook used in the upgrade job.
|
|
10238
|
+
* @type {string}
|
|
10239
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
10240
|
+
*/
|
|
10241
|
+
'cookbook': string;
|
|
10242
|
+
/**
|
|
10243
|
+
* Current state of the upgrade job.
|
|
10244
|
+
* @type {string}
|
|
10245
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
10246
|
+
*/
|
|
10247
|
+
'state': string;
|
|
10248
|
+
/**
|
|
10249
|
+
* The type of upgrade job (e.g., VA_UPGRADE).
|
|
10250
|
+
* @type {string}
|
|
10251
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
10252
|
+
*/
|
|
10253
|
+
'type': string;
|
|
10254
|
+
/**
|
|
10255
|
+
* Unique identifier of the target for the upgrade job.
|
|
10256
|
+
* @type {string}
|
|
10257
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
10258
|
+
*/
|
|
10259
|
+
'targetId': string;
|
|
10260
|
+
/**
|
|
10261
|
+
*
|
|
10262
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024}
|
|
10263
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
10264
|
+
*/
|
|
10265
|
+
'managedProcessConfiguration': ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024;
|
|
10266
|
+
}
|
|
10267
|
+
/**
|
|
10268
|
+
* Manual Upgrade Job Response
|
|
10269
|
+
* @export
|
|
10270
|
+
* @interface ClusterManualUpgradeV2024
|
|
10271
|
+
*/
|
|
10272
|
+
export interface ClusterManualUpgradeV2024 {
|
|
10273
|
+
/**
|
|
10274
|
+
* List of job objects for the upgrade request.
|
|
10275
|
+
* @type {Array<ClusterManualUpgradeJobsInnerV2024>}
|
|
10276
|
+
* @memberof ClusterManualUpgradeV2024
|
|
10277
|
+
*/
|
|
10278
|
+
'jobs'?: Array<ClusterManualUpgradeJobsInnerV2024>;
|
|
10279
|
+
}
|
|
10026
10280
|
/**
|
|
10027
10281
|
*
|
|
10028
10282
|
* @export
|
|
@@ -12832,6 +13086,142 @@ export interface DeleteVendorConnectorMapping200ResponseV2024 {
|
|
|
12832
13086
|
*/
|
|
12833
13087
|
'count'?: number;
|
|
12834
13088
|
}
|
|
13089
|
+
/**
|
|
13090
|
+
*
|
|
13091
|
+
* @export
|
|
13092
|
+
* @interface DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
13093
|
+
*/
|
|
13094
|
+
export interface DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024 {
|
|
13095
|
+
/**
|
|
13096
|
+
* DTO type
|
|
13097
|
+
* @type {string}
|
|
13098
|
+
* @memberof DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
13099
|
+
*/
|
|
13100
|
+
'type'?: string;
|
|
13101
|
+
/**
|
|
13102
|
+
* ID of the object to which this reference applies
|
|
13103
|
+
* @type {string}
|
|
13104
|
+
* @memberof DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
13105
|
+
*/
|
|
13106
|
+
'id'?: string;
|
|
13107
|
+
/**
|
|
13108
|
+
* Human-readable display name of the object to which this reference applies
|
|
13109
|
+
* @type {string}
|
|
13110
|
+
* @memberof DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
13111
|
+
*/
|
|
13112
|
+
'name'?: string;
|
|
13113
|
+
}
|
|
13114
|
+
/**
|
|
13115
|
+
* The Account Source of the connected Application
|
|
13116
|
+
* @export
|
|
13117
|
+
* @interface DependantAppConnectionsAccountSourceV2024
|
|
13118
|
+
*/
|
|
13119
|
+
export interface DependantAppConnectionsAccountSourceV2024 {
|
|
13120
|
+
/**
|
|
13121
|
+
* Use this Account Source for password management
|
|
13122
|
+
* @type {boolean}
|
|
13123
|
+
* @memberof DependantAppConnectionsAccountSourceV2024
|
|
13124
|
+
*/
|
|
13125
|
+
'useForPasswordManagement'?: boolean;
|
|
13126
|
+
/**
|
|
13127
|
+
* A list of Password Policies for this Account Source
|
|
13128
|
+
* @type {Array<DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024>}
|
|
13129
|
+
* @memberof DependantAppConnectionsAccountSourceV2024
|
|
13130
|
+
*/
|
|
13131
|
+
'passwordPolicies'?: Array<DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024>;
|
|
13132
|
+
}
|
|
13133
|
+
/**
|
|
13134
|
+
*
|
|
13135
|
+
* @export
|
|
13136
|
+
* @interface DependantAppConnectionsV2024
|
|
13137
|
+
*/
|
|
13138
|
+
export interface DependantAppConnectionsV2024 {
|
|
13139
|
+
/**
|
|
13140
|
+
* Id of the connected Application
|
|
13141
|
+
* @type {string}
|
|
13142
|
+
* @memberof DependantAppConnectionsV2024
|
|
13143
|
+
*/
|
|
13144
|
+
'cloudAppId'?: string;
|
|
13145
|
+
/**
|
|
13146
|
+
* Description of the connected Application
|
|
13147
|
+
* @type {string}
|
|
13148
|
+
* @memberof DependantAppConnectionsV2024
|
|
13149
|
+
*/
|
|
13150
|
+
'description'?: string;
|
|
13151
|
+
/**
|
|
13152
|
+
* Is the Application enabled
|
|
13153
|
+
* @type {boolean}
|
|
13154
|
+
* @memberof DependantAppConnectionsV2024
|
|
13155
|
+
*/
|
|
13156
|
+
'enabled'?: boolean;
|
|
13157
|
+
/**
|
|
13158
|
+
* Is Provisioning enabled for connected Application
|
|
13159
|
+
* @type {boolean}
|
|
13160
|
+
* @memberof DependantAppConnectionsV2024
|
|
13161
|
+
*/
|
|
13162
|
+
'provisionRequestEnabled'?: boolean;
|
|
13163
|
+
/**
|
|
13164
|
+
*
|
|
13165
|
+
* @type {DependantAppConnectionsAccountSourceV2024}
|
|
13166
|
+
* @memberof DependantAppConnectionsV2024
|
|
13167
|
+
*/
|
|
13168
|
+
'accountSource'?: DependantAppConnectionsAccountSourceV2024;
|
|
13169
|
+
/**
|
|
13170
|
+
* The amount of launchers for connected Application (long type)
|
|
13171
|
+
* @type {number}
|
|
13172
|
+
* @memberof DependantAppConnectionsV2024
|
|
13173
|
+
*/
|
|
13174
|
+
'launcherCount'?: number;
|
|
13175
|
+
/**
|
|
13176
|
+
* Is Provisioning enabled for connected Application
|
|
13177
|
+
* @type {boolean}
|
|
13178
|
+
* @memberof DependantAppConnectionsV2024
|
|
13179
|
+
*/
|
|
13180
|
+
'matchAllAccount'?: boolean;
|
|
13181
|
+
/**
|
|
13182
|
+
* The owner of the connected Application
|
|
13183
|
+
* @type {Array<BaseReferenceDtoV2024>}
|
|
13184
|
+
* @memberof DependantAppConnectionsV2024
|
|
13185
|
+
*/
|
|
13186
|
+
'owner'?: Array<BaseReferenceDtoV2024>;
|
|
13187
|
+
/**
|
|
13188
|
+
* Is App Center enabled for connected Application
|
|
13189
|
+
* @type {boolean}
|
|
13190
|
+
* @memberof DependantAppConnectionsV2024
|
|
13191
|
+
*/
|
|
13192
|
+
'appCenterEnabled'?: boolean;
|
|
13193
|
+
}
|
|
13194
|
+
/**
|
|
13195
|
+
*
|
|
13196
|
+
* @export
|
|
13197
|
+
* @interface DependantConnectionsMissingDtoV2024
|
|
13198
|
+
*/
|
|
13199
|
+
export interface DependantConnectionsMissingDtoV2024 {
|
|
13200
|
+
/**
|
|
13201
|
+
* The type of dependency type that is missing in the SourceConnections
|
|
13202
|
+
* @type {string}
|
|
13203
|
+
* @memberof DependantConnectionsMissingDtoV2024
|
|
13204
|
+
*/
|
|
13205
|
+
'dependencyType'?: DependantConnectionsMissingDtoV2024DependencyTypeV2024;
|
|
13206
|
+
/**
|
|
13207
|
+
* The reason why this dependency is missing
|
|
13208
|
+
* @type {string}
|
|
13209
|
+
* @memberof DependantConnectionsMissingDtoV2024
|
|
13210
|
+
*/
|
|
13211
|
+
'reason'?: string;
|
|
13212
|
+
}
|
|
13213
|
+
|
|
13214
|
+
export const DependantConnectionsMissingDtoV2024DependencyTypeV2024 = {
|
|
13215
|
+
IdentityProfiles: 'identityProfiles',
|
|
13216
|
+
CredentialProfiles: 'credentialProfiles',
|
|
13217
|
+
MappingProfiles: 'mappingProfiles',
|
|
13218
|
+
SourceAttributes: 'sourceAttributes',
|
|
13219
|
+
DependantCustomTransforms: 'dependantCustomTransforms',
|
|
13220
|
+
DependantApps: 'dependantApps'
|
|
13221
|
+
} as const;
|
|
13222
|
+
|
|
13223
|
+
export type DependantConnectionsMissingDtoV2024DependencyTypeV2024 = typeof DependantConnectionsMissingDtoV2024DependencyTypeV2024[keyof typeof DependantConnectionsMissingDtoV2024DependencyTypeV2024];
|
|
13224
|
+
|
|
12835
13225
|
/**
|
|
12836
13226
|
*
|
|
12837
13227
|
* @export
|
|
@@ -14694,6 +15084,12 @@ export interface EventAttributesV2024 {
|
|
|
14694
15084
|
* @memberof EventAttributesV2024
|
|
14695
15085
|
*/
|
|
14696
15086
|
'attributeToFilter'?: string;
|
|
15087
|
+
/**
|
|
15088
|
+
* Form definition\'s unique identifier.
|
|
15089
|
+
* @type {string}
|
|
15090
|
+
* @memberof EventAttributesV2024
|
|
15091
|
+
*/
|
|
15092
|
+
'formDefinitionId'?: string;
|
|
14697
15093
|
}
|
|
14698
15094
|
/**
|
|
14699
15095
|
*
|
|
@@ -15248,6 +15644,19 @@ export interface ExpansionItemV2024 {
|
|
|
15248
15644
|
*/
|
|
15249
15645
|
'state'?: string;
|
|
15250
15646
|
}
|
|
15647
|
+
/**
|
|
15648
|
+
*
|
|
15649
|
+
* @export
|
|
15650
|
+
* @interface ExportFormDefinitionsByTenant200ResponseInnerSelfV2024
|
|
15651
|
+
*/
|
|
15652
|
+
export interface ExportFormDefinitionsByTenant200ResponseInnerSelfV2024 {
|
|
15653
|
+
/**
|
|
15654
|
+
*
|
|
15655
|
+
* @type {FormDefinitionSelfImportExportDtoV2024}
|
|
15656
|
+
* @memberof ExportFormDefinitionsByTenant200ResponseInnerSelfV2024
|
|
15657
|
+
*/
|
|
15658
|
+
'object'?: FormDefinitionSelfImportExportDtoV2024;
|
|
15659
|
+
}
|
|
15251
15660
|
/**
|
|
15252
15661
|
*
|
|
15253
15662
|
* @export
|
|
@@ -15262,10 +15671,10 @@ export interface ExportFormDefinitionsByTenant200ResponseInnerV2024 {
|
|
|
15262
15671
|
'object'?: FormDefinitionResponseV2024;
|
|
15263
15672
|
/**
|
|
15264
15673
|
*
|
|
15265
|
-
* @type {
|
|
15674
|
+
* @type {ExportFormDefinitionsByTenant200ResponseInnerSelfV2024}
|
|
15266
15675
|
* @memberof ExportFormDefinitionsByTenant200ResponseInnerV2024
|
|
15267
15676
|
*/
|
|
15268
|
-
'self'?:
|
|
15677
|
+
'self'?: ExportFormDefinitionsByTenant200ResponseInnerSelfV2024;
|
|
15269
15678
|
/**
|
|
15270
15679
|
*
|
|
15271
15680
|
* @type {number}
|
|
@@ -16044,6 +16453,38 @@ export interface FormDefinitionResponseV2024 {
|
|
|
16044
16453
|
*/
|
|
16045
16454
|
'modified'?: string;
|
|
16046
16455
|
}
|
|
16456
|
+
/**
|
|
16457
|
+
* Self block for imported/exported object.
|
|
16458
|
+
* @export
|
|
16459
|
+
* @interface FormDefinitionSelfImportExportDtoV2024
|
|
16460
|
+
*/
|
|
16461
|
+
export interface FormDefinitionSelfImportExportDtoV2024 {
|
|
16462
|
+
/**
|
|
16463
|
+
* Imported/exported object\'s DTO type.
|
|
16464
|
+
* @type {string}
|
|
16465
|
+
* @memberof FormDefinitionSelfImportExportDtoV2024
|
|
16466
|
+
*/
|
|
16467
|
+
'type'?: FormDefinitionSelfImportExportDtoV2024TypeV2024;
|
|
16468
|
+
/**
|
|
16469
|
+
* Imported/exported object\'s ID.
|
|
16470
|
+
* @type {string}
|
|
16471
|
+
* @memberof FormDefinitionSelfImportExportDtoV2024
|
|
16472
|
+
*/
|
|
16473
|
+
'id'?: string;
|
|
16474
|
+
/**
|
|
16475
|
+
* Imported/exported object\'s display name.
|
|
16476
|
+
* @type {string}
|
|
16477
|
+
* @memberof FormDefinitionSelfImportExportDtoV2024
|
|
16478
|
+
*/
|
|
16479
|
+
'name'?: string;
|
|
16480
|
+
}
|
|
16481
|
+
|
|
16482
|
+
export const FormDefinitionSelfImportExportDtoV2024TypeV2024 = {
|
|
16483
|
+
FormDefinition: 'FORM_DEFINITION'
|
|
16484
|
+
} as const;
|
|
16485
|
+
|
|
16486
|
+
export type FormDefinitionSelfImportExportDtoV2024TypeV2024 = typeof FormDefinitionSelfImportExportDtoV2024TypeV2024[keyof typeof FormDefinitionSelfImportExportDtoV2024TypeV2024];
|
|
16487
|
+
|
|
16047
16488
|
/**
|
|
16048
16489
|
*
|
|
16049
16490
|
* @export
|
|
@@ -19204,6 +19645,31 @@ export interface IdentityProfileV2024 {
|
|
|
19204
19645
|
*/
|
|
19205
19646
|
'hasTimeBasedAttr'?: boolean;
|
|
19206
19647
|
}
|
|
19648
|
+
/**
|
|
19649
|
+
*
|
|
19650
|
+
* @export
|
|
19651
|
+
* @interface IdentityProfilesConnectionsV2024
|
|
19652
|
+
*/
|
|
19653
|
+
export interface IdentityProfilesConnectionsV2024 {
|
|
19654
|
+
/**
|
|
19655
|
+
* ID of the IdentityProfile this reference applies
|
|
19656
|
+
* @type {string}
|
|
19657
|
+
* @memberof IdentityProfilesConnectionsV2024
|
|
19658
|
+
*/
|
|
19659
|
+
'id'?: string;
|
|
19660
|
+
/**
|
|
19661
|
+
* Human-readable display name of the IdentityProfile to which this reference applies
|
|
19662
|
+
* @type {string}
|
|
19663
|
+
* @memberof IdentityProfilesConnectionsV2024
|
|
19664
|
+
*/
|
|
19665
|
+
'name'?: string;
|
|
19666
|
+
/**
|
|
19667
|
+
* The Number of Identities managed by this IdentityProfile
|
|
19668
|
+
* @type {number}
|
|
19669
|
+
* @memberof IdentityProfilesConnectionsV2024
|
|
19670
|
+
*/
|
|
19671
|
+
'identityCount'?: number;
|
|
19672
|
+
}
|
|
19207
19673
|
/**
|
|
19208
19674
|
* The manager for the identity.
|
|
19209
19675
|
* @export
|
|
@@ -19614,10 +20080,10 @@ export interface ImportFormDefinitions202ResponseV2024 {
|
|
|
19614
20080
|
'errors'?: Array<ImportFormDefinitions202ResponseErrorsInnerV2024>;
|
|
19615
20081
|
/**
|
|
19616
20082
|
*
|
|
19617
|
-
* @type {Array<
|
|
20083
|
+
* @type {Array<ImportFormDefinitionsRequestInnerV2024>}
|
|
19618
20084
|
* @memberof ImportFormDefinitions202ResponseV2024
|
|
19619
20085
|
*/
|
|
19620
|
-
'importedObjects'?: Array<
|
|
20086
|
+
'importedObjects'?: Array<ImportFormDefinitionsRequestInnerV2024>;
|
|
19621
20087
|
/**
|
|
19622
20088
|
*
|
|
19623
20089
|
* @type {Array<ImportFormDefinitions202ResponseErrorsInnerV2024>}
|
|
@@ -19631,6 +20097,31 @@ export interface ImportFormDefinitions202ResponseV2024 {
|
|
|
19631
20097
|
*/
|
|
19632
20098
|
'warnings'?: Array<ImportFormDefinitions202ResponseErrorsInnerV2024>;
|
|
19633
20099
|
}
|
|
20100
|
+
/**
|
|
20101
|
+
*
|
|
20102
|
+
* @export
|
|
20103
|
+
* @interface ImportFormDefinitionsRequestInnerV2024
|
|
20104
|
+
*/
|
|
20105
|
+
export interface ImportFormDefinitionsRequestInnerV2024 {
|
|
20106
|
+
/**
|
|
20107
|
+
*
|
|
20108
|
+
* @type {FormDefinitionResponseV2024}
|
|
20109
|
+
* @memberof ImportFormDefinitionsRequestInnerV2024
|
|
20110
|
+
*/
|
|
20111
|
+
'object'?: FormDefinitionResponseV2024;
|
|
20112
|
+
/**
|
|
20113
|
+
*
|
|
20114
|
+
* @type {string}
|
|
20115
|
+
* @memberof ImportFormDefinitionsRequestInnerV2024
|
|
20116
|
+
*/
|
|
20117
|
+
'self'?: string;
|
|
20118
|
+
/**
|
|
20119
|
+
*
|
|
20120
|
+
* @type {number}
|
|
20121
|
+
* @memberof ImportFormDefinitionsRequestInnerV2024
|
|
20122
|
+
*/
|
|
20123
|
+
'version'?: number;
|
|
20124
|
+
}
|
|
19634
20125
|
/**
|
|
19635
20126
|
*
|
|
19636
20127
|
* @export
|
|
@@ -21891,7 +22382,7 @@ export interface ManagedClusterV2024 {
|
|
|
21891
22382
|
* @type {string}
|
|
21892
22383
|
* @memberof ManagedClusterV2024
|
|
21893
22384
|
*/
|
|
21894
|
-
'status'?:
|
|
22385
|
+
'status'?: ManagedClusterV2024StatusV2024;
|
|
21895
22386
|
/**
|
|
21896
22387
|
* Public key certificate
|
|
21897
22388
|
* @type {string}
|
|
@@ -21948,6 +22439,15 @@ export interface ManagedClusterV2024 {
|
|
|
21948
22439
|
'updatedAt'?: string | null;
|
|
21949
22440
|
}
|
|
21950
22441
|
|
|
22442
|
+
export const ManagedClusterV2024StatusV2024 = {
|
|
22443
|
+
Configuring: 'CONFIGURING',
|
|
22444
|
+
Failed: 'FAILED',
|
|
22445
|
+
NoClients: 'NO_CLIENTS',
|
|
22446
|
+
Normal: 'NORMAL',
|
|
22447
|
+
Warning: 'WARNING'
|
|
22448
|
+
} as const;
|
|
22449
|
+
|
|
22450
|
+
export type ManagedClusterV2024StatusV2024 = typeof ManagedClusterV2024StatusV2024[keyof typeof ManagedClusterV2024StatusV2024];
|
|
21951
22451
|
|
|
21952
22452
|
/**
|
|
21953
22453
|
*
|
|
@@ -27321,11 +27821,73 @@ export interface ReportConfigDTOV2024 {
|
|
|
27321
27821
|
'order'?: number;
|
|
27322
27822
|
}
|
|
27323
27823
|
/**
|
|
27324
|
-
* @type ReportDetailsArgumentsV2024
|
|
27325
27824
|
* The string-object map(dictionary) with the arguments needed for report processing.
|
|
27326
27825
|
* @export
|
|
27826
|
+
* @interface ReportDetailsArgumentsV2024
|
|
27327
27827
|
*/
|
|
27328
|
-
export
|
|
27828
|
+
export interface ReportDetailsArgumentsV2024 {
|
|
27829
|
+
/**
|
|
27830
|
+
* Source ID.
|
|
27831
|
+
* @type {string}
|
|
27832
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27833
|
+
*/
|
|
27834
|
+
'application': string;
|
|
27835
|
+
/**
|
|
27836
|
+
* Source name.
|
|
27837
|
+
* @type {string}
|
|
27838
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27839
|
+
*/
|
|
27840
|
+
'sourceName': string;
|
|
27841
|
+
/**
|
|
27842
|
+
* Flag to specify if only correlated identities are included in report.
|
|
27843
|
+
* @type {boolean}
|
|
27844
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27845
|
+
*/
|
|
27846
|
+
'correlatedOnly': boolean;
|
|
27847
|
+
/**
|
|
27848
|
+
* Source ID.
|
|
27849
|
+
* @type {string}
|
|
27850
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27851
|
+
*/
|
|
27852
|
+
'authoritativeSource': string;
|
|
27853
|
+
/**
|
|
27854
|
+
* Output report file formats. These are formats for calling GET endpoint as query parameter \'fileFormat\'. In case report won\'t have this argument there will be [\'CSV\', \'PDF\'] as default.
|
|
27855
|
+
* @type {Array<string>}
|
|
27856
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27857
|
+
*/
|
|
27858
|
+
'selectedFormats'?: Array<ReportDetailsArgumentsV2024SelectedFormatsV2024>;
|
|
27859
|
+
/**
|
|
27860
|
+
* The names of the Elasticsearch indices in which to search. If none are provided, then all indices will be searched.
|
|
27861
|
+
* @type {Array<IndexV2024>}
|
|
27862
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27863
|
+
*/
|
|
27864
|
+
'indices'?: Array<IndexV2024>;
|
|
27865
|
+
/**
|
|
27866
|
+
* The query using the Elasticsearch [Query String Query](https://www.elastic.co/guide/en/elasticsearch/reference/5.2/query-dsl-query-string-query.html#query-string) syntax from the Query DSL extended by SailPoint to support Nested queries.
|
|
27867
|
+
* @type {string}
|
|
27868
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27869
|
+
*/
|
|
27870
|
+
'query': string;
|
|
27871
|
+
/**
|
|
27872
|
+
* Comma separated string consisting of technical attribute names of fields to include in report. Use `access.spread`, `apps.spread`, `accounts.spread` to include respective identity access details. Use `accessProfiles.spread` to unclude access profile details. Use `entitlements.spread` to include entitlement details.
|
|
27873
|
+
* @type {string}
|
|
27874
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27875
|
+
*/
|
|
27876
|
+
'columns'?: string;
|
|
27877
|
+
/**
|
|
27878
|
+
* The fields to be used to sort the search results. Use + or - to specify the sort direction.
|
|
27879
|
+
* @type {Array<string>}
|
|
27880
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27881
|
+
*/
|
|
27882
|
+
'sort'?: Array<string>;
|
|
27883
|
+
}
|
|
27884
|
+
|
|
27885
|
+
export const ReportDetailsArgumentsV2024SelectedFormatsV2024 = {
|
|
27886
|
+
Csv: 'CSV',
|
|
27887
|
+
Pdf: 'PDF'
|
|
27888
|
+
} as const;
|
|
27889
|
+
|
|
27890
|
+
export type ReportDetailsArgumentsV2024SelectedFormatsV2024 = typeof ReportDetailsArgumentsV2024SelectedFormatsV2024[keyof typeof ReportDetailsArgumentsV2024SelectedFormatsV2024];
|
|
27329
27891
|
|
|
27330
27892
|
/**
|
|
27331
27893
|
* Details about report to be processed.
|
|
@@ -27630,7 +28192,7 @@ export type RequestableObjectRequestStatusV2024 = typeof RequestableObjectReques
|
|
|
27630
28192
|
|
|
27631
28193
|
|
|
27632
28194
|
/**
|
|
27633
|
-
*
|
|
28195
|
+
* Currently supported requestable object types.
|
|
27634
28196
|
* @export
|
|
27635
28197
|
* @enum {string}
|
|
27636
28198
|
*/
|
|
@@ -32323,6 +32885,12 @@ export interface ScheduledAttributesV2024 {
|
|
|
32323
32885
|
* @memberof ScheduledAttributesV2024
|
|
32324
32886
|
*/
|
|
32325
32887
|
'weeklyTimes'?: Array<string>;
|
|
32888
|
+
/**
|
|
32889
|
+
* Scheduled execution times
|
|
32890
|
+
* @type {Array<string>}
|
|
32891
|
+
* @memberof ScheduledAttributesV2024
|
|
32892
|
+
*/
|
|
32893
|
+
'yearlyTimes'?: Array<string>;
|
|
32326
32894
|
}
|
|
32327
32895
|
|
|
32328
32896
|
export const ScheduledAttributesV2024FrequencyV2024 = {
|
|
@@ -35244,6 +35812,55 @@ export interface SourceCodeV2024 {
|
|
|
35244
35812
|
*/
|
|
35245
35813
|
'script': string;
|
|
35246
35814
|
}
|
|
35815
|
+
/**
|
|
35816
|
+
*
|
|
35817
|
+
* @export
|
|
35818
|
+
* @interface SourceConnectionsDtoV2024
|
|
35819
|
+
*/
|
|
35820
|
+
export interface SourceConnectionsDtoV2024 {
|
|
35821
|
+
/**
|
|
35822
|
+
* The IdentityProfile attached to this source
|
|
35823
|
+
* @type {Array<IdentityProfilesConnectionsV2024>}
|
|
35824
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35825
|
+
*/
|
|
35826
|
+
'identityProfiles'?: Array<IdentityProfilesConnectionsV2024>;
|
|
35827
|
+
/**
|
|
35828
|
+
* Name of the CredentialProfile attached to this source
|
|
35829
|
+
* @type {Array<string>}
|
|
35830
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35831
|
+
*/
|
|
35832
|
+
'credentialProfiles'?: Array<string>;
|
|
35833
|
+
/**
|
|
35834
|
+
* The attributes attached to this source
|
|
35835
|
+
* @type {Array<string>}
|
|
35836
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35837
|
+
*/
|
|
35838
|
+
'sourceAttributes'?: Array<string>;
|
|
35839
|
+
/**
|
|
35840
|
+
* The profiles attached to this source
|
|
35841
|
+
* @type {Array<string>}
|
|
35842
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35843
|
+
*/
|
|
35844
|
+
'mappingProfiles'?: Array<string>;
|
|
35845
|
+
/**
|
|
35846
|
+
* A list of custom transforms associated with this source. A transform will be considered associated with a source if any attributes of the transform specify the source as the sourceName.
|
|
35847
|
+
* @type {Array<TransformReadV2024>}
|
|
35848
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35849
|
+
*/
|
|
35850
|
+
'dependentCustomTransforms'?: Array<TransformReadV2024>;
|
|
35851
|
+
/**
|
|
35852
|
+
*
|
|
35853
|
+
* @type {Array<DependantAppConnectionsV2024>}
|
|
35854
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35855
|
+
*/
|
|
35856
|
+
'dependentApps'?: Array<DependantAppConnectionsV2024>;
|
|
35857
|
+
/**
|
|
35858
|
+
*
|
|
35859
|
+
* @type {Array<DependantConnectionsMissingDtoV2024>}
|
|
35860
|
+
* @memberof SourceConnectionsDtoV2024
|
|
35861
|
+
*/
|
|
35862
|
+
'missingDependents'?: Array<DependantConnectionsMissingDtoV2024>;
|
|
35863
|
+
}
|
|
35247
35864
|
/**
|
|
35248
35865
|
* Identity who created the source.
|
|
35249
35866
|
* @export
|
|
@@ -37215,7 +37832,7 @@ export interface TaskDefinitionSummaryV2024 {
|
|
|
37215
37832
|
* @type {string}
|
|
37216
37833
|
* @memberof TaskDefinitionSummaryV2024
|
|
37217
37834
|
*/
|
|
37218
|
-
'description': string;
|
|
37835
|
+
'description': string | null;
|
|
37219
37836
|
/**
|
|
37220
37837
|
* Name of the parent of the TaskDefinition
|
|
37221
37838
|
* @type {string}
|
|
@@ -37320,7 +37937,7 @@ export interface TaskResultDetailsV2024 {
|
|
|
37320
37937
|
'id'?: string;
|
|
37321
37938
|
/**
|
|
37322
37939
|
* Use this property to define what report should be processed in the RDE service.
|
|
37323
|
-
* @type {
|
|
37940
|
+
* @type {string}
|
|
37324
37941
|
* @memberof TaskResultDetailsV2024
|
|
37325
37942
|
*/
|
|
37326
37943
|
'reportType'?: TaskResultDetailsV2024ReportTypeV2024;
|
|
@@ -37380,10 +37997,10 @@ export interface TaskResultDetailsV2024 {
|
|
|
37380
37997
|
'returns'?: Array<TaskResultDetailsReturnsInnerV2024>;
|
|
37381
37998
|
/**
|
|
37382
37999
|
* Extra attributes map(dictionary) needed for the report.
|
|
37383
|
-
* @type {
|
|
38000
|
+
* @type {object}
|
|
37384
38001
|
* @memberof TaskResultDetailsV2024
|
|
37385
38002
|
*/
|
|
37386
|
-
'attributes'?:
|
|
38003
|
+
'attributes'?: object;
|
|
37387
38004
|
/**
|
|
37388
38005
|
* Current report state.
|
|
37389
38006
|
* @type {string}
|
|
@@ -40632,6 +41249,12 @@ export interface WorkflowTriggerAttributesV2024 {
|
|
|
40632
41249
|
* @memberof WorkflowTriggerAttributesV2024
|
|
40633
41250
|
*/
|
|
40634
41251
|
'attributeToFilter'?: string;
|
|
41252
|
+
/**
|
|
41253
|
+
* Form definition\'s unique identifier.
|
|
41254
|
+
* @type {string}
|
|
41255
|
+
* @memberof WorkflowTriggerAttributesV2024
|
|
41256
|
+
*/
|
|
41257
|
+
'formDefinitionId'?: string;
|
|
40635
41258
|
/**
|
|
40636
41259
|
* A unique name for the external trigger
|
|
40637
41260
|
* @type {string}
|
|
@@ -40680,6 +41303,12 @@ export interface WorkflowTriggerAttributesV2024 {
|
|
|
40680
41303
|
* @memberof WorkflowTriggerAttributesV2024
|
|
40681
41304
|
*/
|
|
40682
41305
|
'weeklyTimes'?: Array<string>;
|
|
41306
|
+
/**
|
|
41307
|
+
* Scheduled execution times
|
|
41308
|
+
* @type {Array<string>}
|
|
41309
|
+
* @memberof WorkflowTriggerAttributesV2024
|
|
41310
|
+
*/
|
|
41311
|
+
'yearlyTimes'?: Array<string>;
|
|
40683
41312
|
}
|
|
40684
41313
|
|
|
40685
41314
|
export const WorkflowTriggerAttributesV2024FrequencyV2024 = {
|
|
@@ -41546,7 +42175,7 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
41546
42175
|
export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
41547
42176
|
return {
|
|
41548
42177
|
/**
|
|
41549
|
-
*
|
|
42178
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
41550
42179
|
* @summary Create Access Profile
|
|
41551
42180
|
* @param {AccessProfileV2024} accessProfileV2024
|
|
41552
42181
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41805,16 +42434,16 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
41805
42434
|
};
|
|
41806
42435
|
},
|
|
41807
42436
|
/**
|
|
41808
|
-
*
|
|
42437
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
41809
42438
|
* @summary List Access Profiles
|
|
41810
|
-
* @param {string} [forSubadmin]
|
|
41811
|
-
* @param {number} [limit]
|
|
42439
|
+
* @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
42440
|
+
* @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.
|
|
41812
42441
|
* @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.
|
|
41813
42442
|
* @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.
|
|
41814
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in*
|
|
42443
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Supported composite operators are *and, or* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
41815
42444
|
* @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**
|
|
41816
|
-
* @param {string} [forSegmentIds]
|
|
41817
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
42445
|
+
* @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
42446
|
+
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
41818
42447
|
* @param {*} [axiosOptions] Override http request option.
|
|
41819
42448
|
* @throws {RequiredError}
|
|
41820
42449
|
*/
|
|
@@ -42001,7 +42630,7 @@ export const AccessProfilesV2024ApiFp = function(configuration?: Configuration)
|
|
|
42001
42630
|
const localVarAxiosParamCreator = AccessProfilesV2024ApiAxiosParamCreator(configuration)
|
|
42002
42631
|
return {
|
|
42003
42632
|
/**
|
|
42004
|
-
*
|
|
42633
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
42005
42634
|
* @summary Create Access Profile
|
|
42006
42635
|
* @param {AccessProfileV2024} accessProfileV2024
|
|
42007
42636
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42071,16 +42700,16 @@ export const AccessProfilesV2024ApiFp = function(configuration?: Configuration)
|
|
|
42071
42700
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
42072
42701
|
},
|
|
42073
42702
|
/**
|
|
42074
|
-
*
|
|
42703
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
42075
42704
|
* @summary List Access Profiles
|
|
42076
|
-
* @param {string} [forSubadmin]
|
|
42077
|
-
* @param {number} [limit]
|
|
42705
|
+
* @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
42706
|
+
* @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.
|
|
42078
42707
|
* @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.
|
|
42079
42708
|
* @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.
|
|
42080
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in*
|
|
42709
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Supported composite operators are *and, or* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
42081
42710
|
* @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**
|
|
42082
|
-
* @param {string} [forSegmentIds]
|
|
42083
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
42711
|
+
* @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
42712
|
+
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
42084
42713
|
* @param {*} [axiosOptions] Override http request option.
|
|
42085
42714
|
* @throws {RequiredError}
|
|
42086
42715
|
*/
|
|
@@ -42129,7 +42758,7 @@ export const AccessProfilesV2024ApiFactory = function (configuration?: Configura
|
|
|
42129
42758
|
const localVarFp = AccessProfilesV2024ApiFp(configuration)
|
|
42130
42759
|
return {
|
|
42131
42760
|
/**
|
|
42132
|
-
*
|
|
42761
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
42133
42762
|
* @summary Create Access Profile
|
|
42134
42763
|
* @param {AccessProfilesV2024ApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
42135
42764
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42179,7 +42808,7 @@ export const AccessProfilesV2024ApiFactory = function (configuration?: Configura
|
|
|
42179
42808
|
return localVarFp.getAccessProfileEntitlements(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
42180
42809
|
},
|
|
42181
42810
|
/**
|
|
42182
|
-
*
|
|
42811
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
42183
42812
|
* @summary List Access Profiles
|
|
42184
42813
|
* @param {AccessProfilesV2024ApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
42185
42814
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42323,14 +42952,14 @@ export interface AccessProfilesV2024ApiGetAccessProfileEntitlementsRequest {
|
|
|
42323
42952
|
*/
|
|
42324
42953
|
export interface AccessProfilesV2024ApiListAccessProfilesRequest {
|
|
42325
42954
|
/**
|
|
42326
|
-
*
|
|
42955
|
+
* Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
42327
42956
|
* @type {string}
|
|
42328
42957
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
42329
42958
|
*/
|
|
42330
42959
|
readonly forSubadmin?: string
|
|
42331
42960
|
|
|
42332
42961
|
/**
|
|
42333
|
-
*
|
|
42962
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
42334
42963
|
* @type {number}
|
|
42335
42964
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
42336
42965
|
*/
|
|
@@ -42351,7 +42980,7 @@ export interface AccessProfilesV2024ApiListAccessProfilesRequest {
|
|
|
42351
42980
|
readonly count?: boolean
|
|
42352
42981
|
|
|
42353
42982
|
/**
|
|
42354
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in*
|
|
42983
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Supported composite operators are *and, or* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
42355
42984
|
* @type {string}
|
|
42356
42985
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
42357
42986
|
*/
|
|
@@ -42365,14 +42994,14 @@ export interface AccessProfilesV2024ApiListAccessProfilesRequest {
|
|
|
42365
42994
|
readonly sorters?: string
|
|
42366
42995
|
|
|
42367
42996
|
/**
|
|
42368
|
-
*
|
|
42997
|
+
* Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
42369
42998
|
* @type {string}
|
|
42370
42999
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
42371
43000
|
*/
|
|
42372
43001
|
readonly forSegmentIds?: string
|
|
42373
43002
|
|
|
42374
43003
|
/**
|
|
42375
|
-
* Indicates whether the response list should contain unsegmented access profiles. If
|
|
43004
|
+
* Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
42376
43005
|
* @type {boolean}
|
|
42377
43006
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
42378
43007
|
*/
|
|
@@ -42429,7 +43058,7 @@ export interface AccessProfilesV2024ApiUpdateAccessProfilesInBulkRequest {
|
|
|
42429
43058
|
*/
|
|
42430
43059
|
export class AccessProfilesV2024Api extends BaseAPI {
|
|
42431
43060
|
/**
|
|
42432
|
-
*
|
|
43061
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
42433
43062
|
* @summary Create Access Profile
|
|
42434
43063
|
* @param {AccessProfilesV2024ApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
42435
43064
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42489,7 +43118,7 @@ export class AccessProfilesV2024Api extends BaseAPI {
|
|
|
42489
43118
|
}
|
|
42490
43119
|
|
|
42491
43120
|
/**
|
|
42492
|
-
*
|
|
43121
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
42493
43122
|
* @summary List Access Profiles
|
|
42494
43123
|
* @param {AccessProfilesV2024ApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
42495
43124
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60081,11 +60710,11 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
60081
60710
|
*
|
|
60082
60711
|
* @summary Import form definitions from export.
|
|
60083
60712
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60084
|
-
* @param {Array<
|
|
60713
|
+
* @param {Array<ImportFormDefinitionsRequestInnerV2024>} [body] Body is the request payload to import form definitions
|
|
60085
60714
|
* @param {*} [axiosOptions] Override http request option.
|
|
60086
60715
|
* @throws {RequiredError}
|
|
60087
60716
|
*/
|
|
60088
|
-
importFormDefinitions: async (xSailPointExperimental?: string, body?: Array<
|
|
60717
|
+
importFormDefinitions: async (xSailPointExperimental?: string, body?: Array<ImportFormDefinitionsRequestInnerV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60089
60718
|
if (xSailPointExperimental === undefined) {
|
|
60090
60719
|
xSailPointExperimental = 'true';
|
|
60091
60720
|
}
|
|
@@ -60695,11 +61324,11 @@ export const CustomFormsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
60695
61324
|
*
|
|
60696
61325
|
* @summary Import form definitions from export.
|
|
60697
61326
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60698
|
-
* @param {Array<
|
|
61327
|
+
* @param {Array<ImportFormDefinitionsRequestInnerV2024>} [body] Body is the request payload to import form definitions
|
|
60699
61328
|
* @param {*} [axiosOptions] Override http request option.
|
|
60700
61329
|
* @throws {RequiredError}
|
|
60701
61330
|
*/
|
|
60702
|
-
async importFormDefinitions(xSailPointExperimental?: string, body?: Array<
|
|
61331
|
+
async importFormDefinitions(xSailPointExperimental?: string, body?: Array<ImportFormDefinitionsRequestInnerV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportFormDefinitions202ResponseV2024>> {
|
|
60703
61332
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importFormDefinitions(xSailPointExperimental, body, axiosOptions);
|
|
60704
61333
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
60705
61334
|
const localVarOperationServerBasePath = operationServerMap['CustomFormsV2024Api.importFormDefinitions']?.[localVarOperationServerIndex]?.url;
|
|
@@ -61274,10 +61903,10 @@ export interface CustomFormsV2024ApiImportFormDefinitionsRequest {
|
|
|
61274
61903
|
|
|
61275
61904
|
/**
|
|
61276
61905
|
* Body is the request payload to import form definitions
|
|
61277
|
-
* @type {Array<
|
|
61906
|
+
* @type {Array<ImportFormDefinitionsRequestInnerV2024>}
|
|
61278
61907
|
* @memberof CustomFormsV2024ApiImportFormDefinitions
|
|
61279
61908
|
*/
|
|
61280
|
-
readonly body?: Array<
|
|
61909
|
+
readonly body?: Array<ImportFormDefinitionsRequestInnerV2024>
|
|
61281
61910
|
}
|
|
61282
61911
|
|
|
61283
61912
|
/**
|
|
@@ -67569,7 +68198,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67569
68198
|
return {
|
|
67570
68199
|
/**
|
|
67571
68200
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
67572
|
-
* @summary
|
|
68201
|
+
* @summary Ignore Access Request Recommendation
|
|
67573
68202
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item to ignore for an identity.
|
|
67574
68203
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67575
68204
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67596,11 +68225,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67596
68225
|
|
|
67597
68226
|
// authentication userAuth required
|
|
67598
68227
|
// oauth required
|
|
67599
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68228
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67600
68229
|
|
|
67601
68230
|
// authentication userAuth required
|
|
67602
68231
|
// oauth required
|
|
67603
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68232
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67604
68233
|
|
|
67605
68234
|
|
|
67606
68235
|
|
|
@@ -67621,7 +68250,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67621
68250
|
},
|
|
67622
68251
|
/**
|
|
67623
68252
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
67624
|
-
* @summary
|
|
68253
|
+
* @summary Accept Access Request Recommendation
|
|
67625
68254
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item that was requested for an identity.
|
|
67626
68255
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67627
68256
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67648,11 +68277,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67648
68277
|
|
|
67649
68278
|
// authentication userAuth required
|
|
67650
68279
|
// oauth required
|
|
67651
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68280
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67652
68281
|
|
|
67653
68282
|
// authentication userAuth required
|
|
67654
68283
|
// oauth required
|
|
67655
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68284
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67656
68285
|
|
|
67657
68286
|
|
|
67658
68287
|
|
|
@@ -67673,7 +68302,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67673
68302
|
},
|
|
67674
68303
|
/**
|
|
67675
68304
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
67676
|
-
* @summary
|
|
68305
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
67677
68306
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access that was viewed for an identity.
|
|
67678
68307
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67679
68308
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67700,11 +68329,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67700
68329
|
|
|
67701
68330
|
// authentication userAuth required
|
|
67702
68331
|
// oauth required
|
|
67703
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68332
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67704
68333
|
|
|
67705
68334
|
// authentication userAuth required
|
|
67706
68335
|
// oauth required
|
|
67707
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68336
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67708
68337
|
|
|
67709
68338
|
|
|
67710
68339
|
|
|
@@ -67725,7 +68354,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67725
68354
|
},
|
|
67726
68355
|
/**
|
|
67727
68356
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
67728
|
-
* @summary
|
|
68357
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
67729
68358
|
* @param {Array<AccessRequestRecommendationActionItemDtoV2024>} accessRequestRecommendationActionItemDtoV2024 The recommended access items that were viewed for an identity.
|
|
67730
68359
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67731
68360
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67752,11 +68381,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67752
68381
|
|
|
67753
68382
|
// authentication userAuth required
|
|
67754
68383
|
// oauth required
|
|
67755
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68384
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67756
68385
|
|
|
67757
68386
|
// authentication userAuth required
|
|
67758
68387
|
// oauth required
|
|
67759
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68388
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67760
68389
|
|
|
67761
68390
|
|
|
67762
68391
|
|
|
@@ -67808,11 +68437,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67808
68437
|
|
|
67809
68438
|
// authentication userAuth required
|
|
67810
68439
|
// oauth required
|
|
67811
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68440
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67812
68441
|
|
|
67813
68442
|
// authentication userAuth required
|
|
67814
68443
|
// oauth required
|
|
67815
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68444
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67816
68445
|
|
|
67817
68446
|
if (identityId !== undefined) {
|
|
67818
68447
|
localVarQueryParameter['identity-id'] = identityId;
|
|
@@ -67904,7 +68533,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67904
68533
|
},
|
|
67905
68534
|
/**
|
|
67906
68535
|
* This API returns the list of ignored access request recommendations.
|
|
67907
|
-
* @summary List
|
|
68536
|
+
* @summary List Ignored Access Request Recommendations
|
|
67908
68537
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67909
68538
|
* @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.
|
|
67910
68539
|
* @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.
|
|
@@ -67935,11 +68564,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67935
68564
|
|
|
67936
68565
|
// authentication userAuth required
|
|
67937
68566
|
// oauth required
|
|
67938
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68567
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67939
68568
|
|
|
67940
68569
|
// authentication userAuth required
|
|
67941
68570
|
// oauth required
|
|
67942
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68571
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
67943
68572
|
|
|
67944
68573
|
if (limit !== undefined) {
|
|
67945
68574
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -67977,7 +68606,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
67977
68606
|
},
|
|
67978
68607
|
/**
|
|
67979
68608
|
* This API returns a list of requested access request recommendations.
|
|
67980
|
-
* @summary List
|
|
68609
|
+
* @summary List Accepted Access Request Recommendations
|
|
67981
68610
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67982
68611
|
* @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.
|
|
67983
68612
|
* @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.
|
|
@@ -68008,11 +68637,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
68008
68637
|
|
|
68009
68638
|
// authentication userAuth required
|
|
68010
68639
|
// oauth required
|
|
68011
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68640
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
68012
68641
|
|
|
68013
68642
|
// authentication userAuth required
|
|
68014
68643
|
// oauth required
|
|
68015
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68644
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
68016
68645
|
|
|
68017
68646
|
if (limit !== undefined) {
|
|
68018
68647
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -68050,7 +68679,7 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
68050
68679
|
},
|
|
68051
68680
|
/**
|
|
68052
68681
|
* This API returns the list of viewed access request recommendations.
|
|
68053
|
-
* @summary List
|
|
68682
|
+
* @summary List Viewed Access Request Recommendations
|
|
68054
68683
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
68055
68684
|
* @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.
|
|
68056
68685
|
* @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.
|
|
@@ -68081,11 +68710,11 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
68081
68710
|
|
|
68082
68711
|
// authentication userAuth required
|
|
68083
68712
|
// oauth required
|
|
68084
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68713
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
68085
68714
|
|
|
68086
68715
|
// authentication userAuth required
|
|
68087
68716
|
// oauth required
|
|
68088
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
68717
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
68089
68718
|
|
|
68090
68719
|
if (limit !== undefined) {
|
|
68091
68720
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -68187,7 +68816,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68187
68816
|
return {
|
|
68188
68817
|
/**
|
|
68189
68818
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
68190
|
-
* @summary
|
|
68819
|
+
* @summary Ignore Access Request Recommendation
|
|
68191
68820
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item to ignore for an identity.
|
|
68192
68821
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68193
68822
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -68201,7 +68830,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68201
68830
|
},
|
|
68202
68831
|
/**
|
|
68203
68832
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
68204
|
-
* @summary
|
|
68833
|
+
* @summary Accept Access Request Recommendation
|
|
68205
68834
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item that was requested for an identity.
|
|
68206
68835
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68207
68836
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -68215,7 +68844,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68215
68844
|
},
|
|
68216
68845
|
/**
|
|
68217
68846
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
68218
|
-
* @summary
|
|
68847
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
68219
68848
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access that was viewed for an identity.
|
|
68220
68849
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68221
68850
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -68229,7 +68858,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68229
68858
|
},
|
|
68230
68859
|
/**
|
|
68231
68860
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
68232
|
-
* @summary
|
|
68861
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
68233
68862
|
* @param {Array<AccessRequestRecommendationActionItemDtoV2024>} accessRequestRecommendationActionItemDtoV2024 The recommended access items that were viewed for an identity.
|
|
68234
68863
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68235
68864
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -68276,7 +68905,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68276
68905
|
},
|
|
68277
68906
|
/**
|
|
68278
68907
|
* This API returns the list of ignored access request recommendations.
|
|
68279
|
-
* @summary List
|
|
68908
|
+
* @summary List Ignored Access Request Recommendations
|
|
68280
68909
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
68281
68910
|
* @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.
|
|
68282
68911
|
* @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.
|
|
@@ -68294,7 +68923,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68294
68923
|
},
|
|
68295
68924
|
/**
|
|
68296
68925
|
* This API returns a list of requested access request recommendations.
|
|
68297
|
-
* @summary List
|
|
68926
|
+
* @summary List Accepted Access Request Recommendations
|
|
68298
68927
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
68299
68928
|
* @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.
|
|
68300
68929
|
* @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.
|
|
@@ -68312,7 +68941,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
68312
68941
|
},
|
|
68313
68942
|
/**
|
|
68314
68943
|
* This API returns the list of viewed access request recommendations.
|
|
68315
|
-
* @summary List
|
|
68944
|
+
* @summary List Viewed Access Request Recommendations
|
|
68316
68945
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
68317
68946
|
* @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.
|
|
68318
68947
|
* @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.
|
|
@@ -68354,7 +68983,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68354
68983
|
return {
|
|
68355
68984
|
/**
|
|
68356
68985
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
68357
|
-
* @summary
|
|
68986
|
+
* @summary Ignore Access Request Recommendation
|
|
68358
68987
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
68359
68988
|
* @param {*} [axiosOptions] Override http request option.
|
|
68360
68989
|
* @throws {RequiredError}
|
|
@@ -68364,7 +68993,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68364
68993
|
},
|
|
68365
68994
|
/**
|
|
68366
68995
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
68367
|
-
* @summary
|
|
68996
|
+
* @summary Accept Access Request Recommendation
|
|
68368
68997
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
68369
68998
|
* @param {*} [axiosOptions] Override http request option.
|
|
68370
68999
|
* @throws {RequiredError}
|
|
@@ -68374,7 +69003,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68374
69003
|
},
|
|
68375
69004
|
/**
|
|
68376
69005
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
68377
|
-
* @summary
|
|
69006
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
68378
69007
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
68379
69008
|
* @param {*} [axiosOptions] Override http request option.
|
|
68380
69009
|
* @throws {RequiredError}
|
|
@@ -68384,7 +69013,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68384
69013
|
},
|
|
68385
69014
|
/**
|
|
68386
69015
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
68387
|
-
* @summary
|
|
69016
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
68388
69017
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
68389
69018
|
* @param {*} [axiosOptions] Override http request option.
|
|
68390
69019
|
* @throws {RequiredError}
|
|
@@ -68414,7 +69043,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68414
69043
|
},
|
|
68415
69044
|
/**
|
|
68416
69045
|
* This API returns the list of ignored access request recommendations.
|
|
68417
|
-
* @summary List
|
|
69046
|
+
* @summary List Ignored Access Request Recommendations
|
|
68418
69047
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
68419
69048
|
* @param {*} [axiosOptions] Override http request option.
|
|
68420
69049
|
* @throws {RequiredError}
|
|
@@ -68424,7 +69053,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68424
69053
|
},
|
|
68425
69054
|
/**
|
|
68426
69055
|
* This API returns a list of requested access request recommendations.
|
|
68427
|
-
* @summary List
|
|
69056
|
+
* @summary List Accepted Access Request Recommendations
|
|
68428
69057
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
68429
69058
|
* @param {*} [axiosOptions] Override http request option.
|
|
68430
69059
|
* @throws {RequiredError}
|
|
@@ -68434,7 +69063,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
68434
69063
|
},
|
|
68435
69064
|
/**
|
|
68436
69065
|
* This API returns the list of viewed access request recommendations.
|
|
68437
|
-
* @summary List
|
|
69066
|
+
* @summary List Viewed Access Request Recommendations
|
|
68438
69067
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
68439
69068
|
* @param {*} [axiosOptions] Override http request option.
|
|
68440
69069
|
* @throws {RequiredError}
|
|
@@ -68793,7 +69422,7 @@ export interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommen
|
|
|
68793
69422
|
export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
68794
69423
|
/**
|
|
68795
69424
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
68796
|
-
* @summary
|
|
69425
|
+
* @summary Ignore Access Request Recommendation
|
|
68797
69426
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
68798
69427
|
* @param {*} [axiosOptions] Override http request option.
|
|
68799
69428
|
* @throws {RequiredError}
|
|
@@ -68805,7 +69434,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
68805
69434
|
|
|
68806
69435
|
/**
|
|
68807
69436
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
68808
|
-
* @summary
|
|
69437
|
+
* @summary Accept Access Request Recommendation
|
|
68809
69438
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
68810
69439
|
* @param {*} [axiosOptions] Override http request option.
|
|
68811
69440
|
* @throws {RequiredError}
|
|
@@ -68817,7 +69446,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
68817
69446
|
|
|
68818
69447
|
/**
|
|
68819
69448
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
68820
|
-
* @summary
|
|
69449
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
68821
69450
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
68822
69451
|
* @param {*} [axiosOptions] Override http request option.
|
|
68823
69452
|
* @throws {RequiredError}
|
|
@@ -68829,7 +69458,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
68829
69458
|
|
|
68830
69459
|
/**
|
|
68831
69460
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
68832
|
-
* @summary
|
|
69461
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
68833
69462
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
68834
69463
|
* @param {*} [axiosOptions] Override http request option.
|
|
68835
69464
|
* @throws {RequiredError}
|
|
@@ -68865,7 +69494,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
68865
69494
|
|
|
68866
69495
|
/**
|
|
68867
69496
|
* This API returns the list of ignored access request recommendations.
|
|
68868
|
-
* @summary List
|
|
69497
|
+
* @summary List Ignored Access Request Recommendations
|
|
68869
69498
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
68870
69499
|
* @param {*} [axiosOptions] Override http request option.
|
|
68871
69500
|
* @throws {RequiredError}
|
|
@@ -68877,7 +69506,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
68877
69506
|
|
|
68878
69507
|
/**
|
|
68879
69508
|
* This API returns a list of requested access request recommendations.
|
|
68880
|
-
* @summary List
|
|
69509
|
+
* @summary List Accepted Access Request Recommendations
|
|
68881
69510
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
68882
69511
|
* @param {*} [axiosOptions] Override http request option.
|
|
68883
69512
|
* @throws {RequiredError}
|
|
@@ -68889,7 +69518,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
68889
69518
|
|
|
68890
69519
|
/**
|
|
68891
69520
|
* This API returns the list of viewed access request recommendations.
|
|
68892
|
-
* @summary List
|
|
69521
|
+
* @summary List Viewed Access Request Recommendations
|
|
68893
69522
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
68894
69523
|
* @param {*} [axiosOptions] Override http request option.
|
|
68895
69524
|
* @throws {RequiredError}
|
|
@@ -70886,7 +71515,7 @@ export const IAIRecommendationsV2024ApiAxiosParamCreator = function (configurati
|
|
|
70886
71515
|
return {
|
|
70887
71516
|
/**
|
|
70888
71517
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
70889
|
-
* @summary Returns
|
|
71518
|
+
* @summary Returns Recommendation Based on Object
|
|
70890
71519
|
* @param {RecommendationRequestDtoV2024} recommendationRequestDtoV2024
|
|
70891
71520
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70892
71521
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -71048,7 +71677,7 @@ export const IAIRecommendationsV2024ApiFp = function(configuration?: Configurati
|
|
|
71048
71677
|
return {
|
|
71049
71678
|
/**
|
|
71050
71679
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
71051
|
-
* @summary Returns
|
|
71680
|
+
* @summary Returns Recommendation Based on Object
|
|
71052
71681
|
* @param {RecommendationRequestDtoV2024} recommendationRequestDtoV2024
|
|
71053
71682
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71054
71683
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -71099,7 +71728,7 @@ export const IAIRecommendationsV2024ApiFactory = function (configuration?: Confi
|
|
|
71099
71728
|
return {
|
|
71100
71729
|
/**
|
|
71101
71730
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
71102
|
-
* @summary Returns
|
|
71731
|
+
* @summary Returns Recommendation Based on Object
|
|
71103
71732
|
* @param {IAIRecommendationsV2024ApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
71104
71733
|
* @param {*} [axiosOptions] Override http request option.
|
|
71105
71734
|
* @throws {RequiredError}
|
|
@@ -71195,7 +71824,7 @@ export interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest {
|
|
|
71195
71824
|
export class IAIRecommendationsV2024Api extends BaseAPI {
|
|
71196
71825
|
/**
|
|
71197
71826
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
71198
|
-
* @summary Returns
|
|
71827
|
+
* @summary Returns Recommendation Based on Object
|
|
71199
71828
|
* @param {IAIRecommendationsV2024ApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
71200
71829
|
* @param {*} [axiosOptions] Override http request option.
|
|
71201
71830
|
* @throws {RequiredError}
|
|
@@ -81683,7 +82312,7 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
81683
82312
|
* @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.
|
|
81684
82313
|
* @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.
|
|
81685
82314
|
* @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.
|
|
81686
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **identity
|
|
82315
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
|
|
81687
82316
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
|
|
81688
82317
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81689
82318
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -81753,7 +82382,7 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
81753
82382
|
* @summary Update a Machine Account
|
|
81754
82383
|
* @param {string} id Machine Account ID.
|
|
81755
82384
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81756
|
-
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
82385
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
81757
82386
|
* @param {*} [axiosOptions] Override http request option.
|
|
81758
82387
|
* @throws {RequiredError}
|
|
81759
82388
|
*/
|
|
@@ -81836,7 +82465,7 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
|
|
|
81836
82465
|
* @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.
|
|
81837
82466
|
* @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.
|
|
81838
82467
|
* @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.
|
|
81839
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **identity
|
|
82468
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
|
|
81840
82469
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
|
|
81841
82470
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81842
82471
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -81853,7 +82482,7 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
|
|
|
81853
82482
|
* @summary Update a Machine Account
|
|
81854
82483
|
* @param {string} id Machine Account ID.
|
|
81855
82484
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81856
|
-
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
82485
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
81857
82486
|
* @param {*} [axiosOptions] Override http request option.
|
|
81858
82487
|
* @throws {RequiredError}
|
|
81859
82488
|
*/
|
|
@@ -81955,7 +82584,7 @@ export interface MachineAccountsV2024ApiListMachineAccountsRequest {
|
|
|
81955
82584
|
readonly count?: boolean
|
|
81956
82585
|
|
|
81957
82586
|
/**
|
|
81958
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **identity
|
|
82587
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
|
|
81959
82588
|
* @type {string}
|
|
81960
82589
|
* @memberof MachineAccountsV2024ApiListMachineAccounts
|
|
81961
82590
|
*/
|
|
@@ -81997,7 +82626,7 @@ export interface MachineAccountsV2024ApiUpdateMachineAccountRequest {
|
|
|
81997
82626
|
readonly xSailPointExperimental: string
|
|
81998
82627
|
|
|
81999
82628
|
/**
|
|
82000
|
-
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
82629
|
+
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
82001
82630
|
* @type {Array<object>}
|
|
82002
82631
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
82003
82632
|
*/
|
|
@@ -82215,6 +82844,7 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
82215
82844
|
/**
|
|
82216
82845
|
* This API returns a list of machine identities.
|
|
82217
82846
|
* @summary List Machine Identities
|
|
82847
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
82218
82848
|
* @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: **businessApplication, name**
|
|
82219
82849
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82220
82850
|
* @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.
|
|
@@ -82223,7 +82853,7 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
82223
82853
|
* @param {*} [axiosOptions] Override http request option.
|
|
82224
82854
|
* @throws {RequiredError}
|
|
82225
82855
|
*/
|
|
82226
|
-
listMachineIdentities: async (sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
82856
|
+
listMachineIdentities: async (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
82227
82857
|
if (xSailPointExperimental === undefined) {
|
|
82228
82858
|
xSailPointExperimental = 'true';
|
|
82229
82859
|
}
|
|
@@ -82248,6 +82878,10 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
82248
82878
|
// oauth required
|
|
82249
82879
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
82250
82880
|
|
|
82881
|
+
if (filters !== undefined) {
|
|
82882
|
+
localVarQueryParameter['filters'] = filters;
|
|
82883
|
+
}
|
|
82884
|
+
|
|
82251
82885
|
if (sorters !== undefined) {
|
|
82252
82886
|
localVarQueryParameter['sorters'] = sorters;
|
|
82253
82887
|
}
|
|
@@ -82391,6 +83025,7 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
|
|
|
82391
83025
|
/**
|
|
82392
83026
|
* This API returns a list of machine identities.
|
|
82393
83027
|
* @summary List Machine Identities
|
|
83028
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
82394
83029
|
* @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: **businessApplication, name**
|
|
82395
83030
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82396
83031
|
* @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.
|
|
@@ -82399,8 +83034,8 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
|
|
|
82399
83034
|
* @param {*} [axiosOptions] Override http request option.
|
|
82400
83035
|
* @throws {RequiredError}
|
|
82401
83036
|
*/
|
|
82402
|
-
async listMachineIdentities(sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineIdentityV2024>>> {
|
|
82403
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineIdentities(sorters, xSailPointExperimental, count, limit, offset, axiosOptions);
|
|
83037
|
+
async listMachineIdentities(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineIdentityV2024>>> {
|
|
83038
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineIdentities(filters, sorters, xSailPointExperimental, count, limit, offset, axiosOptions);
|
|
82404
83039
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
82405
83040
|
const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2024Api.listMachineIdentities']?.[localVarOperationServerIndex]?.url;
|
|
82406
83041
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -82468,7 +83103,7 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
|
|
|
82468
83103
|
* @throws {RequiredError}
|
|
82469
83104
|
*/
|
|
82470
83105
|
listMachineIdentities(requestParameters: MachineIdentitiesV2024ApiListMachineIdentitiesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineIdentityV2024>> {
|
|
82471
|
-
return localVarFp.listMachineIdentities(requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
83106
|
+
return localVarFp.listMachineIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
82472
83107
|
},
|
|
82473
83108
|
/**
|
|
82474
83109
|
* Use this API to update machine identity details.
|
|
@@ -82552,6 +83187,13 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
|
|
|
82552
83187
|
* @interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest
|
|
82553
83188
|
*/
|
|
82554
83189
|
export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
|
|
83190
|
+
/**
|
|
83191
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
83192
|
+
* @type {string}
|
|
83193
|
+
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
83194
|
+
*/
|
|
83195
|
+
readonly filters?: string
|
|
83196
|
+
|
|
82555
83197
|
/**
|
|
82556
83198
|
* 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: **businessApplication, name**
|
|
82557
83199
|
* @type {string}
|
|
@@ -82668,7 +83310,7 @@ export class MachineIdentitiesV2024Api extends BaseAPI {
|
|
|
82668
83310
|
* @memberof MachineIdentitiesV2024Api
|
|
82669
83311
|
*/
|
|
82670
83312
|
public listMachineIdentities(requestParameters: MachineIdentitiesV2024ApiListMachineIdentitiesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
82671
|
-
return MachineIdentitiesV2024ApiFp(this.configuration).listMachineIdentities(requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
83313
|
+
return MachineIdentitiesV2024ApiFp(this.configuration).listMachineIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82672
83314
|
}
|
|
82673
83315
|
|
|
82674
83316
|
/**
|
|
@@ -83629,6 +84271,48 @@ export const ManagedClustersV2024ApiAxiosParamCreator = function (configuration?
|
|
|
83629
84271
|
axiosOptions: localVarRequestOptions,
|
|
83630
84272
|
};
|
|
83631
84273
|
},
|
|
84274
|
+
/**
|
|
84275
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
84276
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
84277
|
+
* @param {string} id ID of managed cluster to trigger manual upgrade.
|
|
84278
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
84279
|
+
* @throws {RequiredError}
|
|
84280
|
+
*/
|
|
84281
|
+
update: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
84282
|
+
// verify required parameter 'id' is not null or undefined
|
|
84283
|
+
assertParamExists('update', 'id', id)
|
|
84284
|
+
const localVarPath = `/managed-clusters/{id}/manualUpgrade`
|
|
84285
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
84286
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
84287
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84288
|
+
let baseOptions;
|
|
84289
|
+
if (configuration) {
|
|
84290
|
+
baseOptions = configuration.baseOptions;
|
|
84291
|
+
}
|
|
84292
|
+
|
|
84293
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
84294
|
+
const localVarHeaderParameter = {} as any;
|
|
84295
|
+
const localVarQueryParameter = {} as any;
|
|
84296
|
+
|
|
84297
|
+
// authentication userAuth required
|
|
84298
|
+
// oauth required
|
|
84299
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
84300
|
+
|
|
84301
|
+
// authentication userAuth required
|
|
84302
|
+
// oauth required
|
|
84303
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
84304
|
+
|
|
84305
|
+
|
|
84306
|
+
|
|
84307
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
84308
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
84309
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
84310
|
+
|
|
84311
|
+
return {
|
|
84312
|
+
url: toPathString(localVarUrlObj),
|
|
84313
|
+
axiosOptions: localVarRequestOptions,
|
|
84314
|
+
};
|
|
84315
|
+
},
|
|
83632
84316
|
/**
|
|
83633
84317
|
* Update an existing managed cluster.
|
|
83634
84318
|
* @summary Update Managed Cluster
|
|
@@ -83770,6 +84454,19 @@ export const ManagedClustersV2024ApiFp = function(configuration?: Configuration)
|
|
|
83770
84454
|
const localVarOperationServerBasePath = operationServerMap['ManagedClustersV2024Api.putClientLogConfiguration']?.[localVarOperationServerIndex]?.url;
|
|
83771
84455
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
83772
84456
|
},
|
|
84457
|
+
/**
|
|
84458
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
84459
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
84460
|
+
* @param {string} id ID of managed cluster to trigger manual upgrade.
|
|
84461
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
84462
|
+
* @throws {RequiredError}
|
|
84463
|
+
*/
|
|
84464
|
+
async update(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterManualUpgradeV2024>> {
|
|
84465
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.update(id, axiosOptions);
|
|
84466
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
84467
|
+
const localVarOperationServerBasePath = operationServerMap['ManagedClustersV2024Api.update']?.[localVarOperationServerIndex]?.url;
|
|
84468
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
84469
|
+
},
|
|
83773
84470
|
/**
|
|
83774
84471
|
* Update an existing managed cluster.
|
|
83775
84472
|
* @summary Update Managed Cluster
|
|
@@ -83854,6 +84551,16 @@ export const ManagedClustersV2024ApiFactory = function (configuration?: Configur
|
|
|
83854
84551
|
putClientLogConfiguration(requestParameters: ManagedClustersV2024ApiPutClientLogConfigurationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ClientLogConfigurationV2024> {
|
|
83855
84552
|
return localVarFp.putClientLogConfiguration(requestParameters.id, requestParameters.putClientLogConfigurationRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
83856
84553
|
},
|
|
84554
|
+
/**
|
|
84555
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
84556
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
84557
|
+
* @param {ManagedClustersV2024ApiUpdateRequest} requestParameters Request parameters.
|
|
84558
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
84559
|
+
* @throws {RequiredError}
|
|
84560
|
+
*/
|
|
84561
|
+
update(requestParameters: ManagedClustersV2024ApiUpdateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ClusterManualUpgradeV2024> {
|
|
84562
|
+
return localVarFp.update(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
84563
|
+
},
|
|
83857
84564
|
/**
|
|
83858
84565
|
* Update an existing managed cluster.
|
|
83859
84566
|
* @summary Update Managed Cluster
|
|
@@ -83986,6 +84693,20 @@ export interface ManagedClustersV2024ApiPutClientLogConfigurationRequest {
|
|
|
83986
84693
|
readonly putClientLogConfigurationRequestV2024: PutClientLogConfigurationRequestV2024
|
|
83987
84694
|
}
|
|
83988
84695
|
|
|
84696
|
+
/**
|
|
84697
|
+
* Request parameters for update operation in ManagedClustersV2024Api.
|
|
84698
|
+
* @export
|
|
84699
|
+
* @interface ManagedClustersV2024ApiUpdateRequest
|
|
84700
|
+
*/
|
|
84701
|
+
export interface ManagedClustersV2024ApiUpdateRequest {
|
|
84702
|
+
/**
|
|
84703
|
+
* ID of managed cluster to trigger manual upgrade.
|
|
84704
|
+
* @type {string}
|
|
84705
|
+
* @memberof ManagedClustersV2024ApiUpdate
|
|
84706
|
+
*/
|
|
84707
|
+
readonly id: string
|
|
84708
|
+
}
|
|
84709
|
+
|
|
83989
84710
|
/**
|
|
83990
84711
|
* Request parameters for updateManagedCluster operation in ManagedClustersV2024Api.
|
|
83991
84712
|
* @export
|
|
@@ -84086,6 +84807,18 @@ export class ManagedClustersV2024Api extends BaseAPI {
|
|
|
84086
84807
|
return ManagedClustersV2024ApiFp(this.configuration).putClientLogConfiguration(requestParameters.id, requestParameters.putClientLogConfigurationRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
84087
84808
|
}
|
|
84088
84809
|
|
|
84810
|
+
/**
|
|
84811
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
84812
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
84813
|
+
* @param {ManagedClustersV2024ApiUpdateRequest} requestParameters Request parameters.
|
|
84814
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
84815
|
+
* @throws {RequiredError}
|
|
84816
|
+
* @memberof ManagedClustersV2024Api
|
|
84817
|
+
*/
|
|
84818
|
+
public update(requestParameters: ManagedClustersV2024ApiUpdateRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
84819
|
+
return ManagedClustersV2024ApiFp(this.configuration).update(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
84820
|
+
}
|
|
84821
|
+
|
|
84089
84822
|
/**
|
|
84090
84823
|
* Update an existing managed cluster.
|
|
84091
84824
|
* @summary Update Managed Cluster
|
|
@@ -93409,12 +94142,12 @@ export type GetReportFileFormatV2024 = typeof GetReportFileFormatV2024[keyof typ
|
|
|
93409
94142
|
export const RequestableObjectsV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
93410
94143
|
return {
|
|
93411
94144
|
/**
|
|
93412
|
-
*
|
|
94145
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
93413
94146
|
* @summary Requestable Objects List
|
|
93414
94147
|
* @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
|
|
93415
|
-
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
93416
|
-
* @param {string} [term]
|
|
93417
|
-
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
94148
|
+
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
94149
|
+
* @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
94150
|
+
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
93418
94151
|
* @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.
|
|
93419
94152
|
* @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.
|
|
93420
94153
|
* @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.
|
|
@@ -93502,12 +94235,12 @@ export const RequestableObjectsV2024ApiFp = function(configuration?: Configurati
|
|
|
93502
94235
|
const localVarAxiosParamCreator = RequestableObjectsV2024ApiAxiosParamCreator(configuration)
|
|
93503
94236
|
return {
|
|
93504
94237
|
/**
|
|
93505
|
-
*
|
|
94238
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
93506
94239
|
* @summary Requestable Objects List
|
|
93507
94240
|
* @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
|
|
93508
|
-
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
93509
|
-
* @param {string} [term]
|
|
93510
|
-
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
94241
|
+
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
94242
|
+
* @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
94243
|
+
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
93511
94244
|
* @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.
|
|
93512
94245
|
* @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.
|
|
93513
94246
|
* @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.
|
|
@@ -93533,7 +94266,7 @@ export const RequestableObjectsV2024ApiFactory = function (configuration?: Confi
|
|
|
93533
94266
|
const localVarFp = RequestableObjectsV2024ApiFp(configuration)
|
|
93534
94267
|
return {
|
|
93535
94268
|
/**
|
|
93536
|
-
*
|
|
94269
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
93537
94270
|
* @summary Requestable Objects List
|
|
93538
94271
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
93539
94272
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -93559,21 +94292,21 @@ export interface RequestableObjectsV2024ApiListRequestableObjectsRequest {
|
|
|
93559
94292
|
readonly identityId?: string
|
|
93560
94293
|
|
|
93561
94294
|
/**
|
|
93562
|
-
* Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
94295
|
+
* Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
93563
94296
|
* @type {Array<RequestableObjectTypeV2024>}
|
|
93564
94297
|
* @memberof RequestableObjectsV2024ApiListRequestableObjects
|
|
93565
94298
|
*/
|
|
93566
94299
|
readonly types?: Array<RequestableObjectTypeV2024>
|
|
93567
94300
|
|
|
93568
94301
|
/**
|
|
93569
|
-
*
|
|
94302
|
+
* Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
93570
94303
|
* @type {string}
|
|
93571
94304
|
* @memberof RequestableObjectsV2024ApiListRequestableObjects
|
|
93572
94305
|
*/
|
|
93573
94306
|
readonly term?: string
|
|
93574
94307
|
|
|
93575
94308
|
/**
|
|
93576
|
-
* Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
94309
|
+
* Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
93577
94310
|
* @type {Array<RequestableObjectRequestStatusV2024>}
|
|
93578
94311
|
* @memberof RequestableObjectsV2024ApiListRequestableObjects
|
|
93579
94312
|
*/
|
|
@@ -93623,7 +94356,7 @@ export interface RequestableObjectsV2024ApiListRequestableObjectsRequest {
|
|
|
93623
94356
|
*/
|
|
93624
94357
|
export class RequestableObjectsV2024Api extends BaseAPI {
|
|
93625
94358
|
/**
|
|
93626
|
-
*
|
|
94359
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
93627
94360
|
* @summary Requestable Objects List
|
|
93628
94361
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
93629
94362
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -95207,10 +95940,10 @@ export const RolesV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
95207
95940
|
};
|
|
95208
95941
|
},
|
|
95209
95942
|
/**
|
|
95210
|
-
*
|
|
95211
|
-
* @summary List
|
|
95212
|
-
* @param {string} id
|
|
95213
|
-
* @param {number} [limit]
|
|
95943
|
+
* Get a list of entitlements associated with a specified role.
|
|
95944
|
+
* @summary List Role\'s Entitlements
|
|
95945
|
+
* @param {string} id Containing role\'s ID.
|
|
95946
|
+
* @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
95214
95947
|
* @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.
|
|
95215
95948
|
* @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.
|
|
95216
95949
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **attribute**: *eq, sw* **value**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **source.id**: *eq, in*
|
|
@@ -95791,10 +96524,10 @@ export const RolesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
95791
96524
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
95792
96525
|
},
|
|
95793
96526
|
/**
|
|
95794
|
-
*
|
|
95795
|
-
* @summary List
|
|
95796
|
-
* @param {string} id
|
|
95797
|
-
* @param {number} [limit]
|
|
96527
|
+
* Get a list of entitlements associated with a specified role.
|
|
96528
|
+
* @summary List Role\'s Entitlements
|
|
96529
|
+
* @param {string} id Containing role\'s ID.
|
|
96530
|
+
* @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
95798
96531
|
* @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.
|
|
95799
96532
|
* @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.
|
|
95800
96533
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **attribute**: *eq, sw* **value**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **source.id**: *eq, in*
|
|
@@ -96007,8 +96740,8 @@ export const RolesV2024ApiFactory = function (configuration?: Configuration, bas
|
|
|
96007
96740
|
return localVarFp.getRoleAssignedIdentities(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
96008
96741
|
},
|
|
96009
96742
|
/**
|
|
96010
|
-
*
|
|
96011
|
-
* @summary List
|
|
96743
|
+
* Get a list of entitlements associated with a specified role.
|
|
96744
|
+
* @summary List Role\'s Entitlements
|
|
96012
96745
|
* @param {RolesV2024ApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
96013
96746
|
* @param {*} [axiosOptions] Override http request option.
|
|
96014
96747
|
* @throws {RequiredError}
|
|
@@ -96243,14 +96976,14 @@ export interface RolesV2024ApiGetRoleAssignedIdentitiesRequest {
|
|
|
96243
96976
|
*/
|
|
96244
96977
|
export interface RolesV2024ApiGetRoleEntitlementsRequest {
|
|
96245
96978
|
/**
|
|
96246
|
-
*
|
|
96979
|
+
* Containing role\'s ID.
|
|
96247
96980
|
* @type {string}
|
|
96248
96981
|
* @memberof RolesV2024ApiGetRoleEntitlements
|
|
96249
96982
|
*/
|
|
96250
96983
|
readonly id: string
|
|
96251
96984
|
|
|
96252
96985
|
/**
|
|
96253
|
-
*
|
|
96986
|
+
* Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
96254
96987
|
* @type {number}
|
|
96255
96988
|
* @memberof RolesV2024ApiGetRoleEntitlements
|
|
96256
96989
|
*/
|
|
@@ -96612,8 +97345,8 @@ export class RolesV2024Api extends BaseAPI {
|
|
|
96612
97345
|
}
|
|
96613
97346
|
|
|
96614
97347
|
/**
|
|
96615
|
-
*
|
|
96616
|
-
* @summary List
|
|
97348
|
+
* Get a list of entitlements associated with a specified role.
|
|
97349
|
+
* @summary List Role\'s Entitlements
|
|
96617
97350
|
* @param {RolesV2024ApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
96618
97351
|
* @param {*} [axiosOptions] Override http request option.
|
|
96619
97352
|
* @throws {RequiredError}
|
|
@@ -101980,7 +102713,7 @@ export type SearchGetIndexV2024 = typeof SearchGetIndexV2024[keyof typeof Search
|
|
|
101980
102713
|
export const SearchAttributeConfigurationV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
101981
102714
|
return {
|
|
101982
102715
|
/**
|
|
101983
|
-
* Create and configure extended search attributes.
|
|
102716
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
101984
102717
|
* @summary Create Extended Search Attributes
|
|
101985
102718
|
* @param {SearchAttributeConfigV2024} searchAttributeConfigV2024
|
|
101986
102719
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -102084,13 +102817,15 @@ export const SearchAttributeConfigurationV2024ApiAxiosParamCreator = function (c
|
|
|
102084
102817
|
};
|
|
102085
102818
|
},
|
|
102086
102819
|
/**
|
|
102087
|
-
* Get a list of attribute/application
|
|
102820
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
102088
102821
|
* @summary List Extended Search Attributes
|
|
102089
102822
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
102823
|
+
* @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.
|
|
102824
|
+
* @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.
|
|
102090
102825
|
* @param {*} [axiosOptions] Override http request option.
|
|
102091
102826
|
* @throws {RequiredError}
|
|
102092
102827
|
*/
|
|
102093
|
-
getSearchAttributeConfig: async (xSailPointExperimental: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
102828
|
+
getSearchAttributeConfig: async (xSailPointExperimental: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
102094
102829
|
if (xSailPointExperimental === undefined) {
|
|
102095
102830
|
xSailPointExperimental = 'true';
|
|
102096
102831
|
}
|
|
@@ -102117,6 +102852,14 @@ export const SearchAttributeConfigurationV2024ApiAxiosParamCreator = function (c
|
|
|
102117
102852
|
// oauth required
|
|
102118
102853
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102119
102854
|
|
|
102855
|
+
if (limit !== undefined) {
|
|
102856
|
+
localVarQueryParameter['limit'] = limit;
|
|
102857
|
+
}
|
|
102858
|
+
|
|
102859
|
+
if (offset !== undefined) {
|
|
102860
|
+
localVarQueryParameter['offset'] = offset;
|
|
102861
|
+
}
|
|
102862
|
+
|
|
102120
102863
|
|
|
102121
102864
|
|
|
102122
102865
|
if (xSailPointExperimental != null) {
|
|
@@ -102250,7 +102993,7 @@ export const SearchAttributeConfigurationV2024ApiFp = function(configuration?: C
|
|
|
102250
102993
|
const localVarAxiosParamCreator = SearchAttributeConfigurationV2024ApiAxiosParamCreator(configuration)
|
|
102251
102994
|
return {
|
|
102252
102995
|
/**
|
|
102253
|
-
* Create and configure extended search attributes.
|
|
102996
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
102254
102997
|
* @summary Create Extended Search Attributes
|
|
102255
102998
|
* @param {SearchAttributeConfigV2024} searchAttributeConfigV2024
|
|
102256
102999
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -102278,14 +103021,16 @@ export const SearchAttributeConfigurationV2024ApiFp = function(configuration?: C
|
|
|
102278
103021
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
102279
103022
|
},
|
|
102280
103023
|
/**
|
|
102281
|
-
* Get a list of attribute/application
|
|
103024
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
102282
103025
|
* @summary List Extended Search Attributes
|
|
102283
103026
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
103027
|
+
* @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.
|
|
103028
|
+
* @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.
|
|
102284
103029
|
* @param {*} [axiosOptions] Override http request option.
|
|
102285
103030
|
* @throws {RequiredError}
|
|
102286
103031
|
*/
|
|
102287
|
-
async getSearchAttributeConfig(xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>> {
|
|
102288
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchAttributeConfig(xSailPointExperimental, axiosOptions);
|
|
103032
|
+
async getSearchAttributeConfig(xSailPointExperimental: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>> {
|
|
103033
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchAttributeConfig(xSailPointExperimental, limit, offset, axiosOptions);
|
|
102289
103034
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
102290
103035
|
const localVarOperationServerBasePath = operationServerMap['SearchAttributeConfigurationV2024Api.getSearchAttributeConfig']?.[localVarOperationServerIndex]?.url;
|
|
102291
103036
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -102330,7 +103075,7 @@ export const SearchAttributeConfigurationV2024ApiFactory = function (configurati
|
|
|
102330
103075
|
const localVarFp = SearchAttributeConfigurationV2024ApiFp(configuration)
|
|
102331
103076
|
return {
|
|
102332
103077
|
/**
|
|
102333
|
-
* Create and configure extended search attributes.
|
|
103078
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
102334
103079
|
* @summary Create Extended Search Attributes
|
|
102335
103080
|
* @param {SearchAttributeConfigurationV2024ApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
102336
103081
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -102350,14 +103095,14 @@ export const SearchAttributeConfigurationV2024ApiFactory = function (configurati
|
|
|
102350
103095
|
return localVarFp.deleteSearchAttributeConfig(requestParameters.name, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
102351
103096
|
},
|
|
102352
103097
|
/**
|
|
102353
|
-
* Get a list of attribute/application
|
|
103098
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
102354
103099
|
* @summary List Extended Search Attributes
|
|
102355
103100
|
* @param {SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
102356
103101
|
* @param {*} [axiosOptions] Override http request option.
|
|
102357
103102
|
* @throws {RequiredError}
|
|
102358
103103
|
*/
|
|
102359
103104
|
getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigV2024>> {
|
|
102360
|
-
return localVarFp.getSearchAttributeConfig(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
103105
|
+
return localVarFp.getSearchAttributeConfig(requestParameters.xSailPointExperimental, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
102361
103106
|
},
|
|
102362
103107
|
/**
|
|
102363
103108
|
* Get an extended attribute configuration by name.
|
|
@@ -102436,6 +103181,20 @@ export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigReq
|
|
|
102436
103181
|
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
102437
103182
|
*/
|
|
102438
103183
|
readonly xSailPointExperimental: string
|
|
103184
|
+
|
|
103185
|
+
/**
|
|
103186
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
103187
|
+
* @type {number}
|
|
103188
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
103189
|
+
*/
|
|
103190
|
+
readonly limit?: number
|
|
103191
|
+
|
|
103192
|
+
/**
|
|
103193
|
+
* 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.
|
|
103194
|
+
* @type {number}
|
|
103195
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
103196
|
+
*/
|
|
103197
|
+
readonly offset?: number
|
|
102439
103198
|
}
|
|
102440
103199
|
|
|
102441
103200
|
/**
|
|
@@ -102495,7 +103254,7 @@ export interface SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigR
|
|
|
102495
103254
|
*/
|
|
102496
103255
|
export class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
102497
103256
|
/**
|
|
102498
|
-
* Create and configure extended search attributes.
|
|
103257
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
102499
103258
|
* @summary Create Extended Search Attributes
|
|
102500
103259
|
* @param {SearchAttributeConfigurationV2024ApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
102501
103260
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -102519,7 +103278,7 @@ export class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
102519
103278
|
}
|
|
102520
103279
|
|
|
102521
103280
|
/**
|
|
102522
|
-
* Get a list of attribute/application
|
|
103281
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
102523
103282
|
* @summary List Extended Search Attributes
|
|
102524
103283
|
* @param {SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
102525
103284
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -102527,7 +103286,7 @@ export class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
102527
103286
|
* @memberof SearchAttributeConfigurationV2024Api
|
|
102528
103287
|
*/
|
|
102529
103288
|
public getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
102530
|
-
return SearchAttributeConfigurationV2024ApiFp(this.configuration).getSearchAttributeConfig(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
103289
|
+
return SearchAttributeConfigurationV2024ApiFp(this.configuration).getSearchAttributeConfig(requestParameters.xSailPointExperimental, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
102531
103290
|
}
|
|
102532
103291
|
|
|
102533
103292
|
/**
|
|
@@ -105237,6 +105996,48 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
105237
105996
|
if (xSailPointExperimental != null) {
|
|
105238
105997
|
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
105239
105998
|
}
|
|
105999
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
106000
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
106001
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
106002
|
+
|
|
106003
|
+
return {
|
|
106004
|
+
url: toPathString(localVarUrlObj),
|
|
106005
|
+
axiosOptions: localVarRequestOptions,
|
|
106006
|
+
};
|
|
106007
|
+
},
|
|
106008
|
+
/**
|
|
106009
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
106010
|
+
* @summary Get Source Connections by ID
|
|
106011
|
+
* @param {string} sourceId Source ID.
|
|
106012
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
106013
|
+
* @throws {RequiredError}
|
|
106014
|
+
*/
|
|
106015
|
+
getSourceConnections: async (sourceId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
106016
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
106017
|
+
assertParamExists('getSourceConnections', 'sourceId', sourceId)
|
|
106018
|
+
const localVarPath = `/sources/{sourceId}/connections`
|
|
106019
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
106020
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106021
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
106022
|
+
let baseOptions;
|
|
106023
|
+
if (configuration) {
|
|
106024
|
+
baseOptions = configuration.baseOptions;
|
|
106025
|
+
}
|
|
106026
|
+
|
|
106027
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
106028
|
+
const localVarHeaderParameter = {} as any;
|
|
106029
|
+
const localVarQueryParameter = {} as any;
|
|
106030
|
+
|
|
106031
|
+
// authentication userAuth required
|
|
106032
|
+
// oauth required
|
|
106033
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106034
|
+
|
|
106035
|
+
// authentication userAuth required
|
|
106036
|
+
// oauth required
|
|
106037
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
106038
|
+
|
|
106039
|
+
|
|
106040
|
+
|
|
105240
106041
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
105241
106042
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105242
106043
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -105381,7 +106182,7 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
105381
106182
|
};
|
|
105382
106183
|
},
|
|
105383
106184
|
/**
|
|
105384
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
106185
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
105385
106186
|
* @summary List Schedules on Source
|
|
105386
106187
|
* @param {string} sourceId Source ID.
|
|
105387
106188
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107121,6 +107922,19 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
107121
107922
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2024Api.getSourceConfig']?.[localVarOperationServerIndex]?.url;
|
|
107122
107923
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
107123
107924
|
},
|
|
107925
|
+
/**
|
|
107926
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
107927
|
+
* @summary Get Source Connections by ID
|
|
107928
|
+
* @param {string} sourceId Source ID.
|
|
107929
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
107930
|
+
* @throws {RequiredError}
|
|
107931
|
+
*/
|
|
107932
|
+
async getSourceConnections(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceConnectionsDtoV2024>> {
|
|
107933
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSourceConnections(sourceId, axiosOptions);
|
|
107934
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
107935
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesV2024Api.getSourceConnections']?.[localVarOperationServerIndex]?.url;
|
|
107936
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
107937
|
+
},
|
|
107124
107938
|
/**
|
|
107125
107939
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
107126
107940
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -107162,7 +107976,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
107162
107976
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
107163
107977
|
},
|
|
107164
107978
|
/**
|
|
107165
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
107979
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
107166
107980
|
* @summary List Schedules on Source
|
|
107167
107981
|
* @param {string} sourceId Source ID.
|
|
107168
107982
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107759,6 +108573,16 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
107759
108573
|
getSourceConfig(requestParameters: SourcesV2024ApiGetSourceConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConnectorDetailV2024> {
|
|
107760
108574
|
return localVarFp.getSourceConfig(requestParameters.id, requestParameters.locale, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
107761
108575
|
},
|
|
108576
|
+
/**
|
|
108577
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
108578
|
+
* @summary Get Source Connections by ID
|
|
108579
|
+
* @param {SourcesV2024ApiGetSourceConnectionsRequest} requestParameters Request parameters.
|
|
108580
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
108581
|
+
* @throws {RequiredError}
|
|
108582
|
+
*/
|
|
108583
|
+
getSourceConnections(requestParameters: SourcesV2024ApiGetSourceConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceConnectionsDtoV2024> {
|
|
108584
|
+
return localVarFp.getSourceConnections(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
108585
|
+
},
|
|
107762
108586
|
/**
|
|
107763
108587
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
107764
108588
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -107790,7 +108614,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
107790
108614
|
return localVarFp.getSourceSchedule(requestParameters.sourceId, requestParameters.scheduleType, axiosOptions).then((request) => request(axios, basePath));
|
|
107791
108615
|
},
|
|
107792
108616
|
/**
|
|
107793
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
108617
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
107794
108618
|
* @summary List Schedules on Source
|
|
107795
108619
|
* @param {SourcesV2024ApiGetSourceSchedulesRequest} requestParameters Request parameters.
|
|
107796
108620
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -108429,6 +109253,20 @@ export interface SourcesV2024ApiGetSourceConfigRequest {
|
|
|
108429
109253
|
readonly xSailPointExperimental?: string
|
|
108430
109254
|
}
|
|
108431
109255
|
|
|
109256
|
+
/**
|
|
109257
|
+
* Request parameters for getSourceConnections operation in SourcesV2024Api.
|
|
109258
|
+
* @export
|
|
109259
|
+
* @interface SourcesV2024ApiGetSourceConnectionsRequest
|
|
109260
|
+
*/
|
|
109261
|
+
export interface SourcesV2024ApiGetSourceConnectionsRequest {
|
|
109262
|
+
/**
|
|
109263
|
+
* Source ID.
|
|
109264
|
+
* @type {string}
|
|
109265
|
+
* @memberof SourcesV2024ApiGetSourceConnections
|
|
109266
|
+
*/
|
|
109267
|
+
readonly sourceId: string
|
|
109268
|
+
}
|
|
109269
|
+
|
|
108432
109270
|
/**
|
|
108433
109271
|
* Request parameters for getSourceEntitlementRequestConfig operation in SourcesV2024Api.
|
|
108434
109272
|
* @export
|
|
@@ -109401,6 +110239,18 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
109401
110239
|
return SourcesV2024ApiFp(this.configuration).getSourceConfig(requestParameters.id, requestParameters.locale, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109402
110240
|
}
|
|
109403
110241
|
|
|
110242
|
+
/**
|
|
110243
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
110244
|
+
* @summary Get Source Connections by ID
|
|
110245
|
+
* @param {SourcesV2024ApiGetSourceConnectionsRequest} requestParameters Request parameters.
|
|
110246
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
110247
|
+
* @throws {RequiredError}
|
|
110248
|
+
* @memberof SourcesV2024Api
|
|
110249
|
+
*/
|
|
110250
|
+
public getSourceConnections(requestParameters: SourcesV2024ApiGetSourceConnectionsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
110251
|
+
return SourcesV2024ApiFp(this.configuration).getSourceConnections(requestParameters.sourceId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
110252
|
+
}
|
|
110253
|
+
|
|
109404
110254
|
/**
|
|
109405
110255
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
109406
110256
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -109438,7 +110288,7 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
109438
110288
|
}
|
|
109439
110289
|
|
|
109440
110290
|
/**
|
|
109441
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
110291
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
109442
110292
|
* @summary List Schedules on Source
|
|
109443
110293
|
* @param {SourcesV2024ApiGetSourceSchedulesRequest} requestParameters Request parameters.
|
|
109444
110294
|
* @param {*} [axiosOptions] Override http request option.
|