sailpoint-api-client 1.8.60 → 1.8.62

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/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
@@ -20314,25 +20670,6 @@ export interface EntityCreatedByDTOV2026 {
20314
20670
  */
20315
20671
  'displayName'?: string;
20316
20672
  }
20317
- /**
20318
- *
20319
- * @export
20320
- * @interface ErrorBodyV2026
20321
- */
20322
- export interface ErrorBodyV2026 {
20323
- /**
20324
- * Machine-readable error code returned by the Intelligence Package service.
20325
- * @type {string}
20326
- * @memberof ErrorBodyV2026
20327
- */
20328
- 'detailCode'?: string;
20329
- /**
20330
- * Human-readable explanation of the error suitable for client logging.
20331
- * @type {string}
20332
- * @memberof ErrorBodyV2026
20333
- */
20334
- 'message'?: string;
20335
- }
20336
20673
  /**
20337
20674
  *
20338
20675
  * @export
@@ -26684,701 +27021,6 @@ export interface Int64StringKeyValuePairV2026 {
26684
27021
  */
26685
27022
  'value'?: string | null;
26686
27023
  }
26687
- /**
26688
- *
26689
- * @export
26690
- * @interface IntelAccessAccountWireV2026
26691
- */
26692
- export interface IntelAccessAccountWireV2026 {
26693
- /**
26694
- * Unique account identifier in Identity Security Cloud.
26695
- * @type {string}
26696
- * @memberof IntelAccessAccountWireV2026
26697
- */
26698
- 'id': string;
26699
- /**
26700
- * Account name or login value on the correlated source.
26701
- * @type {string}
26702
- * @memberof IntelAccessAccountWireV2026
26703
- */
26704
- 'name': string;
26705
- /**
26706
- * Source metadata for the account as returned by List Accounts wire format.
26707
- * @type {IntelAccessSourceWireV2026}
26708
- * @memberof IntelAccessAccountWireV2026
26709
- */
26710
- 'source'?: IntelAccessSourceWireV2026;
26711
- /**
26712
- * True when the account is administratively disabled on the source.
26713
- * @type {boolean}
26714
- * @memberof IntelAccessAccountWireV2026
26715
- */
26716
- 'disabled': boolean;
26717
- /**
26718
- * True when the account is locked from interactive sign-in on the source.
26719
- * @type {boolean}
26720
- * @memberof IntelAccessAccountWireV2026
26721
- */
26722
- 'locked': boolean;
26723
- /**
26724
- * True when the account is not correlated to an authoritative identity.
26725
- * @type {boolean}
26726
- * @memberof IntelAccessAccountWireV2026
26727
- */
26728
- 'uncorrelated': boolean;
26729
- /**
26730
- * True when the account is treated as authoritative for attribute synchronization.
26731
- * @type {boolean}
26732
- * @memberof IntelAccessAccountWireV2026
26733
- */
26734
- 'authoritative': boolean;
26735
- /**
26736
- * True when the account represents a non-interactive or system principal.
26737
- * @type {boolean}
26738
- * @memberof IntelAccessAccountWireV2026
26739
- */
26740
- 'systemAccount': boolean;
26741
- /**
26742
- * True when the account belongs to a machine or service identity.
26743
- * @type {boolean}
26744
- * @memberof IntelAccessAccountWireV2026
26745
- */
26746
- 'isMachine': boolean;
26747
- /**
26748
- * True when the account currently has one or more entitlements assigned.
26749
- * @type {boolean}
26750
- * @memberof IntelAccessAccountWireV2026
26751
- */
26752
- 'hasEntitlements': boolean;
26753
- /**
26754
- * True when an administrator manually correlated the account to an identity.
26755
- * @type {boolean}
26756
- * @memberof IntelAccessAccountWireV2026
26757
- */
26758
- 'manuallyCorrelated': boolean;
26759
- /**
26760
- * Connector connection type identifier for the backing source system.
26761
- * @type {string}
26762
- * @memberof IntelAccessAccountWireV2026
26763
- */
26764
- 'connectionType': string;
26765
- /**
26766
- * Native identifier string on the source directory or application.
26767
- * @type {string}
26768
- * @memberof IntelAccessAccountWireV2026
26769
- */
26770
- 'nativeIdentity'?: string | null;
26771
- /**
26772
- * Timestamp when the account record was created in Identity Security Cloud.
26773
- * @type {string}
26774
- * @memberof IntelAccessAccountWireV2026
26775
- */
26776
- 'created': string;
26777
- /**
26778
- * Timestamp when the account record was last modified in Identity Security Cloud.
26779
- * @type {string}
26780
- * @memberof IntelAccessAccountWireV2026
26781
- */
26782
- 'modified': string;
26783
- }
26784
- /**
26785
- *
26786
- * @export
26787
- * @interface IntelAccessSourceWireV2026
26788
- */
26789
- export interface IntelAccessSourceWireV2026 {
26790
- /**
26791
- * Source identifier referenced by the account wire object.
26792
- * @type {string}
26793
- * @memberof IntelAccessSourceWireV2026
26794
- */
26795
- 'id'?: string;
26796
- /**
26797
- * Human-readable source name shown in administrative consoles.
26798
- * @type {string}
26799
- * @memberof IntelAccessSourceWireV2026
26800
- */
26801
- 'name'?: string;
26802
- }
26803
- /**
26804
- *
26805
- * @export
26806
- * @interface IntelHrefV2026
26807
- */
26808
- export interface IntelHrefV2026 {
26809
- /**
26810
- * Target URI for the related Intelligence Package sub-resource or operation.
26811
- * @type {string}
26812
- * @memberof IntelHrefV2026
26813
- */
26814
- 'href': string;
26815
- }
26816
- /**
26817
- *
26818
- * @export
26819
- * @interface IntelHumanV2026
26820
- */
26821
- export interface IntelHumanV2026 {
26822
- /**
26823
- * Primary login or account alias for the human identity.
26824
- * @type {string}
26825
- * @memberof IntelHumanV2026
26826
- */
26827
- 'alias': string;
26828
- /**
26829
- * Primary business email address for the human identity.
26830
- * @type {string}
26831
- * @memberof IntelHumanV2026
26832
- */
26833
- 'email': string;
26834
- /**
26835
- * Current identity lifecycle status label from Identity Security Cloud.
26836
- * @type {string}
26837
- * @memberof IntelHumanV2026
26838
- */
26839
- 'identityStatus': string;
26840
- /**
26841
- * Lifecycle state name assigned through provisioning policy when present.
26842
- * @type {string}
26843
- * @memberof IntelHumanV2026
26844
- */
26845
- 'lifecycleState'?: string | null;
26846
- /**
26847
- * Processing state for outstanding identity change operations when present.
26848
- * @type {string}
26849
- * @memberof IntelHumanV2026
26850
- */
26851
- 'processingState'?: string | null;
26852
- /**
26853
- * True when the identity is marked protected from automated changes.
26854
- * @type {boolean}
26855
- * @memberof IntelHumanV2026
26856
- */
26857
- 'isProtected': boolean;
26858
- /**
26859
- * Legacy manager identity identifier or display reference when assigned.
26860
- * @type {string}
26861
- * @memberof IntelHumanV2026
26862
- */
26863
- 'manager'?: string | null;
26864
- /**
26865
- * Manager identity identifier when correlated in Identity Security Cloud.
26866
- * @type {string}
26867
- * @memberof IntelHumanV2026
26868
- */
26869
- 'managerId'?: string | null;
26870
- /**
26871
- * Manager display name when available from identity services.
26872
- * @type {string}
26873
- * @memberof IntelHumanV2026
26874
- */
26875
- 'managerName'?: string | null;
26876
- /**
26877
- * True when the identity is flagged as a people manager in the organization.
26878
- * @type {boolean}
26879
- * @memberof IntelHumanV2026
26880
- */
26881
- 'isManager': boolean;
26882
- /**
26883
- * Timestamp of the last successful identity refresh from sources when known.
26884
- * @type {string}
26885
- * @memberof IntelHumanV2026
26886
- */
26887
- 'lastRefreshAt'?: string | null;
26888
- }
26889
- /**
26890
- *
26891
- * @export
26892
- * @interface IntelIdentityAccessBodyV2026
26893
- */
26894
- export interface IntelIdentityAccessBodyV2026 {
26895
- /**
26896
- * Accounts for the identity in camelCase wire format from Shelby List Accounts.
26897
- * @type {Array<IntelAccessAccountWireV2026>}
26898
- * @memberof IntelIdentityAccessBodyV2026
26899
- */
26900
- 'accounts': Array<IntelAccessAccountWireV2026>;
26901
- /**
26902
- * Privileged access items for the identity returned by SDS Search.
26903
- * @type {Array<IntelPrivilegedAccessItemWireV2026>}
26904
- * @memberof IntelIdentityAccessBodyV2026
26905
- */
26906
- 'privilegedAccessItems': Array<IntelPrivilegedAccessItemWireV2026>;
26907
- }
26908
- /**
26909
- *
26910
- * @export
26911
- * @interface IntelIdentityAccessHistoryBodyV2026
26912
- */
26913
- export interface IntelIdentityAccessHistoryBodyV2026 {
26914
- /**
26915
- * Each event is relayed from identity-history. Schema varies by event type; consumers should treat unknown fields as opaque using additionalProperties.
26916
- * @type {Array<{ [key: string]: any; }>}
26917
- * @memberof IntelIdentityAccessHistoryBodyV2026
26918
- */
26919
- 'events': Array<{ [key: string]: any; }>;
26920
- }
26921
- /**
26922
- *
26923
- * @export
26924
- * @interface IntelIdentityAmbiguousBodyV2026
26925
- */
26926
- export interface IntelIdentityAmbiguousBodyV2026 {
26927
- /**
26928
- * Constant detail code indicating that more than one identity matched the filter.
26929
- * @type {string}
26930
- * @memberof IntelIdentityAmbiguousBodyV2026
26931
- */
26932
- 'detailCode': IntelIdentityAmbiguousBodyV2026DetailCodeV2026;
26933
- /**
26934
- * Optional explanatory text describing why the filter was considered ambiguous.
26935
- * @type {string}
26936
- * @memberof IntelIdentityAmbiguousBodyV2026
26937
- */
26938
- 'message'?: string;
26939
- /**
26940
- * Collection of identities that matched the ambiguous filter expression.
26941
- * @type {Array<IntelIdentityAmbiguousCandidateV2026>}
26942
- * @memberof IntelIdentityAmbiguousBodyV2026
26943
- */
26944
- 'candidates': Array<IntelIdentityAmbiguousCandidateV2026>;
26945
- }
26946
-
26947
- export const IntelIdentityAmbiguousBodyV2026DetailCodeV2026 = {
26948
- IdcIdentityAmbiguous: 'IDC_IDENTITY_AMBIGUOUS'
26949
- } as const;
26950
-
26951
- export type IntelIdentityAmbiguousBodyV2026DetailCodeV2026 = typeof IntelIdentityAmbiguousBodyV2026DetailCodeV2026[keyof typeof IntelIdentityAmbiguousBodyV2026DetailCodeV2026];
26952
-
26953
- /**
26954
- *
26955
- * @export
26956
- * @interface IntelIdentityAmbiguousCandidateV2026
26957
- */
26958
- export interface IntelIdentityAmbiguousCandidateV2026 {
26959
- /**
26960
- * Identity identifier for one of the ambiguous matching identities.
26961
- * @type {string}
26962
- * @memberof IntelIdentityAmbiguousCandidateV2026
26963
- */
26964
- 'id': string;
26965
- /**
26966
- * Display name for the ambiguous matching identity when available.
26967
- * @type {string}
26968
- * @memberof IntelIdentityAmbiguousCandidateV2026
26969
- */
26970
- 'displayName'?: string;
26971
- }
26972
- /**
26973
- *
26974
- * @export
26975
- * @interface IntelIdentityLinksV2026
26976
- */
26977
- export interface IntelIdentityLinksV2026 {
26978
- /**
26979
- * Hyperlink to the Intelligence Package access document for this identity.
26980
- * @type {IntelHrefV2026}
26981
- * @memberof IntelIdentityLinksV2026
26982
- */
26983
- 'access': IntelHrefV2026;
26984
- /**
26985
- * Hyperlink to the Intelligence Package risk document for this identity.
26986
- * @type {IntelHrefV2026}
26987
- * @memberof IntelIdentityLinksV2026
26988
- */
26989
- 'risk': IntelHrefV2026;
26990
- /**
26991
- * Hyperlink to the Intelligence Package access history document for this identity.
26992
- * @type {IntelHrefV2026}
26993
- * @memberof IntelIdentityLinksV2026
26994
- */
26995
- 'accessHistory': IntelHrefV2026;
26996
- }
26997
- /**
26998
- *
26999
- * @export
27000
- * @interface IntelIdentityNotFoundBodyV2026
27001
- */
27002
- export interface IntelIdentityNotFoundBodyV2026 {
27003
- /**
27004
- * Constant detail code indicating that no identity matched the supplied filter.
27005
- * @type {string}
27006
- * @memberof IntelIdentityNotFoundBodyV2026
27007
- */
27008
- 'detailCode': IntelIdentityNotFoundBodyV2026DetailCodeV2026;
27009
- /**
27010
- * Optional explanatory text describing why no identity was found.
27011
- * @type {string}
27012
- * @memberof IntelIdentityNotFoundBodyV2026
27013
- */
27014
- 'message'?: string;
27015
- }
27016
-
27017
- export const IntelIdentityNotFoundBodyV2026DetailCodeV2026 = {
27018
- IdcIdentityNotFound: 'IDC_IDENTITY_NOT_FOUND'
27019
- } as const;
27020
-
27021
- export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
27022
-
27023
- /**
27024
- * HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access, risk, and accessHistory). MACHINE responses include machine and top-level subtype (connector subtype string); _links is omitted.
27025
- * @export
27026
- * @interface IntelIdentityResponseV2026
27027
- */
27028
- export interface IntelIdentityResponseV2026 {
27029
- /**
27030
- * Identity Security Cloud identifier for this identity.
27031
- * @type {string}
27032
- * @memberof IntelIdentityResponseV2026
27033
- */
27034
- 'id': string;
27035
- /**
27036
- * Discriminator indicating whether this identity is human or machine backed.
27037
- * @type {string}
27038
- * @memberof IntelIdentityResponseV2026
27039
- */
27040
- 'type': IntelIdentityResponseV2026TypeV2026;
27041
- /**
27042
- * Preferred display name for the identity across administrative experiences.
27043
- * @type {string}
27044
- * @memberof IntelIdentityResponseV2026
27045
- */
27046
- 'displayName'?: string;
27047
- /**
27048
- * Optional free-text description assigned to the identity profile when present.
27049
- * @type {string}
27050
- * @memberof IntelIdentityResponseV2026
27051
- */
27052
- 'description'?: string | null;
27053
- /**
27054
- * For HUMAN identities, NERM classification (Employee, Non Employee, or Cannot Determine). For MACHINE identities, connector subtype string from the authoritative source.
27055
- * @type {string}
27056
- * @memberof IntelIdentityResponseV2026
27057
- */
27058
- 'subtype'?: string | null;
27059
- /**
27060
- * Serialized owner reference information when populated by upstream identity services.
27061
- * @type {string}
27062
- * @memberof IntelIdentityResponseV2026
27063
- */
27064
- 'owners'?: string | null;
27065
- /**
27066
- * Arbitrary SCIM-style attribute bag returned for the identity context view.
27067
- * @type {{ [key: string]: any; }}
27068
- * @memberof IntelIdentityResponseV2026
27069
- */
27070
- 'attributes'?: { [key: string]: any; };
27071
- /**
27072
- * Created and modified timestamps for the identity record in Identity Security Cloud.
27073
- * @type {IntelIdentityTimestampsV2026}
27074
- * @memberof IntelIdentityResponseV2026
27075
- */
27076
- 'timestamps': IntelIdentityTimestampsV2026;
27077
- /**
27078
- * Human identity extension payload when type is HUMAN.
27079
- * @type {IntelHumanV2026}
27080
- * @memberof IntelIdentityResponseV2026
27081
- */
27082
- 'human'?: IntelHumanV2026 | null;
27083
- /**
27084
- * Machine identity extension payload when type is MACHINE.
27085
- * @type {IntelMachineV2026}
27086
- * @memberof IntelIdentityResponseV2026
27087
- */
27088
- 'machine'?: IntelMachineV2026 | null;
27089
- /**
27090
- * Hyperlinks to related Intelligence Package sub-resources; present for HUMAN only.
27091
- * @type {IntelIdentityLinksV2026}
27092
- * @memberof IntelIdentityResponseV2026
27093
- */
27094
- '_links'?: IntelIdentityLinksV2026 | null;
27095
- }
27096
-
27097
- export const IntelIdentityResponseV2026TypeV2026 = {
27098
- Human: 'HUMAN',
27099
- Machine: 'MACHINE'
27100
- } as const;
27101
-
27102
- export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
27103
-
27104
- /**
27105
- * Shared response envelope for risk endpoints.
27106
- * @export
27107
- * @interface IntelIdentityRiskBodyV2026
27108
- */
27109
- export interface IntelIdentityRiskBodyV2026 {
27110
- /**
27111
- * Page of outlier access-items associated with the resolved identity outlier.
27112
- * @type {Array<IntelOutlierAccessItemV2026>}
27113
- * @memberof IntelIdentityRiskBodyV2026
27114
- */
27115
- 'outliers': Array<IntelOutlierAccessItemV2026>;
27116
- /**
27117
- * Total available outlier access-item count from upstream.
27118
- * @type {number}
27119
- * @memberof IntelIdentityRiskBodyV2026
27120
- */
27121
- 'outliersTotal': number | null;
27122
- /**
27123
- * Continuation links map; omitted when no additional page exists.
27124
- * @type {IntelRiskLinksV2026}
27125
- * @memberof IntelIdentityRiskBodyV2026
27126
- */
27127
- '_links'?: IntelRiskLinksV2026 | null;
27128
- }
27129
- /**
27130
- *
27131
- * @export
27132
- * @interface IntelIdentityTimestampsV2026
27133
- */
27134
- export interface IntelIdentityTimestampsV2026 {
27135
- /**
27136
- * Timestamp when the identity record was first created in Identity Security Cloud.
27137
- * @type {string}
27138
- * @memberof IntelIdentityTimestampsV2026
27139
- */
27140
- 'createdAt': string;
27141
- /**
27142
- * Timestamp when the identity record was last modified in Identity Security Cloud.
27143
- * @type {string}
27144
- * @memberof IntelIdentityTimestampsV2026
27145
- */
27146
- 'modifiedAt': string;
27147
- }
27148
- /**
27149
- *
27150
- * @export
27151
- * @interface IntelMachineSourceV2026
27152
- */
27153
- export interface IntelMachineSourceV2026 {
27154
- /**
27155
- * Unique identifier of the correlated source in Identity Security Cloud.
27156
- * @type {string}
27157
- * @memberof IntelMachineSourceV2026
27158
- */
27159
- 'id'?: string;
27160
- /**
27161
- * Display name of the source as configured in Identity Security Cloud.
27162
- * @type {string}
27163
- * @memberof IntelMachineSourceV2026
27164
- */
27165
- 'name'?: string;
27166
- /**
27167
- * Connector or source type classification for the backing system.
27168
- * @type {string}
27169
- * @memberof IntelMachineSourceV2026
27170
- */
27171
- 'type'?: string;
27172
- }
27173
- /**
27174
- * MACHINE-specific block; subtype is only on the top-level IntelIdentityResponse.
27175
- * @export
27176
- * @interface IntelMachineV2026
27177
- */
27178
- export interface IntelMachineV2026 {
27179
- /**
27180
- * Business application name associated with the non-human identity.
27181
- * @type {string}
27182
- * @memberof IntelMachineV2026
27183
- */
27184
- 'businessApplication'?: string;
27185
- /**
27186
- * Native identifier value on the authoritative source for the machine identity.
27187
- * @type {string}
27188
- * @memberof IntelMachineV2026
27189
- */
27190
- 'nativeIdentity'?: string;
27191
- /**
27192
- * Optional globally unique identifier for the machine identity when assigned.
27193
- * @type {string}
27194
- * @memberof IntelMachineV2026
27195
- */
27196
- 'uuid'?: string | null;
27197
- /**
27198
- * Identifier of the correlated source for this machine identity.
27199
- * @type {string}
27200
- * @memberof IntelMachineV2026
27201
- */
27202
- 'sourceId'?: string;
27203
- /**
27204
- * Correlated source summary for the machine identity when available.
27205
- * @type {IntelMachineSourceV2026}
27206
- * @memberof IntelMachineV2026
27207
- */
27208
- 'source'?: IntelMachineSourceV2026;
27209
- /**
27210
- * Dataset identifier used by machine identity correlation logic.
27211
- * @type {string}
27212
- * @memberof IntelMachineV2026
27213
- */
27214
- 'datasetId'?: string;
27215
- /**
27216
- * True when a matching account still exists on the connected source.
27217
- * @type {boolean}
27218
- * @memberof IntelMachineV2026
27219
- */
27220
- 'existsOnSource'?: boolean;
27221
- /**
27222
- * True when the machine identity was created through a manual administrative action.
27223
- * @type {boolean}
27224
- * @memberof IntelMachineV2026
27225
- */
27226
- 'manuallyCreated'?: boolean;
27227
- /**
27228
- * True when the machine identity attributes were manually edited after creation.
27229
- * @type {boolean}
27230
- * @memberof IntelMachineV2026
27231
- */
27232
- 'manuallyEdited'?: boolean;
27233
- /**
27234
- * Structured owner references for the machine identity when populated by the service.
27235
- * @type {object}
27236
- * @memberof IntelMachineV2026
27237
- */
27238
- 'owners'?: object;
27239
- /**
27240
- * Entitlements or fine-grained rights linked to the machine identity when available.
27241
- * @type {Array<object>}
27242
- * @memberof IntelMachineV2026
27243
- */
27244
- 'userEntitlements'?: Array<object>;
27245
- }
27246
- /**
27247
- * One outlier access-item row.
27248
- * @export
27249
- * @interface IntelOutlierAccessItemV2026
27250
- */
27251
- export interface IntelOutlierAccessItemV2026 {
27252
- /**
27253
- * Stable identifier of the outlier access-item row.
27254
- * @type {string}
27255
- * @memberof IntelOutlierAccessItemV2026
27256
- */
27257
- 'id': string;
27258
- /**
27259
- * Display label of the risky access item.
27260
- * @type {string}
27261
- * @memberof IntelOutlierAccessItemV2026
27262
- */
27263
- 'displayName': string;
27264
- /**
27265
- * Optional descriptive text for the risky access item.
27266
- * @type {string}
27267
- * @memberof IntelOutlierAccessItemV2026
27268
- */
27269
- 'description'?: string | null;
27270
- /**
27271
- * Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
27272
- * @type {string}
27273
- * @memberof IntelOutlierAccessItemV2026
27274
- */
27275
- 'accessType': string;
27276
- /**
27277
- * Source name where the risky access item exists.
27278
- * @type {string}
27279
- * @memberof IntelOutlierAccessItemV2026
27280
- */
27281
- 'sourceName': string;
27282
- /**
27283
- * Indicates whether analytics marked this item as extremely rare.
27284
- * @type {boolean}
27285
- * @memberof IntelOutlierAccessItemV2026
27286
- */
27287
- 'extremelyRare': boolean;
27288
- }
27289
- /**
27290
- * Source metadata associated with the privileged access item when present.
27291
- * @export
27292
- * @interface IntelPrivilegedAccessItemWireSourceV2026
27293
- */
27294
- export interface IntelPrivilegedAccessItemWireSourceV2026 {
27295
- /**
27296
- * Human-readable source name for the privileged access item.
27297
- * @type {string}
27298
- * @memberof IntelPrivilegedAccessItemWireSourceV2026
27299
- */
27300
- 'name'?: string;
27301
- /**
27302
- * Source identifier for the privileged access item.
27303
- * @type {string}
27304
- * @memberof IntelPrivilegedAccessItemWireSourceV2026
27305
- */
27306
- 'id'?: string;
27307
- }
27308
- /**
27309
- *
27310
- * @export
27311
- * @interface IntelPrivilegedAccessItemWireV2026
27312
- */
27313
- export interface IntelPrivilegedAccessItemWireV2026 {
27314
- /**
27315
- * True when SDS Search classifies this item as privileged access for the identity.
27316
- * @type {boolean}
27317
- * @memberof IntelPrivilegedAccessItemWireV2026
27318
- */
27319
- 'privileged': boolean;
27320
- /**
27321
- * Display label for the privileged access item in administrative experiences.
27322
- * @type {string}
27323
- * @memberof IntelPrivilegedAccessItemWireV2026
27324
- */
27325
- 'displayName'?: string;
27326
- /**
27327
- * Technical name of the privileged access item from SDS Search.
27328
- * @type {string}
27329
- * @memberof IntelPrivilegedAccessItemWireV2026
27330
- */
27331
- 'name'?: string;
27332
- /**
27333
- * True when the privileged item is modeled as a standalone entitlement or access object.
27334
- * @type {boolean}
27335
- * @memberof IntelPrivilegedAccessItemWireV2026
27336
- */
27337
- 'standalone'?: boolean;
27338
- /**
27339
- * Identifier of the privileged access item returned by SDS Search.
27340
- * @type {string}
27341
- * @memberof IntelPrivilegedAccessItemWireV2026
27342
- */
27343
- 'id': string;
27344
- /**
27345
- *
27346
- * @type {IntelPrivilegedAccessItemWireSourceV2026}
27347
- * @memberof IntelPrivilegedAccessItemWireV2026
27348
- */
27349
- 'source'?: IntelPrivilegedAccessItemWireSourceV2026;
27350
- /**
27351
- * Source attribute name that carries the privileged value when applicable.
27352
- * @type {string}
27353
- * @memberof IntelPrivilegedAccessItemWireV2026
27354
- */
27355
- 'attribute'?: string;
27356
- /**
27357
- * Object type classification from SDS Search (for example ENTITLEMENT).
27358
- * @type {string}
27359
- * @memberof IntelPrivilegedAccessItemWireV2026
27360
- */
27361
- 'type': string;
27362
- /**
27363
- * Privileged value on the source attribute when applicable.
27364
- * @type {string}
27365
- * @memberof IntelPrivilegedAccessItemWireV2026
27366
- */
27367
- 'value'?: string;
27368
- }
27369
- /**
27370
- * Continuation links for risk responses.
27371
- * @export
27372
- * @interface IntelRiskLinksV2026
27373
- */
27374
- export interface IntelRiskLinksV2026 {
27375
- /**
27376
- * Link to fetch the next outlier page for the same identity.
27377
- * @type {IntelHrefV2026}
27378
- * @memberof IntelRiskLinksV2026
27379
- */
27380
- 'outliers'?: IntelHrefV2026;
27381
- }
27382
27024
  /**
27383
27025
  *
27384
27026
  * @export
@@ -28603,6 +28245,19 @@ export interface ListDeploys200ResponseV2026 {
28603
28245
  */
28604
28246
  'items'?: Array<DeployResponseV2026>;
28605
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
+ }
28606
28261
  /**
28607
28262
  *
28608
28263
  * @export
@@ -53872,19 +53527,6 @@ export const UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026 = {
53872
53527
 
53873
53528
  export type UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026 = typeof UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026[keyof typeof UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026];
53874
53529
 
53875
- /**
53876
- *
53877
- * @export
53878
- * @interface UpdateAccessProfilesInBulk412ResponseV2026
53879
- */
53880
- export interface UpdateAccessProfilesInBulk412ResponseV2026 {
53881
- /**
53882
- * A message describing the error
53883
- * @type {object}
53884
- * @memberof UpdateAccessProfilesInBulk412ResponseV2026
53885
- */
53886
- 'message'?: object;
53887
- }
53888
53530
  /**
53889
53531
  *
53890
53532
  * @export
@@ -87120,6 +86762,695 @@ export class DimensionsV2026Api extends BaseAPI {
87120
86762
 
87121
86763
 
87122
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&#x3D;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\&#39;t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter&#x3D;Account Payable,2c91808375d8e80a0175e1f88a575221&amp;sorters&#x3D;name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \&quot;Account Payable\&quot;, 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 &#x60;-&#x60; 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&#x3D;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\&#39;t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter&#x3D;Account Payable,2c91808375d8e80a0175e1f88a575221&amp;sorters&#x3D;name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \&quot;Account Payable\&quot;, 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&#x3D;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\&#39;t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter&#x3D;Account Payable,2c91808375d8e80a0175e1f88a575221&amp;sorters&#x3D;name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \&quot;Account Payable\&quot;, 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 &#x60;-&#x60; 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&#x3D;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\&#39;t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter&#x3D;Account Payable,2c91808375d8e80a0175e1f88a575221&amp;sorters&#x3D;name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \&quot;Account Payable\&quot;, 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&#x3D;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\&#39;t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter&#x3D;Account Payable,2c91808375d8e80a0175e1f88a575221&amp;sorters&#x3D;name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \&quot;Account Payable\&quot;, 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 &#x60;-&#x60; 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&#x3D;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\&#39;t get duplicate results while paging. For example, if you are sorting by name you will also want to include ID, for example searchAfter&#x3D;Account Payable,2c91808375d8e80a0175e1f88a575221&amp;sorters&#x3D;name,id. If the last entitlement ID in the search result is 2c91808375d8e80a0175e1f88a575221 and the last name is \&quot;Account Payable\&quot;, 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
+
87123
87454
  /**
87124
87455
  * EntitlementsV2026Api - axios parameter creator
87125
87456
  * @export
@@ -103590,588 +103921,6 @@ export class IdentityProfilesV2026Api extends BaseAPI {
103590
103921
 
103591
103922
 
103592
103923
 
103593
- /**
103594
- * IntelligencePackageV2026Api - axios parameter creator
103595
- * @export
103596
- */
103597
- export const IntelligencePackageV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
103598
- return {
103599
- /**
103600
- * Requires tenant license idn:response-and-remediation. Client-facing pagination (limit, offset, count) is not supported on this route. The service issues one Shelby List Accounts request at the upstream maximum page size and one SDS Search request per identity.
103601
- * @summary Accounts merged with privileged data
103602
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103603
- * @param {*} [axiosOptions] Override http request option.
103604
- * @throws {RequiredError}
103605
- */
103606
- getIntelIdentityAccess: async (identityID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103607
- // verify required parameter 'identityID' is not null or undefined
103608
- assertParamExists('getIntelIdentityAccess', 'identityID', identityID)
103609
- const localVarPath = `/intelligence/identities/{identityID}/access`
103610
- .replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
103611
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
103612
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103613
- let baseOptions;
103614
- if (configuration) {
103615
- baseOptions = configuration.baseOptions;
103616
- }
103617
-
103618
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103619
- const localVarHeaderParameter = {} as any;
103620
- const localVarQueryParameter = {} as any;
103621
-
103622
- // authentication userAuth required
103623
- // oauth required
103624
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103625
-
103626
- // authentication userAuth required
103627
- // oauth required
103628
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103629
-
103630
- // authentication applicationAuth required
103631
- // oauth required
103632
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
103633
-
103634
-
103635
-
103636
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103637
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103638
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103639
-
103640
- return {
103641
- url: toPathString(localVarUrlObj),
103642
- axiosOptions: localVarRequestOptions,
103643
- };
103644
- },
103645
- /**
103646
- * Requires tenant license idn:response-and-remediation. Events are relayed from identity-history; optional limit, offset, and count are forwarded to the upstream when supplied.
103647
- * @summary Return identity access-history events
103648
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103649
- * @param {number} [limit] Maximum number of historical events to return in this page of results.
103650
- * @param {number} [offset] Zero-based index of the first event row to return for pagination.
103651
- * @param {boolean} [count] When true, the service may include total count metadata alongside the result list.
103652
- * @param {*} [axiosOptions] Override http request option.
103653
- * @throws {RequiredError}
103654
- */
103655
- getIntelIdentityAccessHistory: async (identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103656
- // verify required parameter 'identityID' is not null or undefined
103657
- assertParamExists('getIntelIdentityAccessHistory', 'identityID', identityID)
103658
- const localVarPath = `/intelligence/identities/{identityID}/access-history`
103659
- .replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
103660
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
103661
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103662
- let baseOptions;
103663
- if (configuration) {
103664
- baseOptions = configuration.baseOptions;
103665
- }
103666
-
103667
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103668
- const localVarHeaderParameter = {} as any;
103669
- const localVarQueryParameter = {} as any;
103670
-
103671
- // authentication userAuth required
103672
- // oauth required
103673
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103674
-
103675
- // authentication userAuth required
103676
- // oauth required
103677
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103678
-
103679
- // authentication applicationAuth required
103680
- // oauth required
103681
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
103682
-
103683
- if (limit !== undefined) {
103684
- localVarQueryParameter['limit'] = limit;
103685
- }
103686
-
103687
- if (offset !== undefined) {
103688
- localVarQueryParameter['offset'] = offset;
103689
- }
103690
-
103691
- if (count !== undefined) {
103692
- localVarQueryParameter['count'] = count;
103693
- }
103694
-
103695
-
103696
-
103697
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103698
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103699
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103700
-
103701
- return {
103702
- url: toPathString(localVarUrlObj),
103703
- axiosOptions: localVarRequestOptions,
103704
- };
103705
- },
103706
- /**
103707
- * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
103708
- * @summary Identity risk snapshot
103709
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103710
- * @param {*} [axiosOptions] Override http request option.
103711
- * @throws {RequiredError}
103712
- */
103713
- getIntelIdentityRisk: async (identityID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103714
- // verify required parameter 'identityID' is not null or undefined
103715
- assertParamExists('getIntelIdentityRisk', 'identityID', identityID)
103716
- const localVarPath = `/intelligence/identities/{identityID}/risk`
103717
- .replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
103718
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
103719
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103720
- let baseOptions;
103721
- if (configuration) {
103722
- baseOptions = configuration.baseOptions;
103723
- }
103724
-
103725
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103726
- const localVarHeaderParameter = {} as any;
103727
- const localVarQueryParameter = {} as any;
103728
-
103729
- // authentication userAuth required
103730
- // oauth required
103731
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103732
-
103733
- // authentication userAuth required
103734
- // oauth required
103735
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103736
-
103737
- // authentication applicationAuth required
103738
- // oauth required
103739
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
103740
-
103741
-
103742
-
103743
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103744
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103745
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103746
-
103747
- return {
103748
- url: toPathString(localVarUrlObj),
103749
- axiosOptions: localVarRequestOptions,
103750
- };
103751
- },
103752
- /**
103753
- * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
103754
- * @summary Risk outliers continuation paging
103755
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103756
- * @param {number} [limit] Maximum number of outlier rows to return for this page.
103757
- * @param {number} [offset] Zero-based row index for the first returned outlier item.
103758
- * @param {*} [axiosOptions] Override http request option.
103759
- * @throws {RequiredError}
103760
- */
103761
- getIntelIdentityRiskOutliers: async (identityID: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103762
- // verify required parameter 'identityID' is not null or undefined
103763
- assertParamExists('getIntelIdentityRiskOutliers', 'identityID', identityID)
103764
- const localVarPath = `/intelligence/identities/{identityID}/risk/outliers`
103765
- .replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
103766
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
103767
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103768
- let baseOptions;
103769
- if (configuration) {
103770
- baseOptions = configuration.baseOptions;
103771
- }
103772
-
103773
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103774
- const localVarHeaderParameter = {} as any;
103775
- const localVarQueryParameter = {} as any;
103776
-
103777
- // authentication userAuth required
103778
- // oauth required
103779
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103780
-
103781
- // authentication userAuth required
103782
- // oauth required
103783
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103784
-
103785
- // authentication applicationAuth required
103786
- // oauth required
103787
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
103788
-
103789
- if (limit !== undefined) {
103790
- localVarQueryParameter['limit'] = limit;
103791
- }
103792
-
103793
- if (offset !== undefined) {
103794
- localVarQueryParameter['offset'] = offset;
103795
- }
103796
-
103797
-
103798
-
103799
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103800
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103801
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103802
-
103803
- return {
103804
- url: toPathString(localVarUrlObj),
103805
- axiosOptions: localVarRequestOptions,
103806
- };
103807
- },
103808
- /**
103809
- * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
103810
- * @summary Resolve one identity by filter
103811
- * @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* **email**: *eq*
103812
- * @param {*} [axiosOptions] Override http request option.
103813
- * @throws {RequiredError}
103814
- */
103815
- searchIntelIdentities: async (filters: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103816
- // verify required parameter 'filters' is not null or undefined
103817
- assertParamExists('searchIntelIdentities', 'filters', filters)
103818
- const localVarPath = `/intelligence/identities`;
103819
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
103820
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103821
- let baseOptions;
103822
- if (configuration) {
103823
- baseOptions = configuration.baseOptions;
103824
- }
103825
-
103826
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103827
- const localVarHeaderParameter = {} as any;
103828
- const localVarQueryParameter = {} as any;
103829
-
103830
- // authentication userAuth required
103831
- // oauth required
103832
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103833
-
103834
- // authentication userAuth required
103835
- // oauth required
103836
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103837
-
103838
- // authentication applicationAuth required
103839
- // oauth required
103840
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
103841
-
103842
- if (filters !== undefined) {
103843
- localVarQueryParameter['filters'] = filters;
103844
- }
103845
-
103846
-
103847
-
103848
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103849
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103850
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103851
-
103852
- return {
103853
- url: toPathString(localVarUrlObj),
103854
- axiosOptions: localVarRequestOptions,
103855
- };
103856
- },
103857
- }
103858
- };
103859
-
103860
- /**
103861
- * IntelligencePackageV2026Api - functional programming interface
103862
- * @export
103863
- */
103864
- export const IntelligencePackageV2026ApiFp = function(configuration?: Configuration) {
103865
- const localVarAxiosParamCreator = IntelligencePackageV2026ApiAxiosParamCreator(configuration)
103866
- return {
103867
- /**
103868
- * Requires tenant license idn:response-and-remediation. Client-facing pagination (limit, offset, count) is not supported on this route. The service issues one Shelby List Accounts request at the upstream maximum page size and one SDS Search request per identity.
103869
- * @summary Accounts merged with privileged data
103870
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103871
- * @param {*} [axiosOptions] Override http request option.
103872
- * @throws {RequiredError}
103873
- */
103874
- async getIntelIdentityAccess(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessBodyV2026>> {
103875
- const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityAccess(identityID, axiosOptions);
103876
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103877
- const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityAccess']?.[localVarOperationServerIndex]?.url;
103878
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103879
- },
103880
- /**
103881
- * Requires tenant license idn:response-and-remediation. Events are relayed from identity-history; optional limit, offset, and count are forwarded to the upstream when supplied.
103882
- * @summary Return identity access-history events
103883
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103884
- * @param {number} [limit] Maximum number of historical events to return in this page of results.
103885
- * @param {number} [offset] Zero-based index of the first event row to return for pagination.
103886
- * @param {boolean} [count] When true, the service may include total count metadata alongside the result list.
103887
- * @param {*} [axiosOptions] Override http request option.
103888
- * @throws {RequiredError}
103889
- */
103890
- async getIntelIdentityAccessHistory(identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessHistoryBodyV2026>> {
103891
- const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityAccessHistory(identityID, limit, offset, count, axiosOptions);
103892
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103893
- const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityAccessHistory']?.[localVarOperationServerIndex]?.url;
103894
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103895
- },
103896
- /**
103897
- * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
103898
- * @summary Identity risk snapshot
103899
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103900
- * @param {*} [axiosOptions] Override http request option.
103901
- * @throws {RequiredError}
103902
- */
103903
- async getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
103904
- const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRisk(identityID, axiosOptions);
103905
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103906
- const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRisk']?.[localVarOperationServerIndex]?.url;
103907
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103908
- },
103909
- /**
103910
- * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
103911
- * @summary Risk outliers continuation paging
103912
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
103913
- * @param {number} [limit] Maximum number of outlier rows to return for this page.
103914
- * @param {number} [offset] Zero-based row index for the first returned outlier item.
103915
- * @param {*} [axiosOptions] Override http request option.
103916
- * @throws {RequiredError}
103917
- */
103918
- async getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
103919
- const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRiskOutliers(identityID, limit, offset, axiosOptions);
103920
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103921
- const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRiskOutliers']?.[localVarOperationServerIndex]?.url;
103922
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103923
- },
103924
- /**
103925
- * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
103926
- * @summary Resolve one identity by filter
103927
- * @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* **email**: *eq*
103928
- * @param {*} [axiosOptions] Override http request option.
103929
- * @throws {RequiredError}
103930
- */
103931
- async searchIntelIdentities(filters: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityResponseV2026>> {
103932
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchIntelIdentities(filters, axiosOptions);
103933
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103934
- const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.searchIntelIdentities']?.[localVarOperationServerIndex]?.url;
103935
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103936
- },
103937
- }
103938
- };
103939
-
103940
- /**
103941
- * IntelligencePackageV2026Api - factory interface
103942
- * @export
103943
- */
103944
- export const IntelligencePackageV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
103945
- const localVarFp = IntelligencePackageV2026ApiFp(configuration)
103946
- return {
103947
- /**
103948
- * Requires tenant license idn:response-and-remediation. Client-facing pagination (limit, offset, count) is not supported on this route. The service issues one Shelby List Accounts request at the upstream maximum page size and one SDS Search request per identity.
103949
- * @summary Accounts merged with privileged data
103950
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessRequest} requestParameters Request parameters.
103951
- * @param {*} [axiosOptions] Override http request option.
103952
- * @throws {RequiredError}
103953
- */
103954
- getIntelIdentityAccess(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessBodyV2026> {
103955
- return localVarFp.getIntelIdentityAccess(requestParameters.identityID, axiosOptions).then((request) => request(axios, basePath));
103956
- },
103957
- /**
103958
- * Requires tenant license idn:response-and-remediation. Events are relayed from identity-history; optional limit, offset, and count are forwarded to the upstream when supplied.
103959
- * @summary Return identity access-history events
103960
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest} requestParameters Request parameters.
103961
- * @param {*} [axiosOptions] Override http request option.
103962
- * @throws {RequiredError}
103963
- */
103964
- getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026> {
103965
- return localVarFp.getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
103966
- },
103967
- /**
103968
- * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
103969
- * @summary Identity risk snapshot
103970
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
103971
- * @param {*} [axiosOptions] Override http request option.
103972
- * @throws {RequiredError}
103973
- */
103974
- getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
103975
- return localVarFp.getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(axios, basePath));
103976
- },
103977
- /**
103978
- * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
103979
- * @summary Risk outliers continuation paging
103980
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
103981
- * @param {*} [axiosOptions] Override http request option.
103982
- * @throws {RequiredError}
103983
- */
103984
- getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
103985
- return localVarFp.getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
103986
- },
103987
- /**
103988
- * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
103989
- * @summary Resolve one identity by filter
103990
- * @param {IntelligencePackageV2026ApiSearchIntelIdentitiesRequest} requestParameters Request parameters.
103991
- * @param {*} [axiosOptions] Override http request option.
103992
- * @throws {RequiredError}
103993
- */
103994
- searchIntelIdentities(requestParameters: IntelligencePackageV2026ApiSearchIntelIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityResponseV2026> {
103995
- return localVarFp.searchIntelIdentities(requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
103996
- },
103997
- };
103998
- };
103999
-
104000
- /**
104001
- * Request parameters for getIntelIdentityAccess operation in IntelligencePackageV2026Api.
104002
- * @export
104003
- * @interface IntelligencePackageV2026ApiGetIntelIdentityAccessRequest
104004
- */
104005
- export interface IntelligencePackageV2026ApiGetIntelIdentityAccessRequest {
104006
- /**
104007
- * Non-empty identity id path segment for Intelligence Package sub-resources.
104008
- * @type {string}
104009
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccess
104010
- */
104011
- readonly identityID: string
104012
- }
104013
-
104014
- /**
104015
- * Request parameters for getIntelIdentityAccessHistory operation in IntelligencePackageV2026Api.
104016
- * @export
104017
- * @interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
104018
- */
104019
- export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest {
104020
- /**
104021
- * Non-empty identity id path segment for Intelligence Package sub-resources.
104022
- * @type {string}
104023
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
104024
- */
104025
- readonly identityID: string
104026
-
104027
- /**
104028
- * Maximum number of historical events to return in this page of results.
104029
- * @type {number}
104030
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
104031
- */
104032
- readonly limit?: number
104033
-
104034
- /**
104035
- * Zero-based index of the first event row to return for pagination.
104036
- * @type {number}
104037
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
104038
- */
104039
- readonly offset?: number
104040
-
104041
- /**
104042
- * When true, the service may include total count metadata alongside the result list.
104043
- * @type {boolean}
104044
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
104045
- */
104046
- readonly count?: boolean
104047
- }
104048
-
104049
- /**
104050
- * Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
104051
- * @export
104052
- * @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
104053
- */
104054
- export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
104055
- /**
104056
- * Non-empty identity id path segment for Intelligence Package sub-resources.
104057
- * @type {string}
104058
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
104059
- */
104060
- readonly identityID: string
104061
- }
104062
-
104063
- /**
104064
- * Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
104065
- * @export
104066
- * @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
104067
- */
104068
- export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
104069
- /**
104070
- * Non-empty identity id path segment for Intelligence Package sub-resources.
104071
- * @type {string}
104072
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
104073
- */
104074
- readonly identityID: string
104075
-
104076
- /**
104077
- * Maximum number of outlier rows to return for this page.
104078
- * @type {number}
104079
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
104080
- */
104081
- readonly limit?: number
104082
-
104083
- /**
104084
- * Zero-based row index for the first returned outlier item.
104085
- * @type {number}
104086
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
104087
- */
104088
- readonly offset?: number
104089
- }
104090
-
104091
- /**
104092
- * Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
104093
- * @export
104094
- * @interface IntelligencePackageV2026ApiSearchIntelIdentitiesRequest
104095
- */
104096
- export interface IntelligencePackageV2026ApiSearchIntelIdentitiesRequest {
104097
- /**
104098
- * 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* **email**: *eq*
104099
- * @type {string}
104100
- * @memberof IntelligencePackageV2026ApiSearchIntelIdentities
104101
- */
104102
- readonly filters: string
104103
- }
104104
-
104105
- /**
104106
- * IntelligencePackageV2026Api - object-oriented interface
104107
- * @export
104108
- * @class IntelligencePackageV2026Api
104109
- * @extends {BaseAPI}
104110
- */
104111
- export class IntelligencePackageV2026Api extends BaseAPI {
104112
- /**
104113
- * Requires tenant license idn:response-and-remediation. Client-facing pagination (limit, offset, count) is not supported on this route. The service issues one Shelby List Accounts request at the upstream maximum page size and one SDS Search request per identity.
104114
- * @summary Accounts merged with privileged data
104115
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessRequest} requestParameters Request parameters.
104116
- * @param {*} [axiosOptions] Override http request option.
104117
- * @throws {RequiredError}
104118
- * @memberof IntelligencePackageV2026Api
104119
- */
104120
- public getIntelIdentityAccess(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessRequest, axiosOptions?: RawAxiosRequestConfig) {
104121
- return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityAccess(requestParameters.identityID, axiosOptions).then((request) => request(this.axios, this.basePath));
104122
- }
104123
-
104124
- /**
104125
- * Requires tenant license idn:response-and-remediation. Events are relayed from identity-history; optional limit, offset, and count are forwarded to the upstream when supplied.
104126
- * @summary Return identity access-history events
104127
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest} requestParameters Request parameters.
104128
- * @param {*} [axiosOptions] Override http request option.
104129
- * @throws {RequiredError}
104130
- * @memberof IntelligencePackageV2026Api
104131
- */
104132
- public getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig) {
104133
- return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
104134
- }
104135
-
104136
- /**
104137
- * Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
104138
- * @summary Identity risk snapshot
104139
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
104140
- * @param {*} [axiosOptions] Override http request option.
104141
- * @throws {RequiredError}
104142
- * @memberof IntelligencePackageV2026Api
104143
- */
104144
- public getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig) {
104145
- return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(this.axios, this.basePath));
104146
- }
104147
-
104148
- /**
104149
- * Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
104150
- * @summary Risk outliers continuation paging
104151
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
104152
- * @param {*} [axiosOptions] Override http request option.
104153
- * @throws {RequiredError}
104154
- * @memberof IntelligencePackageV2026Api
104155
- */
104156
- public getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig) {
104157
- return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
104158
- }
104159
-
104160
- /**
104161
- * Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
104162
- * @summary Resolve one identity by filter
104163
- * @param {IntelligencePackageV2026ApiSearchIntelIdentitiesRequest} requestParameters Request parameters.
104164
- * @param {*} [axiosOptions] Override http request option.
104165
- * @throws {RequiredError}
104166
- * @memberof IntelligencePackageV2026Api
104167
- */
104168
- public searchIntelIdentities(requestParameters: IntelligencePackageV2026ApiSearchIntelIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig) {
104169
- return IntelligencePackageV2026ApiFp(this.configuration).searchIntelIdentities(requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
104170
- }
104171
- }
104172
-
104173
-
104174
-
104175
103924
  /**
104176
103925
  * JITAccessV2026Api - axios parameter creator
104177
103926
  * @export