sailpoint-api-client 1.8.61 → 1.8.63
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 +36 -0
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.js +99 -9
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.js +77 -7
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.js +77 -7
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +740 -13
- package/dist/v2026/api.js +726 -24
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.js +77 -7
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +28 -0
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +28 -0
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1086 -13
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +32 -4
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2026/api.ts
CHANGED
|
@@ -19065,6 +19065,362 @@ export interface EntitlementBulkUpdateRequestV2026 {
|
|
|
19065
19065
|
*/
|
|
19066
19066
|
'jsonPatch': Array<JsonPatchOperationV2026>;
|
|
19067
19067
|
}
|
|
19068
|
+
/**
|
|
19069
|
+
*
|
|
19070
|
+
* @export
|
|
19071
|
+
* @interface EntitlementConnectionBulkUpdateItemV2026
|
|
19072
|
+
*/
|
|
19073
|
+
export interface EntitlementConnectionBulkUpdateItemV2026 {
|
|
19074
|
+
/**
|
|
19075
|
+
* Connection ID to update.
|
|
19076
|
+
* @type {string}
|
|
19077
|
+
* @memberof EntitlementConnectionBulkUpdateItemV2026
|
|
19078
|
+
*/
|
|
19079
|
+
'connectionId': string;
|
|
19080
|
+
/**
|
|
19081
|
+
* Target connection type.
|
|
19082
|
+
* @type {string}
|
|
19083
|
+
* @memberof EntitlementConnectionBulkUpdateItemV2026
|
|
19084
|
+
*/
|
|
19085
|
+
'type': EntitlementConnectionBulkUpdateItemV2026TypeV2026;
|
|
19086
|
+
}
|
|
19087
|
+
|
|
19088
|
+
export const EntitlementConnectionBulkUpdateItemV2026TypeV2026 = {
|
|
19089
|
+
Jit: 'JIT',
|
|
19090
|
+
Standing: 'STANDING'
|
|
19091
|
+
} as const;
|
|
19092
|
+
|
|
19093
|
+
export type EntitlementConnectionBulkUpdateItemV2026TypeV2026 = typeof EntitlementConnectionBulkUpdateItemV2026TypeV2026[keyof typeof EntitlementConnectionBulkUpdateItemV2026TypeV2026];
|
|
19094
|
+
|
|
19095
|
+
/**
|
|
19096
|
+
*
|
|
19097
|
+
* @export
|
|
19098
|
+
* @interface EntitlementConnectionBulkUpdateResultItemV2026
|
|
19099
|
+
*/
|
|
19100
|
+
export interface EntitlementConnectionBulkUpdateResultItemV2026 {
|
|
19101
|
+
/**
|
|
19102
|
+
* Connection ID processed in this row.
|
|
19103
|
+
* @type {string}
|
|
19104
|
+
* @memberof EntitlementConnectionBulkUpdateResultItemV2026
|
|
19105
|
+
*/
|
|
19106
|
+
'connectionId'?: string;
|
|
19107
|
+
/**
|
|
19108
|
+
* Requested or resulting connection type for the row.
|
|
19109
|
+
* @type {string}
|
|
19110
|
+
* @memberof EntitlementConnectionBulkUpdateResultItemV2026
|
|
19111
|
+
*/
|
|
19112
|
+
'type'?: string;
|
|
19113
|
+
/**
|
|
19114
|
+
* Item-level result status code.
|
|
19115
|
+
* @type {number}
|
|
19116
|
+
* @memberof EntitlementConnectionBulkUpdateResultItemV2026
|
|
19117
|
+
*/
|
|
19118
|
+
'status'?: number;
|
|
19119
|
+
/**
|
|
19120
|
+
* Item-level result message.
|
|
19121
|
+
* @type {string}
|
|
19122
|
+
* @memberof EntitlementConnectionBulkUpdateResultItemV2026
|
|
19123
|
+
*/
|
|
19124
|
+
'description'?: string;
|
|
19125
|
+
}
|
|
19126
|
+
/**
|
|
19127
|
+
* Privilege classification details for the entitlement.
|
|
19128
|
+
* @export
|
|
19129
|
+
* @interface EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026
|
|
19130
|
+
*/
|
|
19131
|
+
export interface EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026 {
|
|
19132
|
+
/**
|
|
19133
|
+
* Effective privilege level.
|
|
19134
|
+
* @type {string}
|
|
19135
|
+
* @memberof EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026
|
|
19136
|
+
*/
|
|
19137
|
+
'effective'?: string;
|
|
19138
|
+
}
|
|
19139
|
+
/**
|
|
19140
|
+
* Entitlement object embedded in entitlement connection search responses.
|
|
19141
|
+
* @export
|
|
19142
|
+
* @interface EntitlementConnectionSearchHitEntitlementV2026
|
|
19143
|
+
*/
|
|
19144
|
+
export interface EntitlementConnectionSearchHitEntitlementV2026 {
|
|
19145
|
+
/**
|
|
19146
|
+
* Entitlement identifier.
|
|
19147
|
+
* @type {string}
|
|
19148
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19149
|
+
*/
|
|
19150
|
+
'id'?: string;
|
|
19151
|
+
/**
|
|
19152
|
+
* Entitlement name.
|
|
19153
|
+
* @type {string}
|
|
19154
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19155
|
+
*/
|
|
19156
|
+
'name'?: string;
|
|
19157
|
+
/**
|
|
19158
|
+
* Human-readable entitlement label.
|
|
19159
|
+
* @type {string}
|
|
19160
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19161
|
+
*/
|
|
19162
|
+
'displayName'?: string;
|
|
19163
|
+
/**
|
|
19164
|
+
* Entitlement description.
|
|
19165
|
+
* @type {string}
|
|
19166
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19167
|
+
*/
|
|
19168
|
+
'description'?: string;
|
|
19169
|
+
/**
|
|
19170
|
+
* Source attribute carrying entitlement values.
|
|
19171
|
+
* @type {string}
|
|
19172
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19173
|
+
*/
|
|
19174
|
+
'attribute'?: string;
|
|
19175
|
+
/**
|
|
19176
|
+
* Source entitlement value.
|
|
19177
|
+
* @type {string}
|
|
19178
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19179
|
+
*/
|
|
19180
|
+
'value'?: string;
|
|
19181
|
+
/**
|
|
19182
|
+
* Source schema object type for the entitlement.
|
|
19183
|
+
* @type {string}
|
|
19184
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19185
|
+
*/
|
|
19186
|
+
'sourceSchemaObjectType'?: string;
|
|
19187
|
+
/**
|
|
19188
|
+
*
|
|
19189
|
+
* @type {EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026}
|
|
19190
|
+
* @memberof EntitlementConnectionSearchHitEntitlementV2026
|
|
19191
|
+
*/
|
|
19192
|
+
'privilegeLevel'?: EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026;
|
|
19193
|
+
}
|
|
19194
|
+
/**
|
|
19195
|
+
* Entitlement connection record returned by search-backed list endpoints.
|
|
19196
|
+
* @export
|
|
19197
|
+
* @interface EntitlementConnectionSearchHitV2026
|
|
19198
|
+
*/
|
|
19199
|
+
export interface EntitlementConnectionSearchHitV2026 {
|
|
19200
|
+
/**
|
|
19201
|
+
* Connection ID as represented in search results.
|
|
19202
|
+
* @type {string}
|
|
19203
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19204
|
+
*/
|
|
19205
|
+
'id'?: string;
|
|
19206
|
+
/**
|
|
19207
|
+
* Identity summary object from search index.
|
|
19208
|
+
* @type {{ [key: string]: any; }}
|
|
19209
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19210
|
+
*/
|
|
19211
|
+
'identity'?: { [key: string]: any; };
|
|
19212
|
+
/**
|
|
19213
|
+
* Machine identity summary object when available.
|
|
19214
|
+
* @type {{ [key: string]: any; }}
|
|
19215
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19216
|
+
*/
|
|
19217
|
+
'machineIdentity'?: { [key: string]: any; };
|
|
19218
|
+
/**
|
|
19219
|
+
* Account summary object.
|
|
19220
|
+
* @type {{ [key: string]: any; }}
|
|
19221
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19222
|
+
*/
|
|
19223
|
+
'account'?: { [key: string]: any; };
|
|
19224
|
+
/**
|
|
19225
|
+
*
|
|
19226
|
+
* @type {EntitlementConnectionSearchHitEntitlementV2026}
|
|
19227
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19228
|
+
*/
|
|
19229
|
+
'entitlement'?: EntitlementConnectionSearchHitEntitlementV2026;
|
|
19230
|
+
/**
|
|
19231
|
+
* Source summary object.
|
|
19232
|
+
* @type {{ [key: string]: any; }}
|
|
19233
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19234
|
+
*/
|
|
19235
|
+
'source'?: { [key: string]: any; };
|
|
19236
|
+
/**
|
|
19237
|
+
* Connection state object.
|
|
19238
|
+
* @type {{ [key: string]: any; }}
|
|
19239
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19240
|
+
*/
|
|
19241
|
+
'state'?: { [key: string]: any; };
|
|
19242
|
+
/**
|
|
19243
|
+
* JIT timestamps for lifecycle events.
|
|
19244
|
+
* @type {{ [key: string]: any; }}
|
|
19245
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19246
|
+
*/
|
|
19247
|
+
'jit'?: { [key: string]: any; };
|
|
19248
|
+
/**
|
|
19249
|
+
* Indicates whether the connection is marked as standalone.
|
|
19250
|
+
* @type {boolean}
|
|
19251
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19252
|
+
*/
|
|
19253
|
+
'standalone'?: boolean;
|
|
19254
|
+
/**
|
|
19255
|
+
* Connection type classification.
|
|
19256
|
+
* @type {string}
|
|
19257
|
+
* @memberof EntitlementConnectionSearchHitV2026
|
|
19258
|
+
*/
|
|
19259
|
+
'type'?: EntitlementConnectionSearchHitV2026TypeV2026;
|
|
19260
|
+
}
|
|
19261
|
+
|
|
19262
|
+
export const EntitlementConnectionSearchHitV2026TypeV2026 = {
|
|
19263
|
+
Jit: 'JIT',
|
|
19264
|
+
Standing: 'STANDING',
|
|
19265
|
+
Na: 'NA'
|
|
19266
|
+
} as const;
|
|
19267
|
+
|
|
19268
|
+
export type EntitlementConnectionSearchHitV2026TypeV2026 = typeof EntitlementConnectionSearchHitV2026TypeV2026[keyof typeof EntitlementConnectionSearchHitV2026TypeV2026];
|
|
19269
|
+
|
|
19270
|
+
/**
|
|
19271
|
+
* Entitlement connection entity returned by patch APIs.
|
|
19272
|
+
* @export
|
|
19273
|
+
* @interface EntitlementConnectionV2026
|
|
19274
|
+
*/
|
|
19275
|
+
export interface EntitlementConnectionV2026 {
|
|
19276
|
+
/**
|
|
19277
|
+
* Tenant identifier that owns the connection.
|
|
19278
|
+
* @type {string}
|
|
19279
|
+
* @memberof EntitlementConnectionV2026
|
|
19280
|
+
*/
|
|
19281
|
+
'tenantId'?: string;
|
|
19282
|
+
/**
|
|
19283
|
+
* Entitlement connection identifier.
|
|
19284
|
+
* @type {string}
|
|
19285
|
+
* @memberof EntitlementConnectionV2026
|
|
19286
|
+
*/
|
|
19287
|
+
'connectionId'?: string;
|
|
19288
|
+
/**
|
|
19289
|
+
* Identity identifier associated with the connection.
|
|
19290
|
+
* @type {string}
|
|
19291
|
+
* @memberof EntitlementConnectionV2026
|
|
19292
|
+
*/
|
|
19293
|
+
'identityId'?: string;
|
|
19294
|
+
/**
|
|
19295
|
+
* Machine identity identifier when the connection is machine-backed.
|
|
19296
|
+
* @type {string}
|
|
19297
|
+
* @memberof EntitlementConnectionV2026
|
|
19298
|
+
*/
|
|
19299
|
+
'machineIdentityId'?: string;
|
|
19300
|
+
/**
|
|
19301
|
+
* Account identifier for the connected source account.
|
|
19302
|
+
* @type {string}
|
|
19303
|
+
* @memberof EntitlementConnectionV2026
|
|
19304
|
+
*/
|
|
19305
|
+
'accountId'?: string;
|
|
19306
|
+
/**
|
|
19307
|
+
* Entitlement identifier on the source.
|
|
19308
|
+
* @type {string}
|
|
19309
|
+
* @memberof EntitlementConnectionV2026
|
|
19310
|
+
*/
|
|
19311
|
+
'entitlementId'?: string;
|
|
19312
|
+
/**
|
|
19313
|
+
* Source identifier that provides the account and entitlement.
|
|
19314
|
+
* @type {string}
|
|
19315
|
+
* @memberof EntitlementConnectionV2026
|
|
19316
|
+
*/
|
|
19317
|
+
'sourceId'?: string;
|
|
19318
|
+
/**
|
|
19319
|
+
* Indicates whether the connection is marked as standalone.
|
|
19320
|
+
* @type {boolean}
|
|
19321
|
+
* @memberof EntitlementConnectionV2026
|
|
19322
|
+
*/
|
|
19323
|
+
'standalone'?: boolean;
|
|
19324
|
+
/**
|
|
19325
|
+
* Entitlement attribute name on the source.
|
|
19326
|
+
* @type {string}
|
|
19327
|
+
* @memberof EntitlementConnectionV2026
|
|
19328
|
+
*/
|
|
19329
|
+
'attributeName'?: string;
|
|
19330
|
+
/**
|
|
19331
|
+
* Entitlement attribute value on the source.
|
|
19332
|
+
* @type {string}
|
|
19333
|
+
* @memberof EntitlementConnectionV2026
|
|
19334
|
+
*/
|
|
19335
|
+
'attributeValue'?: string;
|
|
19336
|
+
/**
|
|
19337
|
+
* Connection type classification.
|
|
19338
|
+
* @type {string}
|
|
19339
|
+
* @memberof EntitlementConnectionV2026
|
|
19340
|
+
*/
|
|
19341
|
+
'type'?: EntitlementConnectionV2026TypeV2026;
|
|
19342
|
+
/**
|
|
19343
|
+
* Current lifecycle state of the connection.
|
|
19344
|
+
* @type {string}
|
|
19345
|
+
* @memberof EntitlementConnectionV2026
|
|
19346
|
+
*/
|
|
19347
|
+
'state'?: string;
|
|
19348
|
+
/**
|
|
19349
|
+
* Time the connection state was last updated.
|
|
19350
|
+
* @type {string}
|
|
19351
|
+
* @memberof EntitlementConnectionV2026
|
|
19352
|
+
*/
|
|
19353
|
+
'stateChanged'?: string;
|
|
19354
|
+
/**
|
|
19355
|
+
* Identifier of the actor that last changed state.
|
|
19356
|
+
* @type {string}
|
|
19357
|
+
* @memberof EntitlementConnectionV2026
|
|
19358
|
+
*/
|
|
19359
|
+
'stateChangedBy'?: string;
|
|
19360
|
+
/**
|
|
19361
|
+
* Time JIT activation occurred.
|
|
19362
|
+
* @type {string}
|
|
19363
|
+
* @memberof EntitlementConnectionV2026
|
|
19364
|
+
*/
|
|
19365
|
+
'jitActivation'?: string;
|
|
19366
|
+
/**
|
|
19367
|
+
* Time provisioning completed for JIT activation.
|
|
19368
|
+
* @type {string}
|
|
19369
|
+
* @memberof EntitlementConnectionV2026
|
|
19370
|
+
*/
|
|
19371
|
+
'jitProvision'?: string;
|
|
19372
|
+
/**
|
|
19373
|
+
* Time JIT deactivation occurred.
|
|
19374
|
+
* @type {string}
|
|
19375
|
+
* @memberof EntitlementConnectionV2026
|
|
19376
|
+
*/
|
|
19377
|
+
'jitDeactivation'?: string;
|
|
19378
|
+
/**
|
|
19379
|
+
* Time deprovisioning completed after JIT deactivation.
|
|
19380
|
+
* @type {string}
|
|
19381
|
+
* @memberof EntitlementConnectionV2026
|
|
19382
|
+
*/
|
|
19383
|
+
'jitDeprovision'?: string;
|
|
19384
|
+
/**
|
|
19385
|
+
* Time when JIT access expires.
|
|
19386
|
+
* @type {string}
|
|
19387
|
+
* @memberof EntitlementConnectionV2026
|
|
19388
|
+
*/
|
|
19389
|
+
'jitExpiration'?: string;
|
|
19390
|
+
/**
|
|
19391
|
+
* Time after which the connection is eligible for deletion.
|
|
19392
|
+
* @type {string}
|
|
19393
|
+
* @memberof EntitlementConnectionV2026
|
|
19394
|
+
*/
|
|
19395
|
+
'deleteAfter'?: string;
|
|
19396
|
+
/**
|
|
19397
|
+
* Time when the connection was created.
|
|
19398
|
+
* @type {string}
|
|
19399
|
+
* @memberof EntitlementConnectionV2026
|
|
19400
|
+
*/
|
|
19401
|
+
'created'?: string;
|
|
19402
|
+
/**
|
|
19403
|
+
* Time when the connection was last modified.
|
|
19404
|
+
* @type {string}
|
|
19405
|
+
* @memberof EntitlementConnectionV2026
|
|
19406
|
+
*/
|
|
19407
|
+
'modified'?: string;
|
|
19408
|
+
/**
|
|
19409
|
+
* Display value for the actor associated with the latest change.
|
|
19410
|
+
* @type {string}
|
|
19411
|
+
* @memberof EntitlementConnectionV2026
|
|
19412
|
+
*/
|
|
19413
|
+
'actorName'?: string;
|
|
19414
|
+
}
|
|
19415
|
+
|
|
19416
|
+
export const EntitlementConnectionV2026TypeV2026 = {
|
|
19417
|
+
Jit: 'JIT',
|
|
19418
|
+
Standing: 'STANDING',
|
|
19419
|
+
Na: 'NA'
|
|
19420
|
+
} as const;
|
|
19421
|
+
|
|
19422
|
+
export type EntitlementConnectionV2026TypeV2026 = typeof EntitlementConnectionV2026TypeV2026[keyof typeof EntitlementConnectionV2026TypeV2026];
|
|
19423
|
+
|
|
19068
19424
|
/**
|
|
19069
19425
|
* Indicates whether the entitlement\'s display name and/or description have been manually updated.
|
|
19070
19426
|
* @export
|
|
@@ -27889,6 +28245,19 @@ export interface ListDeploys200ResponseV2026 {
|
|
|
27889
28245
|
*/
|
|
27890
28246
|
'items'?: Array<DeployResponseV2026>;
|
|
27891
28247
|
}
|
|
28248
|
+
/**
|
|
28249
|
+
*
|
|
28250
|
+
* @export
|
|
28251
|
+
* @interface ListEntitlementConnections412ResponseV2026
|
|
28252
|
+
*/
|
|
28253
|
+
export interface ListEntitlementConnections412ResponseV2026 {
|
|
28254
|
+
/**
|
|
28255
|
+
* A message describing the error
|
|
28256
|
+
* @type {object}
|
|
28257
|
+
* @memberof ListEntitlementConnections412ResponseV2026
|
|
28258
|
+
*/
|
|
28259
|
+
'message'?: object;
|
|
28260
|
+
}
|
|
27892
28261
|
/**
|
|
27893
28262
|
*
|
|
27894
28263
|
* @export
|
|
@@ -53158,19 +53527,6 @@ export const UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026 = {
|
|
|
53158
53527
|
|
|
53159
53528
|
export type UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026 = typeof UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026[keyof typeof UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026];
|
|
53160
53529
|
|
|
53161
|
-
/**
|
|
53162
|
-
*
|
|
53163
|
-
* @export
|
|
53164
|
-
* @interface UpdateAccessProfilesInBulk412ResponseV2026
|
|
53165
|
-
*/
|
|
53166
|
-
export interface UpdateAccessProfilesInBulk412ResponseV2026 {
|
|
53167
|
-
/**
|
|
53168
|
-
* A message describing the error
|
|
53169
|
-
* @type {object}
|
|
53170
|
-
* @memberof UpdateAccessProfilesInBulk412ResponseV2026
|
|
53171
|
-
*/
|
|
53172
|
-
'message'?: object;
|
|
53173
|
-
}
|
|
53174
53530
|
/**
|
|
53175
53531
|
*
|
|
53176
53532
|
* @export
|
|
@@ -86406,6 +86762,695 @@ export class DimensionsV2026Api extends BaseAPI {
|
|
|
86406
86762
|
|
|
86407
86763
|
|
|
86408
86764
|
|
|
86765
|
+
/**
|
|
86766
|
+
* EntitlementConnectionsV2026Api - axios parameter creator
|
|
86767
|
+
* @export
|
|
86768
|
+
*/
|
|
86769
|
+
export const EntitlementConnectionsV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
86770
|
+
return {
|
|
86771
|
+
/**
|
|
86772
|
+
* Returns entitlement connections for the tenant. This endpoint proxies to Search and supports standard collection query parameters. The `filters` and `sorters` values support the Entitlement Connections search fields documented by ECS.
|
|
86773
|
+
* @summary List entitlement connections
|
|
86774
|
+
* @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.
|
|
86775
|
+
* @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.
|
|
86776
|
+
* @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.
|
|
86777
|
+
* @param {string} [searchAfter] Used to begin the search window at the values specified. This parameter consists of the last values of the sorted fields in the current record set. searchAfter length must match the number of sorters. This is used to expand the Elasticsearch limit of 10K records by shifting the 10K window to begin at this value. It is recommended that you always include the ID of the object in addition to any other fields on this parameter in order to ensure you don\'t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter=Account Payable,2c91808375d8e80a0175e1f88a575221&sorters=name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \"Account Payable\", then using that name and ID will start a new search after this entitlement.
|
|
86778
|
+
* @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: **identity.id**: *eq, in* **identity.name**: *eq, in, co* **source.id**: *eq, in* **source.name**: *eq, in, co* **account.id**: *eq, in* **account.name**: *eq, in, co* **entitlement.id**: *eq, in* **entitlement.attribute**: *eq, in, co* **entitlement.value**: *eq, in, co* **entitlement.privilegeLevel.effective**: *eq, in, co* **type**: *eq, in* **state.value**: *eq, in, co* **standalone**: *eq, in* **jit.activation**: *gt, lt, ge, le* **jit.provision**: *gt, lt, ge, le* **jit.deactivation**: *gt, lt, ge, le* **jit.deprovision**: *gt, lt, ge, le* **jit.expiration**: *gt, lt, ge, le*
|
|
86779
|
+
* @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, identity.id, identity.name, source.id, source.name, account.id, account.name, entitlement.id, entitlement.displayName, entitlement.attribute, entitlement.privilegeLevel.effective, type, state.value, standalone, jit.activation, jit.provision, jit.deactivation, jit.deprovision, jit.expiration** Prefix a field with `-` for descending order.
|
|
86780
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86781
|
+
* @throws {RequiredError}
|
|
86782
|
+
*/
|
|
86783
|
+
listEntitlementConnections: async (offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86784
|
+
const localVarPath = `/entitlement-connections`;
|
|
86785
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86786
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86787
|
+
let baseOptions;
|
|
86788
|
+
if (configuration) {
|
|
86789
|
+
baseOptions = configuration.baseOptions;
|
|
86790
|
+
}
|
|
86791
|
+
|
|
86792
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
86793
|
+
const localVarHeaderParameter = {} as any;
|
|
86794
|
+
const localVarQueryParameter = {} as any;
|
|
86795
|
+
|
|
86796
|
+
// authentication userAuth required
|
|
86797
|
+
// oauth required
|
|
86798
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86799
|
+
|
|
86800
|
+
// authentication userAuth required
|
|
86801
|
+
// oauth required
|
|
86802
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86803
|
+
|
|
86804
|
+
if (offset !== undefined) {
|
|
86805
|
+
localVarQueryParameter['offset'] = offset;
|
|
86806
|
+
}
|
|
86807
|
+
|
|
86808
|
+
if (limit !== undefined) {
|
|
86809
|
+
localVarQueryParameter['limit'] = limit;
|
|
86810
|
+
}
|
|
86811
|
+
|
|
86812
|
+
if (count !== undefined) {
|
|
86813
|
+
localVarQueryParameter['count'] = count;
|
|
86814
|
+
}
|
|
86815
|
+
|
|
86816
|
+
if (searchAfter !== undefined) {
|
|
86817
|
+
localVarQueryParameter['searchAfter'] = searchAfter;
|
|
86818
|
+
}
|
|
86819
|
+
|
|
86820
|
+
if (filters !== undefined) {
|
|
86821
|
+
localVarQueryParameter['filters'] = filters;
|
|
86822
|
+
}
|
|
86823
|
+
|
|
86824
|
+
if (sorters !== undefined) {
|
|
86825
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
86826
|
+
}
|
|
86827
|
+
|
|
86828
|
+
|
|
86829
|
+
|
|
86830
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86831
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86832
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86833
|
+
|
|
86834
|
+
return {
|
|
86835
|
+
url: toPathString(localVarUrlObj),
|
|
86836
|
+
axiosOptions: localVarRequestOptions,
|
|
86837
|
+
};
|
|
86838
|
+
},
|
|
86839
|
+
/**
|
|
86840
|
+
* Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
|
|
86841
|
+
* @summary List my entitlement connections
|
|
86842
|
+
* @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.
|
|
86843
|
+
* @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.
|
|
86844
|
+
* @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.
|
|
86845
|
+
* @param {string} [searchAfter] Used to begin the search window at the values specified. This parameter consists of the last values of the sorted fields in the current record set. searchAfter length must match the number of sorters. This is used to expand the Elasticsearch limit of 10K records by shifting the 10K window to begin at this value. It is recommended that you always include the ID of the object in addition to any other fields on this parameter in order to ensure you don\'t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter=Account Payable,2c91808375d8e80a0175e1f88a575221&sorters=name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \"Account Payable\", then using that name and ID will start a new search after this entitlement.
|
|
86846
|
+
* @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: **identity.id**: *eq, in* **identity.name**: *eq, in, co* **source.id**: *eq, in* **source.name**: *eq, in, co* **account.id**: *eq, in* **account.name**: *eq, in, co* **entitlement.id**: *eq, in* **entitlement.attribute**: *eq, in, co* **entitlement.value**: *eq, in, co* **entitlement.privilegeLevel.effective**: *eq, in, co* **type**: *eq, in* **state.value**: *eq, in, co* **standalone**: *eq, in* **jit.activation**: *gt, lt, ge, le* **jit.provision**: *gt, lt, ge, le* **jit.deactivation**: *gt, lt, ge, le* **jit.deprovision**: *gt, lt, ge, le* **jit.expiration**: *gt, lt, ge, le* The authenticated identity scope is always applied by the service.
|
|
86847
|
+
* @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, identity.id, identity.name, source.id, source.name, account.id, account.name, entitlement.id, entitlement.displayName, entitlement.attribute, entitlement.privilegeLevel.effective, type, state.value, standalone, jit.activation, jit.provision, jit.deactivation, jit.deprovision, jit.expiration**
|
|
86848
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86849
|
+
* @throws {RequiredError}
|
|
86850
|
+
*/
|
|
86851
|
+
listEntitlementConnectionsForCurrentIdentity: async (offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86852
|
+
const localVarPath = `/entitlement-connections/current-identity`;
|
|
86853
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86854
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86855
|
+
let baseOptions;
|
|
86856
|
+
if (configuration) {
|
|
86857
|
+
baseOptions = configuration.baseOptions;
|
|
86858
|
+
}
|
|
86859
|
+
|
|
86860
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
86861
|
+
const localVarHeaderParameter = {} as any;
|
|
86862
|
+
const localVarQueryParameter = {} as any;
|
|
86863
|
+
|
|
86864
|
+
// authentication userAuth required
|
|
86865
|
+
// oauth required
|
|
86866
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86867
|
+
|
|
86868
|
+
// authentication userAuth required
|
|
86869
|
+
// oauth required
|
|
86870
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86871
|
+
|
|
86872
|
+
if (offset !== undefined) {
|
|
86873
|
+
localVarQueryParameter['offset'] = offset;
|
|
86874
|
+
}
|
|
86875
|
+
|
|
86876
|
+
if (limit !== undefined) {
|
|
86877
|
+
localVarQueryParameter['limit'] = limit;
|
|
86878
|
+
}
|
|
86879
|
+
|
|
86880
|
+
if (count !== undefined) {
|
|
86881
|
+
localVarQueryParameter['count'] = count;
|
|
86882
|
+
}
|
|
86883
|
+
|
|
86884
|
+
if (searchAfter !== undefined) {
|
|
86885
|
+
localVarQueryParameter['searchAfter'] = searchAfter;
|
|
86886
|
+
}
|
|
86887
|
+
|
|
86888
|
+
if (filters !== undefined) {
|
|
86889
|
+
localVarQueryParameter['filters'] = filters;
|
|
86890
|
+
}
|
|
86891
|
+
|
|
86892
|
+
if (sorters !== undefined) {
|
|
86893
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
86894
|
+
}
|
|
86895
|
+
|
|
86896
|
+
|
|
86897
|
+
|
|
86898
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86899
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86900
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86901
|
+
|
|
86902
|
+
return {
|
|
86903
|
+
url: toPathString(localVarUrlObj),
|
|
86904
|
+
axiosOptions: localVarRequestOptions,
|
|
86905
|
+
};
|
|
86906
|
+
},
|
|
86907
|
+
/**
|
|
86908
|
+
* Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
|
|
86909
|
+
* @summary Update entitlement connection
|
|
86910
|
+
* @param {string} connectionId Connection ID (UUID with or without hyphens).
|
|
86911
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
|
|
86912
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86913
|
+
* @throws {RequiredError}
|
|
86914
|
+
*/
|
|
86915
|
+
patchEntitlementConnectionById: async (connectionId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86916
|
+
// verify required parameter 'connectionId' is not null or undefined
|
|
86917
|
+
assertParamExists('patchEntitlementConnectionById', 'connectionId', connectionId)
|
|
86918
|
+
// verify required parameter 'jsonPatchOperationV2026' is not null or undefined
|
|
86919
|
+
assertParamExists('patchEntitlementConnectionById', 'jsonPatchOperationV2026', jsonPatchOperationV2026)
|
|
86920
|
+
const localVarPath = `/entitlement-connections/{connectionId}`
|
|
86921
|
+
.replace(`{${"connectionId"}}`, encodeURIComponent(String(connectionId)));
|
|
86922
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86923
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86924
|
+
let baseOptions;
|
|
86925
|
+
if (configuration) {
|
|
86926
|
+
baseOptions = configuration.baseOptions;
|
|
86927
|
+
}
|
|
86928
|
+
|
|
86929
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
86930
|
+
const localVarHeaderParameter = {} as any;
|
|
86931
|
+
const localVarQueryParameter = {} as any;
|
|
86932
|
+
|
|
86933
|
+
// authentication userAuth required
|
|
86934
|
+
// oauth required
|
|
86935
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86936
|
+
|
|
86937
|
+
// authentication userAuth required
|
|
86938
|
+
// oauth required
|
|
86939
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86940
|
+
|
|
86941
|
+
|
|
86942
|
+
|
|
86943
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
86944
|
+
|
|
86945
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86946
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86947
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86948
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2026, localVarRequestOptions, configuration)
|
|
86949
|
+
|
|
86950
|
+
return {
|
|
86951
|
+
url: toPathString(localVarUrlObj),
|
|
86952
|
+
axiosOptions: localVarRequestOptions,
|
|
86953
|
+
};
|
|
86954
|
+
},
|
|
86955
|
+
/**
|
|
86956
|
+
* Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
|
|
86957
|
+
* @summary Update connection by query
|
|
86958
|
+
* @param {string} entitlementId Entitlement ID (UUID with or without hyphens).
|
|
86959
|
+
* @param {string} identityId Identity ID (UUID with or without hyphens).
|
|
86960
|
+
* @param {string} accountId Account ID (UUID with or without hyphens).
|
|
86961
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
|
|
86962
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86963
|
+
* @throws {RequiredError}
|
|
86964
|
+
*/
|
|
86965
|
+
patchEntitlementConnectionByQuery: async (entitlementId: string, identityId: string, accountId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86966
|
+
// verify required parameter 'entitlementId' is not null or undefined
|
|
86967
|
+
assertParamExists('patchEntitlementConnectionByQuery', 'entitlementId', entitlementId)
|
|
86968
|
+
// verify required parameter 'identityId' is not null or undefined
|
|
86969
|
+
assertParamExists('patchEntitlementConnectionByQuery', 'identityId', identityId)
|
|
86970
|
+
// verify required parameter 'accountId' is not null or undefined
|
|
86971
|
+
assertParamExists('patchEntitlementConnectionByQuery', 'accountId', accountId)
|
|
86972
|
+
// verify required parameter 'jsonPatchOperationV2026' is not null or undefined
|
|
86973
|
+
assertParamExists('patchEntitlementConnectionByQuery', 'jsonPatchOperationV2026', jsonPatchOperationV2026)
|
|
86974
|
+
const localVarPath = `/entitlement-connections`;
|
|
86975
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86976
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86977
|
+
let baseOptions;
|
|
86978
|
+
if (configuration) {
|
|
86979
|
+
baseOptions = configuration.baseOptions;
|
|
86980
|
+
}
|
|
86981
|
+
|
|
86982
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
86983
|
+
const localVarHeaderParameter = {} as any;
|
|
86984
|
+
const localVarQueryParameter = {} as any;
|
|
86985
|
+
|
|
86986
|
+
// authentication userAuth required
|
|
86987
|
+
// oauth required
|
|
86988
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86989
|
+
|
|
86990
|
+
// authentication userAuth required
|
|
86991
|
+
// oauth required
|
|
86992
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86993
|
+
|
|
86994
|
+
if (entitlementId !== undefined) {
|
|
86995
|
+
localVarQueryParameter['entitlementId'] = entitlementId;
|
|
86996
|
+
}
|
|
86997
|
+
|
|
86998
|
+
if (identityId !== undefined) {
|
|
86999
|
+
localVarQueryParameter['identityId'] = identityId;
|
|
87000
|
+
}
|
|
87001
|
+
|
|
87002
|
+
if (accountId !== undefined) {
|
|
87003
|
+
localVarQueryParameter['accountId'] = accountId;
|
|
87004
|
+
}
|
|
87005
|
+
|
|
87006
|
+
|
|
87007
|
+
|
|
87008
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
87009
|
+
|
|
87010
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87011
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87012
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87013
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2026, localVarRequestOptions, configuration)
|
|
87014
|
+
|
|
87015
|
+
return {
|
|
87016
|
+
url: toPathString(localVarUrlObj),
|
|
87017
|
+
axiosOptions: localVarRequestOptions,
|
|
87018
|
+
};
|
|
87019
|
+
},
|
|
87020
|
+
/**
|
|
87021
|
+
* Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
|
|
87022
|
+
* @summary Update connections in bulk
|
|
87023
|
+
* @param {Array<EntitlementConnectionBulkUpdateItemV2026>} entitlementConnectionBulkUpdateItemV2026
|
|
87024
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87025
|
+
* @throws {RequiredError}
|
|
87026
|
+
*/
|
|
87027
|
+
updateEntitlementConnectionsBulk: async (entitlementConnectionBulkUpdateItemV2026: Array<EntitlementConnectionBulkUpdateItemV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87028
|
+
// verify required parameter 'entitlementConnectionBulkUpdateItemV2026' is not null or undefined
|
|
87029
|
+
assertParamExists('updateEntitlementConnectionsBulk', 'entitlementConnectionBulkUpdateItemV2026', entitlementConnectionBulkUpdateItemV2026)
|
|
87030
|
+
const localVarPath = `/entitlement-connections`;
|
|
87031
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87032
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
87033
|
+
let baseOptions;
|
|
87034
|
+
if (configuration) {
|
|
87035
|
+
baseOptions = configuration.baseOptions;
|
|
87036
|
+
}
|
|
87037
|
+
|
|
87038
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
87039
|
+
const localVarHeaderParameter = {} as any;
|
|
87040
|
+
const localVarQueryParameter = {} as any;
|
|
87041
|
+
|
|
87042
|
+
// authentication userAuth required
|
|
87043
|
+
// oauth required
|
|
87044
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87045
|
+
|
|
87046
|
+
// authentication userAuth required
|
|
87047
|
+
// oauth required
|
|
87048
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87049
|
+
|
|
87050
|
+
|
|
87051
|
+
|
|
87052
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
87053
|
+
|
|
87054
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87055
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87056
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87057
|
+
localVarRequestOptions.data = serializeDataIfNeeded(entitlementConnectionBulkUpdateItemV2026, localVarRequestOptions, configuration)
|
|
87058
|
+
|
|
87059
|
+
return {
|
|
87060
|
+
url: toPathString(localVarUrlObj),
|
|
87061
|
+
axiosOptions: localVarRequestOptions,
|
|
87062
|
+
};
|
|
87063
|
+
},
|
|
87064
|
+
}
|
|
87065
|
+
};
|
|
87066
|
+
|
|
87067
|
+
/**
|
|
87068
|
+
* EntitlementConnectionsV2026Api - functional programming interface
|
|
87069
|
+
* @export
|
|
87070
|
+
*/
|
|
87071
|
+
export const EntitlementConnectionsV2026ApiFp = function(configuration?: Configuration) {
|
|
87072
|
+
const localVarAxiosParamCreator = EntitlementConnectionsV2026ApiAxiosParamCreator(configuration)
|
|
87073
|
+
return {
|
|
87074
|
+
/**
|
|
87075
|
+
* Returns entitlement connections for the tenant. This endpoint proxies to Search and supports standard collection query parameters. The `filters` and `sorters` values support the Entitlement Connections search fields documented by ECS.
|
|
87076
|
+
* @summary List entitlement connections
|
|
87077
|
+
* @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.
|
|
87078
|
+
* @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.
|
|
87079
|
+
* @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.
|
|
87080
|
+
* @param {string} [searchAfter] Used to begin the search window at the values specified. This parameter consists of the last values of the sorted fields in the current record set. searchAfter length must match the number of sorters. This is used to expand the Elasticsearch limit of 10K records by shifting the 10K window to begin at this value. It is recommended that you always include the ID of the object in addition to any other fields on this parameter in order to ensure you don\'t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter=Account Payable,2c91808375d8e80a0175e1f88a575221&sorters=name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \"Account Payable\", then using that name and ID will start a new search after this entitlement.
|
|
87081
|
+
* @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: **identity.id**: *eq, in* **identity.name**: *eq, in, co* **source.id**: *eq, in* **source.name**: *eq, in, co* **account.id**: *eq, in* **account.name**: *eq, in, co* **entitlement.id**: *eq, in* **entitlement.attribute**: *eq, in, co* **entitlement.value**: *eq, in, co* **entitlement.privilegeLevel.effective**: *eq, in, co* **type**: *eq, in* **state.value**: *eq, in, co* **standalone**: *eq, in* **jit.activation**: *gt, lt, ge, le* **jit.provision**: *gt, lt, ge, le* **jit.deactivation**: *gt, lt, ge, le* **jit.deprovision**: *gt, lt, ge, le* **jit.expiration**: *gt, lt, ge, le*
|
|
87082
|
+
* @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, identity.id, identity.name, source.id, source.name, account.id, account.name, entitlement.id, entitlement.displayName, entitlement.attribute, entitlement.privilegeLevel.effective, type, state.value, standalone, jit.activation, jit.provision, jit.deactivation, jit.deprovision, jit.expiration** Prefix a field with `-` for descending order.
|
|
87083
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87084
|
+
* @throws {RequiredError}
|
|
87085
|
+
*/
|
|
87086
|
+
async listEntitlementConnections(offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementConnectionSearchHitV2026>>> {
|
|
87087
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementConnections(offset, limit, count, searchAfter, filters, sorters, axiosOptions);
|
|
87088
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87089
|
+
const localVarOperationServerBasePath = operationServerMap['EntitlementConnectionsV2026Api.listEntitlementConnections']?.[localVarOperationServerIndex]?.url;
|
|
87090
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87091
|
+
},
|
|
87092
|
+
/**
|
|
87093
|
+
* Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
|
|
87094
|
+
* @summary List my entitlement connections
|
|
87095
|
+
* @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.
|
|
87096
|
+
* @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.
|
|
87097
|
+
* @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.
|
|
87098
|
+
* @param {string} [searchAfter] Used to begin the search window at the values specified. This parameter consists of the last values of the sorted fields in the current record set. searchAfter length must match the number of sorters. This is used to expand the Elasticsearch limit of 10K records by shifting the 10K window to begin at this value. It is recommended that you always include the ID of the object in addition to any other fields on this parameter in order to ensure you don\'t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter=Account Payable,2c91808375d8e80a0175e1f88a575221&sorters=name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \"Account Payable\", then using that name and ID will start a new search after this entitlement.
|
|
87099
|
+
* @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: **identity.id**: *eq, in* **identity.name**: *eq, in, co* **source.id**: *eq, in* **source.name**: *eq, in, co* **account.id**: *eq, in* **account.name**: *eq, in, co* **entitlement.id**: *eq, in* **entitlement.attribute**: *eq, in, co* **entitlement.value**: *eq, in, co* **entitlement.privilegeLevel.effective**: *eq, in, co* **type**: *eq, in* **state.value**: *eq, in, co* **standalone**: *eq, in* **jit.activation**: *gt, lt, ge, le* **jit.provision**: *gt, lt, ge, le* **jit.deactivation**: *gt, lt, ge, le* **jit.deprovision**: *gt, lt, ge, le* **jit.expiration**: *gt, lt, ge, le* The authenticated identity scope is always applied by the service.
|
|
87100
|
+
* @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, identity.id, identity.name, source.id, source.name, account.id, account.name, entitlement.id, entitlement.displayName, entitlement.attribute, entitlement.privilegeLevel.effective, type, state.value, standalone, jit.activation, jit.provision, jit.deactivation, jit.deprovision, jit.expiration**
|
|
87101
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87102
|
+
* @throws {RequiredError}
|
|
87103
|
+
*/
|
|
87104
|
+
async listEntitlementConnectionsForCurrentIdentity(offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementConnectionSearchHitV2026>>> {
|
|
87105
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementConnectionsForCurrentIdentity(offset, limit, count, searchAfter, filters, sorters, axiosOptions);
|
|
87106
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87107
|
+
const localVarOperationServerBasePath = operationServerMap['EntitlementConnectionsV2026Api.listEntitlementConnectionsForCurrentIdentity']?.[localVarOperationServerIndex]?.url;
|
|
87108
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87109
|
+
},
|
|
87110
|
+
/**
|
|
87111
|
+
* Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
|
|
87112
|
+
* @summary Update entitlement connection
|
|
87113
|
+
* @param {string} connectionId Connection ID (UUID with or without hyphens).
|
|
87114
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
|
|
87115
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87116
|
+
* @throws {RequiredError}
|
|
87117
|
+
*/
|
|
87118
|
+
async patchEntitlementConnectionById(connectionId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementConnectionV2026>> {
|
|
87119
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntitlementConnectionById(connectionId, jsonPatchOperationV2026, axiosOptions);
|
|
87120
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87121
|
+
const localVarOperationServerBasePath = operationServerMap['EntitlementConnectionsV2026Api.patchEntitlementConnectionById']?.[localVarOperationServerIndex]?.url;
|
|
87122
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87123
|
+
},
|
|
87124
|
+
/**
|
|
87125
|
+
* Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
|
|
87126
|
+
* @summary Update connection by query
|
|
87127
|
+
* @param {string} entitlementId Entitlement ID (UUID with or without hyphens).
|
|
87128
|
+
* @param {string} identityId Identity ID (UUID with or without hyphens).
|
|
87129
|
+
* @param {string} accountId Account ID (UUID with or without hyphens).
|
|
87130
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
|
|
87131
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87132
|
+
* @throws {RequiredError}
|
|
87133
|
+
*/
|
|
87134
|
+
async patchEntitlementConnectionByQuery(entitlementId: string, identityId: string, accountId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementConnectionV2026>> {
|
|
87135
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntitlementConnectionByQuery(entitlementId, identityId, accountId, jsonPatchOperationV2026, axiosOptions);
|
|
87136
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87137
|
+
const localVarOperationServerBasePath = operationServerMap['EntitlementConnectionsV2026Api.patchEntitlementConnectionByQuery']?.[localVarOperationServerIndex]?.url;
|
|
87138
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87139
|
+
},
|
|
87140
|
+
/**
|
|
87141
|
+
* Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
|
|
87142
|
+
* @summary Update connections in bulk
|
|
87143
|
+
* @param {Array<EntitlementConnectionBulkUpdateItemV2026>} entitlementConnectionBulkUpdateItemV2026
|
|
87144
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87145
|
+
* @throws {RequiredError}
|
|
87146
|
+
*/
|
|
87147
|
+
async updateEntitlementConnectionsBulk(entitlementConnectionBulkUpdateItemV2026: Array<EntitlementConnectionBulkUpdateItemV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementConnectionBulkUpdateResultItemV2026>>> {
|
|
87148
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntitlementConnectionsBulk(entitlementConnectionBulkUpdateItemV2026, axiosOptions);
|
|
87149
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87150
|
+
const localVarOperationServerBasePath = operationServerMap['EntitlementConnectionsV2026Api.updateEntitlementConnectionsBulk']?.[localVarOperationServerIndex]?.url;
|
|
87151
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87152
|
+
},
|
|
87153
|
+
}
|
|
87154
|
+
};
|
|
87155
|
+
|
|
87156
|
+
/**
|
|
87157
|
+
* EntitlementConnectionsV2026Api - factory interface
|
|
87158
|
+
* @export
|
|
87159
|
+
*/
|
|
87160
|
+
export const EntitlementConnectionsV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
87161
|
+
const localVarFp = EntitlementConnectionsV2026ApiFp(configuration)
|
|
87162
|
+
return {
|
|
87163
|
+
/**
|
|
87164
|
+
* Returns entitlement connections for the tenant. This endpoint proxies to Search and supports standard collection query parameters. The `filters` and `sorters` values support the Entitlement Connections search fields documented by ECS.
|
|
87165
|
+
* @summary List entitlement connections
|
|
87166
|
+
* @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest} requestParameters Request parameters.
|
|
87167
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87168
|
+
* @throws {RequiredError}
|
|
87169
|
+
*/
|
|
87170
|
+
listEntitlementConnections(requestParameters: EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementConnectionSearchHitV2026>> {
|
|
87171
|
+
return localVarFp.listEntitlementConnections(requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.searchAfter, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
87172
|
+
},
|
|
87173
|
+
/**
|
|
87174
|
+
* Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
|
|
87175
|
+
* @summary List my entitlement connections
|
|
87176
|
+
* @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest} requestParameters Request parameters.
|
|
87177
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87178
|
+
* @throws {RequiredError}
|
|
87179
|
+
*/
|
|
87180
|
+
listEntitlementConnectionsForCurrentIdentity(requestParameters: EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementConnectionSearchHitV2026>> {
|
|
87181
|
+
return localVarFp.listEntitlementConnectionsForCurrentIdentity(requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.searchAfter, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
87182
|
+
},
|
|
87183
|
+
/**
|
|
87184
|
+
* Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
|
|
87185
|
+
* @summary Update entitlement connection
|
|
87186
|
+
* @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest} requestParameters Request parameters.
|
|
87187
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87188
|
+
* @throws {RequiredError}
|
|
87189
|
+
*/
|
|
87190
|
+
patchEntitlementConnectionById(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementConnectionV2026> {
|
|
87191
|
+
return localVarFp.patchEntitlementConnectionById(requestParameters.connectionId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
87192
|
+
},
|
|
87193
|
+
/**
|
|
87194
|
+
* Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
|
|
87195
|
+
* @summary Update connection by query
|
|
87196
|
+
* @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest} requestParameters Request parameters.
|
|
87197
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87198
|
+
* @throws {RequiredError}
|
|
87199
|
+
*/
|
|
87200
|
+
patchEntitlementConnectionByQuery(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementConnectionV2026> {
|
|
87201
|
+
return localVarFp.patchEntitlementConnectionByQuery(requestParameters.entitlementId, requestParameters.identityId, requestParameters.accountId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
87202
|
+
},
|
|
87203
|
+
/**
|
|
87204
|
+
* Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
|
|
87205
|
+
* @summary Update connections in bulk
|
|
87206
|
+
* @param {EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest} requestParameters Request parameters.
|
|
87207
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87208
|
+
* @throws {RequiredError}
|
|
87209
|
+
*/
|
|
87210
|
+
updateEntitlementConnectionsBulk(requestParameters: EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementConnectionBulkUpdateResultItemV2026>> {
|
|
87211
|
+
return localVarFp.updateEntitlementConnectionsBulk(requestParameters.entitlementConnectionBulkUpdateItemV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
87212
|
+
},
|
|
87213
|
+
};
|
|
87214
|
+
};
|
|
87215
|
+
|
|
87216
|
+
/**
|
|
87217
|
+
* Request parameters for listEntitlementConnections operation in EntitlementConnectionsV2026Api.
|
|
87218
|
+
* @export
|
|
87219
|
+
* @interface EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest
|
|
87220
|
+
*/
|
|
87221
|
+
export interface EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest {
|
|
87222
|
+
/**
|
|
87223
|
+
* 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.
|
|
87224
|
+
* @type {number}
|
|
87225
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
|
|
87226
|
+
*/
|
|
87227
|
+
readonly offset?: number
|
|
87228
|
+
|
|
87229
|
+
/**
|
|
87230
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
87231
|
+
* @type {number}
|
|
87232
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
|
|
87233
|
+
*/
|
|
87234
|
+
readonly limit?: number
|
|
87235
|
+
|
|
87236
|
+
/**
|
|
87237
|
+
* 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.
|
|
87238
|
+
* @type {boolean}
|
|
87239
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
|
|
87240
|
+
*/
|
|
87241
|
+
readonly count?: boolean
|
|
87242
|
+
|
|
87243
|
+
/**
|
|
87244
|
+
* Used to begin the search window at the values specified. This parameter consists of the last values of the sorted fields in the current record set. searchAfter length must match the number of sorters. This is used to expand the Elasticsearch limit of 10K records by shifting the 10K window to begin at this value. It is recommended that you always include the ID of the object in addition to any other fields on this parameter in order to ensure you don\'t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter=Account Payable,2c91808375d8e80a0175e1f88a575221&sorters=name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \"Account Payable\", then using that name and ID will start a new search after this entitlement.
|
|
87245
|
+
* @type {string}
|
|
87246
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
|
|
87247
|
+
*/
|
|
87248
|
+
readonly searchAfter?: string
|
|
87249
|
+
|
|
87250
|
+
/**
|
|
87251
|
+
* 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: **identity.id**: *eq, in* **identity.name**: *eq, in, co* **source.id**: *eq, in* **source.name**: *eq, in, co* **account.id**: *eq, in* **account.name**: *eq, in, co* **entitlement.id**: *eq, in* **entitlement.attribute**: *eq, in, co* **entitlement.value**: *eq, in, co* **entitlement.privilegeLevel.effective**: *eq, in, co* **type**: *eq, in* **state.value**: *eq, in, co* **standalone**: *eq, in* **jit.activation**: *gt, lt, ge, le* **jit.provision**: *gt, lt, ge, le* **jit.deactivation**: *gt, lt, ge, le* **jit.deprovision**: *gt, lt, ge, le* **jit.expiration**: *gt, lt, ge, le*
|
|
87252
|
+
* @type {string}
|
|
87253
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
|
|
87254
|
+
*/
|
|
87255
|
+
readonly filters?: string
|
|
87256
|
+
|
|
87257
|
+
/**
|
|
87258
|
+
* 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, identity.id, identity.name, source.id, source.name, account.id, account.name, entitlement.id, entitlement.displayName, entitlement.attribute, entitlement.privilegeLevel.effective, type, state.value, standalone, jit.activation, jit.provision, jit.deactivation, jit.deprovision, jit.expiration** Prefix a field with `-` for descending order.
|
|
87259
|
+
* @type {string}
|
|
87260
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
|
|
87261
|
+
*/
|
|
87262
|
+
readonly sorters?: string
|
|
87263
|
+
}
|
|
87264
|
+
|
|
87265
|
+
/**
|
|
87266
|
+
* Request parameters for listEntitlementConnectionsForCurrentIdentity operation in EntitlementConnectionsV2026Api.
|
|
87267
|
+
* @export
|
|
87268
|
+
* @interface EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest
|
|
87269
|
+
*/
|
|
87270
|
+
export interface EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest {
|
|
87271
|
+
/**
|
|
87272
|
+
* 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.
|
|
87273
|
+
* @type {number}
|
|
87274
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
|
|
87275
|
+
*/
|
|
87276
|
+
readonly offset?: number
|
|
87277
|
+
|
|
87278
|
+
/**
|
|
87279
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
87280
|
+
* @type {number}
|
|
87281
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
|
|
87282
|
+
*/
|
|
87283
|
+
readonly limit?: number
|
|
87284
|
+
|
|
87285
|
+
/**
|
|
87286
|
+
* 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.
|
|
87287
|
+
* @type {boolean}
|
|
87288
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
|
|
87289
|
+
*/
|
|
87290
|
+
readonly count?: boolean
|
|
87291
|
+
|
|
87292
|
+
/**
|
|
87293
|
+
* Used to begin the search window at the values specified. This parameter consists of the last values of the sorted fields in the current record set. searchAfter length must match the number of sorters. This is used to expand the Elasticsearch limit of 10K records by shifting the 10K window to begin at this value. It is recommended that you always include the ID of the object in addition to any other fields on this parameter in order to ensure you don\'t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter=Account Payable,2c91808375d8e80a0175e1f88a575221&sorters=name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \"Account Payable\", then using that name and ID will start a new search after this entitlement.
|
|
87294
|
+
* @type {string}
|
|
87295
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
|
|
87296
|
+
*/
|
|
87297
|
+
readonly searchAfter?: string
|
|
87298
|
+
|
|
87299
|
+
/**
|
|
87300
|
+
* 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: **identity.id**: *eq, in* **identity.name**: *eq, in, co* **source.id**: *eq, in* **source.name**: *eq, in, co* **account.id**: *eq, in* **account.name**: *eq, in, co* **entitlement.id**: *eq, in* **entitlement.attribute**: *eq, in, co* **entitlement.value**: *eq, in, co* **entitlement.privilegeLevel.effective**: *eq, in, co* **type**: *eq, in* **state.value**: *eq, in, co* **standalone**: *eq, in* **jit.activation**: *gt, lt, ge, le* **jit.provision**: *gt, lt, ge, le* **jit.deactivation**: *gt, lt, ge, le* **jit.deprovision**: *gt, lt, ge, le* **jit.expiration**: *gt, lt, ge, le* The authenticated identity scope is always applied by the service.
|
|
87301
|
+
* @type {string}
|
|
87302
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
|
|
87303
|
+
*/
|
|
87304
|
+
readonly filters?: string
|
|
87305
|
+
|
|
87306
|
+
/**
|
|
87307
|
+
* 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, identity.id, identity.name, source.id, source.name, account.id, account.name, entitlement.id, entitlement.displayName, entitlement.attribute, entitlement.privilegeLevel.effective, type, state.value, standalone, jit.activation, jit.provision, jit.deactivation, jit.deprovision, jit.expiration**
|
|
87308
|
+
* @type {string}
|
|
87309
|
+
* @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
|
|
87310
|
+
*/
|
|
87311
|
+
readonly sorters?: string
|
|
87312
|
+
}
|
|
87313
|
+
|
|
87314
|
+
/**
|
|
87315
|
+
* Request parameters for patchEntitlementConnectionById operation in EntitlementConnectionsV2026Api.
|
|
87316
|
+
* @export
|
|
87317
|
+
* @interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest
|
|
87318
|
+
*/
|
|
87319
|
+
export interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest {
|
|
87320
|
+
/**
|
|
87321
|
+
* Connection ID (UUID with or without hyphens).
|
|
87322
|
+
* @type {string}
|
|
87323
|
+
* @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionById
|
|
87324
|
+
*/
|
|
87325
|
+
readonly connectionId: string
|
|
87326
|
+
|
|
87327
|
+
/**
|
|
87328
|
+
*
|
|
87329
|
+
* @type {Array<JsonPatchOperationV2026>}
|
|
87330
|
+
* @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionById
|
|
87331
|
+
*/
|
|
87332
|
+
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>
|
|
87333
|
+
}
|
|
87334
|
+
|
|
87335
|
+
/**
|
|
87336
|
+
* Request parameters for patchEntitlementConnectionByQuery operation in EntitlementConnectionsV2026Api.
|
|
87337
|
+
* @export
|
|
87338
|
+
* @interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest
|
|
87339
|
+
*/
|
|
87340
|
+
export interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest {
|
|
87341
|
+
/**
|
|
87342
|
+
* Entitlement ID (UUID with or without hyphens).
|
|
87343
|
+
* @type {string}
|
|
87344
|
+
* @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
|
|
87345
|
+
*/
|
|
87346
|
+
readonly entitlementId: string
|
|
87347
|
+
|
|
87348
|
+
/**
|
|
87349
|
+
* Identity ID (UUID with or without hyphens).
|
|
87350
|
+
* @type {string}
|
|
87351
|
+
* @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
|
|
87352
|
+
*/
|
|
87353
|
+
readonly identityId: string
|
|
87354
|
+
|
|
87355
|
+
/**
|
|
87356
|
+
* Account ID (UUID with or without hyphens).
|
|
87357
|
+
* @type {string}
|
|
87358
|
+
* @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
|
|
87359
|
+
*/
|
|
87360
|
+
readonly accountId: string
|
|
87361
|
+
|
|
87362
|
+
/**
|
|
87363
|
+
*
|
|
87364
|
+
* @type {Array<JsonPatchOperationV2026>}
|
|
87365
|
+
* @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
|
|
87366
|
+
*/
|
|
87367
|
+
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>
|
|
87368
|
+
}
|
|
87369
|
+
|
|
87370
|
+
/**
|
|
87371
|
+
* Request parameters for updateEntitlementConnectionsBulk operation in EntitlementConnectionsV2026Api.
|
|
87372
|
+
* @export
|
|
87373
|
+
* @interface EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest
|
|
87374
|
+
*/
|
|
87375
|
+
export interface EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest {
|
|
87376
|
+
/**
|
|
87377
|
+
*
|
|
87378
|
+
* @type {Array<EntitlementConnectionBulkUpdateItemV2026>}
|
|
87379
|
+
* @memberof EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulk
|
|
87380
|
+
*/
|
|
87381
|
+
readonly entitlementConnectionBulkUpdateItemV2026: Array<EntitlementConnectionBulkUpdateItemV2026>
|
|
87382
|
+
}
|
|
87383
|
+
|
|
87384
|
+
/**
|
|
87385
|
+
* EntitlementConnectionsV2026Api - object-oriented interface
|
|
87386
|
+
* @export
|
|
87387
|
+
* @class EntitlementConnectionsV2026Api
|
|
87388
|
+
* @extends {BaseAPI}
|
|
87389
|
+
*/
|
|
87390
|
+
export class EntitlementConnectionsV2026Api extends BaseAPI {
|
|
87391
|
+
/**
|
|
87392
|
+
* Returns entitlement connections for the tenant. This endpoint proxies to Search and supports standard collection query parameters. The `filters` and `sorters` values support the Entitlement Connections search fields documented by ECS.
|
|
87393
|
+
* @summary List entitlement connections
|
|
87394
|
+
* @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest} requestParameters Request parameters.
|
|
87395
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87396
|
+
* @throws {RequiredError}
|
|
87397
|
+
* @memberof EntitlementConnectionsV2026Api
|
|
87398
|
+
*/
|
|
87399
|
+
public listEntitlementConnections(requestParameters: EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
87400
|
+
return EntitlementConnectionsV2026ApiFp(this.configuration).listEntitlementConnections(requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.searchAfter, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87401
|
+
}
|
|
87402
|
+
|
|
87403
|
+
/**
|
|
87404
|
+
* Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
|
|
87405
|
+
* @summary List my entitlement connections
|
|
87406
|
+
* @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest} requestParameters Request parameters.
|
|
87407
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87408
|
+
* @throws {RequiredError}
|
|
87409
|
+
* @memberof EntitlementConnectionsV2026Api
|
|
87410
|
+
*/
|
|
87411
|
+
public listEntitlementConnectionsForCurrentIdentity(requestParameters: EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
87412
|
+
return EntitlementConnectionsV2026ApiFp(this.configuration).listEntitlementConnectionsForCurrentIdentity(requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.searchAfter, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87413
|
+
}
|
|
87414
|
+
|
|
87415
|
+
/**
|
|
87416
|
+
* Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
|
|
87417
|
+
* @summary Update entitlement connection
|
|
87418
|
+
* @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest} requestParameters Request parameters.
|
|
87419
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87420
|
+
* @throws {RequiredError}
|
|
87421
|
+
* @memberof EntitlementConnectionsV2026Api
|
|
87422
|
+
*/
|
|
87423
|
+
public patchEntitlementConnectionById(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87424
|
+
return EntitlementConnectionsV2026ApiFp(this.configuration).patchEntitlementConnectionById(requestParameters.connectionId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87425
|
+
}
|
|
87426
|
+
|
|
87427
|
+
/**
|
|
87428
|
+
* Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
|
|
87429
|
+
* @summary Update connection by query
|
|
87430
|
+
* @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest} requestParameters Request parameters.
|
|
87431
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87432
|
+
* @throws {RequiredError}
|
|
87433
|
+
* @memberof EntitlementConnectionsV2026Api
|
|
87434
|
+
*/
|
|
87435
|
+
public patchEntitlementConnectionByQuery(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87436
|
+
return EntitlementConnectionsV2026ApiFp(this.configuration).patchEntitlementConnectionByQuery(requestParameters.entitlementId, requestParameters.identityId, requestParameters.accountId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87437
|
+
}
|
|
87438
|
+
|
|
87439
|
+
/**
|
|
87440
|
+
* Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
|
|
87441
|
+
* @summary Update connections in bulk
|
|
87442
|
+
* @param {EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest} requestParameters Request parameters.
|
|
87443
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87444
|
+
* @throws {RequiredError}
|
|
87445
|
+
* @memberof EntitlementConnectionsV2026Api
|
|
87446
|
+
*/
|
|
87447
|
+
public updateEntitlementConnectionsBulk(requestParameters: EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87448
|
+
return EntitlementConnectionsV2026ApiFp(this.configuration).updateEntitlementConnectionsBulk(requestParameters.entitlementConnectionBulkUpdateItemV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87449
|
+
}
|
|
87450
|
+
}
|
|
87451
|
+
|
|
87452
|
+
|
|
87453
|
+
|
|
86409
87454
|
/**
|
|
86410
87455
|
* EntitlementsV2026Api - axios parameter creator
|
|
86411
87456
|
* @export
|
|
@@ -101732,6 +102777,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
101732
102777
|
// oauth required
|
|
101733
102778
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
101734
102779
|
|
|
102780
|
+
// authentication applicationAuth required
|
|
102781
|
+
// oauth required
|
|
102782
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102783
|
+
|
|
101735
102784
|
|
|
101736
102785
|
|
|
101737
102786
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -101777,6 +102826,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
101777
102826
|
// oauth required
|
|
101778
102827
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
101779
102828
|
|
|
102829
|
+
// authentication applicationAuth required
|
|
102830
|
+
// oauth required
|
|
102831
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102832
|
+
|
|
101780
102833
|
|
|
101781
102834
|
|
|
101782
102835
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -101818,6 +102871,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
101818
102871
|
// oauth required
|
|
101819
102872
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
101820
102873
|
|
|
102874
|
+
// authentication applicationAuth required
|
|
102875
|
+
// oauth required
|
|
102876
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102877
|
+
|
|
101821
102878
|
|
|
101822
102879
|
|
|
101823
102880
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -101929,6 +102986,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
101929
102986
|
// oauth required
|
|
101930
102987
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
101931
102988
|
|
|
102989
|
+
// authentication applicationAuth required
|
|
102990
|
+
// oauth required
|
|
102991
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
102992
|
+
|
|
101932
102993
|
|
|
101933
102994
|
|
|
101934
102995
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -101974,6 +103035,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
101974
103035
|
// oauth required
|
|
101975
103036
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
101976
103037
|
|
|
103038
|
+
// authentication applicationAuth required
|
|
103039
|
+
// oauth required
|
|
103040
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103041
|
+
|
|
101977
103042
|
|
|
101978
103043
|
|
|
101979
103044
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -102173,6 +103238,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
102173
103238
|
// oauth required
|
|
102174
103239
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102175
103240
|
|
|
103241
|
+
// authentication applicationAuth required
|
|
103242
|
+
// oauth required
|
|
103243
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103244
|
+
|
|
102176
103245
|
|
|
102177
103246
|
|
|
102178
103247
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -102218,6 +103287,10 @@ export const IdentityProfilesV2026ApiAxiosParamCreator = function (configuration
|
|
|
102218
103287
|
// oauth required
|
|
102219
103288
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
102220
103289
|
|
|
103290
|
+
// authentication applicationAuth required
|
|
103291
|
+
// oauth required
|
|
103292
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103293
|
+
|
|
102221
103294
|
|
|
102222
103295
|
|
|
102223
103296
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|