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.
@@ -18442,6 +18442,365 @@ export interface EntitlementBulkUpdateRequestV2026 {
18442
18442
  */
18443
18443
  'jsonPatch': Array<JsonPatchOperationV2026>;
18444
18444
  }
18445
+ /**
18446
+ *
18447
+ * @export
18448
+ * @interface EntitlementConnectionBulkUpdateItemV2026
18449
+ */
18450
+ export interface EntitlementConnectionBulkUpdateItemV2026 {
18451
+ /**
18452
+ * Connection ID to update.
18453
+ * @type {string}
18454
+ * @memberof EntitlementConnectionBulkUpdateItemV2026
18455
+ */
18456
+ 'connectionId': string;
18457
+ /**
18458
+ * Target connection type.
18459
+ * @type {string}
18460
+ * @memberof EntitlementConnectionBulkUpdateItemV2026
18461
+ */
18462
+ 'type': EntitlementConnectionBulkUpdateItemV2026TypeV2026;
18463
+ }
18464
+ export declare const EntitlementConnectionBulkUpdateItemV2026TypeV2026: {
18465
+ readonly Jit: "JIT";
18466
+ readonly Standing: "STANDING";
18467
+ };
18468
+ export type EntitlementConnectionBulkUpdateItemV2026TypeV2026 = typeof EntitlementConnectionBulkUpdateItemV2026TypeV2026[keyof typeof EntitlementConnectionBulkUpdateItemV2026TypeV2026];
18469
+ /**
18470
+ *
18471
+ * @export
18472
+ * @interface EntitlementConnectionBulkUpdateResultItemV2026
18473
+ */
18474
+ export interface EntitlementConnectionBulkUpdateResultItemV2026 {
18475
+ /**
18476
+ * Connection ID processed in this row.
18477
+ * @type {string}
18478
+ * @memberof EntitlementConnectionBulkUpdateResultItemV2026
18479
+ */
18480
+ 'connectionId'?: string;
18481
+ /**
18482
+ * Requested or resulting connection type for the row.
18483
+ * @type {string}
18484
+ * @memberof EntitlementConnectionBulkUpdateResultItemV2026
18485
+ */
18486
+ 'type'?: string;
18487
+ /**
18488
+ * Item-level result status code.
18489
+ * @type {number}
18490
+ * @memberof EntitlementConnectionBulkUpdateResultItemV2026
18491
+ */
18492
+ 'status'?: number;
18493
+ /**
18494
+ * Item-level result message.
18495
+ * @type {string}
18496
+ * @memberof EntitlementConnectionBulkUpdateResultItemV2026
18497
+ */
18498
+ 'description'?: string;
18499
+ }
18500
+ /**
18501
+ * Privilege classification details for the entitlement.
18502
+ * @export
18503
+ * @interface EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026
18504
+ */
18505
+ export interface EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026 {
18506
+ /**
18507
+ * Effective privilege level.
18508
+ * @type {string}
18509
+ * @memberof EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026
18510
+ */
18511
+ 'effective'?: string;
18512
+ }
18513
+ /**
18514
+ * Entitlement object embedded in entitlement connection search responses.
18515
+ * @export
18516
+ * @interface EntitlementConnectionSearchHitEntitlementV2026
18517
+ */
18518
+ export interface EntitlementConnectionSearchHitEntitlementV2026 {
18519
+ /**
18520
+ * Entitlement identifier.
18521
+ * @type {string}
18522
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18523
+ */
18524
+ 'id'?: string;
18525
+ /**
18526
+ * Entitlement name.
18527
+ * @type {string}
18528
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18529
+ */
18530
+ 'name'?: string;
18531
+ /**
18532
+ * Human-readable entitlement label.
18533
+ * @type {string}
18534
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18535
+ */
18536
+ 'displayName'?: string;
18537
+ /**
18538
+ * Entitlement description.
18539
+ * @type {string}
18540
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18541
+ */
18542
+ 'description'?: string;
18543
+ /**
18544
+ * Source attribute carrying entitlement values.
18545
+ * @type {string}
18546
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18547
+ */
18548
+ 'attribute'?: string;
18549
+ /**
18550
+ * Source entitlement value.
18551
+ * @type {string}
18552
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18553
+ */
18554
+ 'value'?: string;
18555
+ /**
18556
+ * Source schema object type for the entitlement.
18557
+ * @type {string}
18558
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18559
+ */
18560
+ 'sourceSchemaObjectType'?: string;
18561
+ /**
18562
+ *
18563
+ * @type {EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026}
18564
+ * @memberof EntitlementConnectionSearchHitEntitlementV2026
18565
+ */
18566
+ 'privilegeLevel'?: EntitlementConnectionSearchHitEntitlementPrivilegeLevelV2026;
18567
+ }
18568
+ /**
18569
+ * Entitlement connection record returned by search-backed list endpoints.
18570
+ * @export
18571
+ * @interface EntitlementConnectionSearchHitV2026
18572
+ */
18573
+ export interface EntitlementConnectionSearchHitV2026 {
18574
+ /**
18575
+ * Connection ID as represented in search results.
18576
+ * @type {string}
18577
+ * @memberof EntitlementConnectionSearchHitV2026
18578
+ */
18579
+ 'id'?: string;
18580
+ /**
18581
+ * Identity summary object from search index.
18582
+ * @type {{ [key: string]: any; }}
18583
+ * @memberof EntitlementConnectionSearchHitV2026
18584
+ */
18585
+ 'identity'?: {
18586
+ [key: string]: any;
18587
+ };
18588
+ /**
18589
+ * Machine identity summary object when available.
18590
+ * @type {{ [key: string]: any; }}
18591
+ * @memberof EntitlementConnectionSearchHitV2026
18592
+ */
18593
+ 'machineIdentity'?: {
18594
+ [key: string]: any;
18595
+ };
18596
+ /**
18597
+ * Account summary object.
18598
+ * @type {{ [key: string]: any; }}
18599
+ * @memberof EntitlementConnectionSearchHitV2026
18600
+ */
18601
+ 'account'?: {
18602
+ [key: string]: any;
18603
+ };
18604
+ /**
18605
+ *
18606
+ * @type {EntitlementConnectionSearchHitEntitlementV2026}
18607
+ * @memberof EntitlementConnectionSearchHitV2026
18608
+ */
18609
+ 'entitlement'?: EntitlementConnectionSearchHitEntitlementV2026;
18610
+ /**
18611
+ * Source summary object.
18612
+ * @type {{ [key: string]: any; }}
18613
+ * @memberof EntitlementConnectionSearchHitV2026
18614
+ */
18615
+ 'source'?: {
18616
+ [key: string]: any;
18617
+ };
18618
+ /**
18619
+ * Connection state object.
18620
+ * @type {{ [key: string]: any; }}
18621
+ * @memberof EntitlementConnectionSearchHitV2026
18622
+ */
18623
+ 'state'?: {
18624
+ [key: string]: any;
18625
+ };
18626
+ /**
18627
+ * JIT timestamps for lifecycle events.
18628
+ * @type {{ [key: string]: any; }}
18629
+ * @memberof EntitlementConnectionSearchHitV2026
18630
+ */
18631
+ 'jit'?: {
18632
+ [key: string]: any;
18633
+ };
18634
+ /**
18635
+ * Indicates whether the connection is marked as standalone.
18636
+ * @type {boolean}
18637
+ * @memberof EntitlementConnectionSearchHitV2026
18638
+ */
18639
+ 'standalone'?: boolean;
18640
+ /**
18641
+ * Connection type classification.
18642
+ * @type {string}
18643
+ * @memberof EntitlementConnectionSearchHitV2026
18644
+ */
18645
+ 'type'?: EntitlementConnectionSearchHitV2026TypeV2026;
18646
+ }
18647
+ export declare const EntitlementConnectionSearchHitV2026TypeV2026: {
18648
+ readonly Jit: "JIT";
18649
+ readonly Standing: "STANDING";
18650
+ readonly Na: "NA";
18651
+ };
18652
+ export type EntitlementConnectionSearchHitV2026TypeV2026 = typeof EntitlementConnectionSearchHitV2026TypeV2026[keyof typeof EntitlementConnectionSearchHitV2026TypeV2026];
18653
+ /**
18654
+ * Entitlement connection entity returned by patch APIs.
18655
+ * @export
18656
+ * @interface EntitlementConnectionV2026
18657
+ */
18658
+ export interface EntitlementConnectionV2026 {
18659
+ /**
18660
+ * Tenant identifier that owns the connection.
18661
+ * @type {string}
18662
+ * @memberof EntitlementConnectionV2026
18663
+ */
18664
+ 'tenantId'?: string;
18665
+ /**
18666
+ * Entitlement connection identifier.
18667
+ * @type {string}
18668
+ * @memberof EntitlementConnectionV2026
18669
+ */
18670
+ 'connectionId'?: string;
18671
+ /**
18672
+ * Identity identifier associated with the connection.
18673
+ * @type {string}
18674
+ * @memberof EntitlementConnectionV2026
18675
+ */
18676
+ 'identityId'?: string;
18677
+ /**
18678
+ * Machine identity identifier when the connection is machine-backed.
18679
+ * @type {string}
18680
+ * @memberof EntitlementConnectionV2026
18681
+ */
18682
+ 'machineIdentityId'?: string;
18683
+ /**
18684
+ * Account identifier for the connected source account.
18685
+ * @type {string}
18686
+ * @memberof EntitlementConnectionV2026
18687
+ */
18688
+ 'accountId'?: string;
18689
+ /**
18690
+ * Entitlement identifier on the source.
18691
+ * @type {string}
18692
+ * @memberof EntitlementConnectionV2026
18693
+ */
18694
+ 'entitlementId'?: string;
18695
+ /**
18696
+ * Source identifier that provides the account and entitlement.
18697
+ * @type {string}
18698
+ * @memberof EntitlementConnectionV2026
18699
+ */
18700
+ 'sourceId'?: string;
18701
+ /**
18702
+ * Indicates whether the connection is marked as standalone.
18703
+ * @type {boolean}
18704
+ * @memberof EntitlementConnectionV2026
18705
+ */
18706
+ 'standalone'?: boolean;
18707
+ /**
18708
+ * Entitlement attribute name on the source.
18709
+ * @type {string}
18710
+ * @memberof EntitlementConnectionV2026
18711
+ */
18712
+ 'attributeName'?: string;
18713
+ /**
18714
+ * Entitlement attribute value on the source.
18715
+ * @type {string}
18716
+ * @memberof EntitlementConnectionV2026
18717
+ */
18718
+ 'attributeValue'?: string;
18719
+ /**
18720
+ * Connection type classification.
18721
+ * @type {string}
18722
+ * @memberof EntitlementConnectionV2026
18723
+ */
18724
+ 'type'?: EntitlementConnectionV2026TypeV2026;
18725
+ /**
18726
+ * Current lifecycle state of the connection.
18727
+ * @type {string}
18728
+ * @memberof EntitlementConnectionV2026
18729
+ */
18730
+ 'state'?: string;
18731
+ /**
18732
+ * Time the connection state was last updated.
18733
+ * @type {string}
18734
+ * @memberof EntitlementConnectionV2026
18735
+ */
18736
+ 'stateChanged'?: string;
18737
+ /**
18738
+ * Identifier of the actor that last changed state.
18739
+ * @type {string}
18740
+ * @memberof EntitlementConnectionV2026
18741
+ */
18742
+ 'stateChangedBy'?: string;
18743
+ /**
18744
+ * Time JIT activation occurred.
18745
+ * @type {string}
18746
+ * @memberof EntitlementConnectionV2026
18747
+ */
18748
+ 'jitActivation'?: string;
18749
+ /**
18750
+ * Time provisioning completed for JIT activation.
18751
+ * @type {string}
18752
+ * @memberof EntitlementConnectionV2026
18753
+ */
18754
+ 'jitProvision'?: string;
18755
+ /**
18756
+ * Time JIT deactivation occurred.
18757
+ * @type {string}
18758
+ * @memberof EntitlementConnectionV2026
18759
+ */
18760
+ 'jitDeactivation'?: string;
18761
+ /**
18762
+ * Time deprovisioning completed after JIT deactivation.
18763
+ * @type {string}
18764
+ * @memberof EntitlementConnectionV2026
18765
+ */
18766
+ 'jitDeprovision'?: string;
18767
+ /**
18768
+ * Time when JIT access expires.
18769
+ * @type {string}
18770
+ * @memberof EntitlementConnectionV2026
18771
+ */
18772
+ 'jitExpiration'?: string;
18773
+ /**
18774
+ * Time after which the connection is eligible for deletion.
18775
+ * @type {string}
18776
+ * @memberof EntitlementConnectionV2026
18777
+ */
18778
+ 'deleteAfter'?: string;
18779
+ /**
18780
+ * Time when the connection was created.
18781
+ * @type {string}
18782
+ * @memberof EntitlementConnectionV2026
18783
+ */
18784
+ 'created'?: string;
18785
+ /**
18786
+ * Time when the connection was last modified.
18787
+ * @type {string}
18788
+ * @memberof EntitlementConnectionV2026
18789
+ */
18790
+ 'modified'?: string;
18791
+ /**
18792
+ * Display value for the actor associated with the latest change.
18793
+ * @type {string}
18794
+ * @memberof EntitlementConnectionV2026
18795
+ */
18796
+ 'actorName'?: string;
18797
+ }
18798
+ export declare const EntitlementConnectionV2026TypeV2026: {
18799
+ readonly Jit: "JIT";
18800
+ readonly Standing: "STANDING";
18801
+ readonly Na: "NA";
18802
+ };
18803
+ export type EntitlementConnectionV2026TypeV2026 = typeof EntitlementConnectionV2026TypeV2026[keyof typeof EntitlementConnectionV2026TypeV2026];
18445
18804
  /**
18446
18805
  * Indicates whether the entitlement\'s display name and/or description have been manually updated.
18447
18806
  * @export
@@ -19673,25 +20032,6 @@ export interface EntityCreatedByDTOV2026 {
19673
20032
  */
19674
20033
  'displayName'?: string;
19675
20034
  }
19676
- /**
19677
- *
19678
- * @export
19679
- * @interface ErrorBodyV2026
19680
- */
19681
- export interface ErrorBodyV2026 {
19682
- /**
19683
- * Machine-readable error code returned by the Intelligence Package service.
19684
- * @type {string}
19685
- * @memberof ErrorBodyV2026
19686
- */
19687
- 'detailCode'?: string;
19688
- /**
19689
- * Human-readable explanation of the error suitable for client logging.
19690
- * @type {string}
19691
- * @memberof ErrorBodyV2026
19692
- */
19693
- 'message'?: string;
19694
- }
19695
20035
  /**
19696
20036
  *
19697
20037
  * @export
@@ -25918,696 +26258,6 @@ export interface Int64StringKeyValuePairV2026 {
25918
26258
  */
25919
26259
  'value'?: string | null;
25920
26260
  }
25921
- /**
25922
- *
25923
- * @export
25924
- * @interface IntelAccessAccountWireV2026
25925
- */
25926
- export interface IntelAccessAccountWireV2026 {
25927
- /**
25928
- * Unique account identifier in Identity Security Cloud.
25929
- * @type {string}
25930
- * @memberof IntelAccessAccountWireV2026
25931
- */
25932
- 'id': string;
25933
- /**
25934
- * Account name or login value on the correlated source.
25935
- * @type {string}
25936
- * @memberof IntelAccessAccountWireV2026
25937
- */
25938
- 'name': string;
25939
- /**
25940
- * Source metadata for the account as returned by List Accounts wire format.
25941
- * @type {IntelAccessSourceWireV2026}
25942
- * @memberof IntelAccessAccountWireV2026
25943
- */
25944
- 'source'?: IntelAccessSourceWireV2026;
25945
- /**
25946
- * True when the account is administratively disabled on the source.
25947
- * @type {boolean}
25948
- * @memberof IntelAccessAccountWireV2026
25949
- */
25950
- 'disabled': boolean;
25951
- /**
25952
- * True when the account is locked from interactive sign-in on the source.
25953
- * @type {boolean}
25954
- * @memberof IntelAccessAccountWireV2026
25955
- */
25956
- 'locked': boolean;
25957
- /**
25958
- * True when the account is not correlated to an authoritative identity.
25959
- * @type {boolean}
25960
- * @memberof IntelAccessAccountWireV2026
25961
- */
25962
- 'uncorrelated': boolean;
25963
- /**
25964
- * True when the account is treated as authoritative for attribute synchronization.
25965
- * @type {boolean}
25966
- * @memberof IntelAccessAccountWireV2026
25967
- */
25968
- 'authoritative': boolean;
25969
- /**
25970
- * True when the account represents a non-interactive or system principal.
25971
- * @type {boolean}
25972
- * @memberof IntelAccessAccountWireV2026
25973
- */
25974
- 'systemAccount': boolean;
25975
- /**
25976
- * True when the account belongs to a machine or service identity.
25977
- * @type {boolean}
25978
- * @memberof IntelAccessAccountWireV2026
25979
- */
25980
- 'isMachine': boolean;
25981
- /**
25982
- * True when the account currently has one or more entitlements assigned.
25983
- * @type {boolean}
25984
- * @memberof IntelAccessAccountWireV2026
25985
- */
25986
- 'hasEntitlements': boolean;
25987
- /**
25988
- * True when an administrator manually correlated the account to an identity.
25989
- * @type {boolean}
25990
- * @memberof IntelAccessAccountWireV2026
25991
- */
25992
- 'manuallyCorrelated': boolean;
25993
- /**
25994
- * Connector connection type identifier for the backing source system.
25995
- * @type {string}
25996
- * @memberof IntelAccessAccountWireV2026
25997
- */
25998
- 'connectionType': string;
25999
- /**
26000
- * Native identifier string on the source directory or application.
26001
- * @type {string}
26002
- * @memberof IntelAccessAccountWireV2026
26003
- */
26004
- 'nativeIdentity'?: string | null;
26005
- /**
26006
- * Timestamp when the account record was created in Identity Security Cloud.
26007
- * @type {string}
26008
- * @memberof IntelAccessAccountWireV2026
26009
- */
26010
- 'created': string;
26011
- /**
26012
- * Timestamp when the account record was last modified in Identity Security Cloud.
26013
- * @type {string}
26014
- * @memberof IntelAccessAccountWireV2026
26015
- */
26016
- 'modified': string;
26017
- }
26018
- /**
26019
- *
26020
- * @export
26021
- * @interface IntelAccessSourceWireV2026
26022
- */
26023
- export interface IntelAccessSourceWireV2026 {
26024
- /**
26025
- * Source identifier referenced by the account wire object.
26026
- * @type {string}
26027
- * @memberof IntelAccessSourceWireV2026
26028
- */
26029
- 'id'?: string;
26030
- /**
26031
- * Human-readable source name shown in administrative consoles.
26032
- * @type {string}
26033
- * @memberof IntelAccessSourceWireV2026
26034
- */
26035
- 'name'?: string;
26036
- }
26037
- /**
26038
- *
26039
- * @export
26040
- * @interface IntelHrefV2026
26041
- */
26042
- export interface IntelHrefV2026 {
26043
- /**
26044
- * Target URI for the related Intelligence Package sub-resource or operation.
26045
- * @type {string}
26046
- * @memberof IntelHrefV2026
26047
- */
26048
- 'href': string;
26049
- }
26050
- /**
26051
- *
26052
- * @export
26053
- * @interface IntelHumanV2026
26054
- */
26055
- export interface IntelHumanV2026 {
26056
- /**
26057
- * Primary login or account alias for the human identity.
26058
- * @type {string}
26059
- * @memberof IntelHumanV2026
26060
- */
26061
- 'alias': string;
26062
- /**
26063
- * Primary business email address for the human identity.
26064
- * @type {string}
26065
- * @memberof IntelHumanV2026
26066
- */
26067
- 'email': string;
26068
- /**
26069
- * Current identity lifecycle status label from Identity Security Cloud.
26070
- * @type {string}
26071
- * @memberof IntelHumanV2026
26072
- */
26073
- 'identityStatus': string;
26074
- /**
26075
- * Lifecycle state name assigned through provisioning policy when present.
26076
- * @type {string}
26077
- * @memberof IntelHumanV2026
26078
- */
26079
- 'lifecycleState'?: string | null;
26080
- /**
26081
- * Processing state for outstanding identity change operations when present.
26082
- * @type {string}
26083
- * @memberof IntelHumanV2026
26084
- */
26085
- 'processingState'?: string | null;
26086
- /**
26087
- * True when the identity is marked protected from automated changes.
26088
- * @type {boolean}
26089
- * @memberof IntelHumanV2026
26090
- */
26091
- 'isProtected': boolean;
26092
- /**
26093
- * Legacy manager identity identifier or display reference when assigned.
26094
- * @type {string}
26095
- * @memberof IntelHumanV2026
26096
- */
26097
- 'manager'?: string | null;
26098
- /**
26099
- * Manager identity identifier when correlated in Identity Security Cloud.
26100
- * @type {string}
26101
- * @memberof IntelHumanV2026
26102
- */
26103
- 'managerId'?: string | null;
26104
- /**
26105
- * Manager display name when available from identity services.
26106
- * @type {string}
26107
- * @memberof IntelHumanV2026
26108
- */
26109
- 'managerName'?: string | null;
26110
- /**
26111
- * True when the identity is flagged as a people manager in the organization.
26112
- * @type {boolean}
26113
- * @memberof IntelHumanV2026
26114
- */
26115
- 'isManager': boolean;
26116
- /**
26117
- * Timestamp of the last successful identity refresh from sources when known.
26118
- * @type {string}
26119
- * @memberof IntelHumanV2026
26120
- */
26121
- 'lastRefreshAt'?: string | null;
26122
- }
26123
- /**
26124
- *
26125
- * @export
26126
- * @interface IntelIdentityAccessBodyV2026
26127
- */
26128
- export interface IntelIdentityAccessBodyV2026 {
26129
- /**
26130
- * Accounts for the identity in camelCase wire format from Shelby List Accounts.
26131
- * @type {Array<IntelAccessAccountWireV2026>}
26132
- * @memberof IntelIdentityAccessBodyV2026
26133
- */
26134
- 'accounts': Array<IntelAccessAccountWireV2026>;
26135
- /**
26136
- * Privileged access items for the identity returned by SDS Search.
26137
- * @type {Array<IntelPrivilegedAccessItemWireV2026>}
26138
- * @memberof IntelIdentityAccessBodyV2026
26139
- */
26140
- 'privilegedAccessItems': Array<IntelPrivilegedAccessItemWireV2026>;
26141
- }
26142
- /**
26143
- *
26144
- * @export
26145
- * @interface IntelIdentityAccessHistoryBodyV2026
26146
- */
26147
- export interface IntelIdentityAccessHistoryBodyV2026 {
26148
- /**
26149
- * Each event is relayed from identity-history. Schema varies by event type; consumers should treat unknown fields as opaque using additionalProperties.
26150
- * @type {Array<{ [key: string]: any; }>}
26151
- * @memberof IntelIdentityAccessHistoryBodyV2026
26152
- */
26153
- 'events': Array<{
26154
- [key: string]: any;
26155
- }>;
26156
- }
26157
- /**
26158
- *
26159
- * @export
26160
- * @interface IntelIdentityAmbiguousBodyV2026
26161
- */
26162
- export interface IntelIdentityAmbiguousBodyV2026 {
26163
- /**
26164
- * Constant detail code indicating that more than one identity matched the filter.
26165
- * @type {string}
26166
- * @memberof IntelIdentityAmbiguousBodyV2026
26167
- */
26168
- 'detailCode': IntelIdentityAmbiguousBodyV2026DetailCodeV2026;
26169
- /**
26170
- * Optional explanatory text describing why the filter was considered ambiguous.
26171
- * @type {string}
26172
- * @memberof IntelIdentityAmbiguousBodyV2026
26173
- */
26174
- 'message'?: string;
26175
- /**
26176
- * Collection of identities that matched the ambiguous filter expression.
26177
- * @type {Array<IntelIdentityAmbiguousCandidateV2026>}
26178
- * @memberof IntelIdentityAmbiguousBodyV2026
26179
- */
26180
- 'candidates': Array<IntelIdentityAmbiguousCandidateV2026>;
26181
- }
26182
- export declare const IntelIdentityAmbiguousBodyV2026DetailCodeV2026: {
26183
- readonly IdcIdentityAmbiguous: "IDC_IDENTITY_AMBIGUOUS";
26184
- };
26185
- export type IntelIdentityAmbiguousBodyV2026DetailCodeV2026 = typeof IntelIdentityAmbiguousBodyV2026DetailCodeV2026[keyof typeof IntelIdentityAmbiguousBodyV2026DetailCodeV2026];
26186
- /**
26187
- *
26188
- * @export
26189
- * @interface IntelIdentityAmbiguousCandidateV2026
26190
- */
26191
- export interface IntelIdentityAmbiguousCandidateV2026 {
26192
- /**
26193
- * Identity identifier for one of the ambiguous matching identities.
26194
- * @type {string}
26195
- * @memberof IntelIdentityAmbiguousCandidateV2026
26196
- */
26197
- 'id': string;
26198
- /**
26199
- * Display name for the ambiguous matching identity when available.
26200
- * @type {string}
26201
- * @memberof IntelIdentityAmbiguousCandidateV2026
26202
- */
26203
- 'displayName'?: string;
26204
- }
26205
- /**
26206
- *
26207
- * @export
26208
- * @interface IntelIdentityLinksV2026
26209
- */
26210
- export interface IntelIdentityLinksV2026 {
26211
- /**
26212
- * Hyperlink to the Intelligence Package access document for this identity.
26213
- * @type {IntelHrefV2026}
26214
- * @memberof IntelIdentityLinksV2026
26215
- */
26216
- 'access': IntelHrefV2026;
26217
- /**
26218
- * Hyperlink to the Intelligence Package risk document for this identity.
26219
- * @type {IntelHrefV2026}
26220
- * @memberof IntelIdentityLinksV2026
26221
- */
26222
- 'risk': IntelHrefV2026;
26223
- /**
26224
- * Hyperlink to the Intelligence Package access history document for this identity.
26225
- * @type {IntelHrefV2026}
26226
- * @memberof IntelIdentityLinksV2026
26227
- */
26228
- 'accessHistory': IntelHrefV2026;
26229
- }
26230
- /**
26231
- *
26232
- * @export
26233
- * @interface IntelIdentityNotFoundBodyV2026
26234
- */
26235
- export interface IntelIdentityNotFoundBodyV2026 {
26236
- /**
26237
- * Constant detail code indicating that no identity matched the supplied filter.
26238
- * @type {string}
26239
- * @memberof IntelIdentityNotFoundBodyV2026
26240
- */
26241
- 'detailCode': IntelIdentityNotFoundBodyV2026DetailCodeV2026;
26242
- /**
26243
- * Optional explanatory text describing why no identity was found.
26244
- * @type {string}
26245
- * @memberof IntelIdentityNotFoundBodyV2026
26246
- */
26247
- 'message'?: string;
26248
- }
26249
- export declare const IntelIdentityNotFoundBodyV2026DetailCodeV2026: {
26250
- readonly IdcIdentityNotFound: "IDC_IDENTITY_NOT_FOUND";
26251
- };
26252
- export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
26253
- /**
26254
- * 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.
26255
- * @export
26256
- * @interface IntelIdentityResponseV2026
26257
- */
26258
- export interface IntelIdentityResponseV2026 {
26259
- /**
26260
- * Identity Security Cloud identifier for this identity.
26261
- * @type {string}
26262
- * @memberof IntelIdentityResponseV2026
26263
- */
26264
- 'id': string;
26265
- /**
26266
- * Discriminator indicating whether this identity is human or machine backed.
26267
- * @type {string}
26268
- * @memberof IntelIdentityResponseV2026
26269
- */
26270
- 'type': IntelIdentityResponseV2026TypeV2026;
26271
- /**
26272
- * Preferred display name for the identity across administrative experiences.
26273
- * @type {string}
26274
- * @memberof IntelIdentityResponseV2026
26275
- */
26276
- 'displayName'?: string;
26277
- /**
26278
- * Optional free-text description assigned to the identity profile when present.
26279
- * @type {string}
26280
- * @memberof IntelIdentityResponseV2026
26281
- */
26282
- 'description'?: string | null;
26283
- /**
26284
- * For HUMAN identities, NERM classification (Employee, Non Employee, or Cannot Determine). For MACHINE identities, connector subtype string from the authoritative source.
26285
- * @type {string}
26286
- * @memberof IntelIdentityResponseV2026
26287
- */
26288
- 'subtype'?: string | null;
26289
- /**
26290
- * Serialized owner reference information when populated by upstream identity services.
26291
- * @type {string}
26292
- * @memberof IntelIdentityResponseV2026
26293
- */
26294
- 'owners'?: string | null;
26295
- /**
26296
- * Arbitrary SCIM-style attribute bag returned for the identity context view.
26297
- * @type {{ [key: string]: any; }}
26298
- * @memberof IntelIdentityResponseV2026
26299
- */
26300
- 'attributes'?: {
26301
- [key: string]: any;
26302
- };
26303
- /**
26304
- * Created and modified timestamps for the identity record in Identity Security Cloud.
26305
- * @type {IntelIdentityTimestampsV2026}
26306
- * @memberof IntelIdentityResponseV2026
26307
- */
26308
- 'timestamps': IntelIdentityTimestampsV2026;
26309
- /**
26310
- * Human identity extension payload when type is HUMAN.
26311
- * @type {IntelHumanV2026}
26312
- * @memberof IntelIdentityResponseV2026
26313
- */
26314
- 'human'?: IntelHumanV2026 | null;
26315
- /**
26316
- * Machine identity extension payload when type is MACHINE.
26317
- * @type {IntelMachineV2026}
26318
- * @memberof IntelIdentityResponseV2026
26319
- */
26320
- 'machine'?: IntelMachineV2026 | null;
26321
- /**
26322
- * Hyperlinks to related Intelligence Package sub-resources; present for HUMAN only.
26323
- * @type {IntelIdentityLinksV2026}
26324
- * @memberof IntelIdentityResponseV2026
26325
- */
26326
- '_links'?: IntelIdentityLinksV2026 | null;
26327
- }
26328
- export declare const IntelIdentityResponseV2026TypeV2026: {
26329
- readonly Human: "HUMAN";
26330
- readonly Machine: "MACHINE";
26331
- };
26332
- export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
26333
- /**
26334
- * Shared response envelope for risk endpoints.
26335
- * @export
26336
- * @interface IntelIdentityRiskBodyV2026
26337
- */
26338
- export interface IntelIdentityRiskBodyV2026 {
26339
- /**
26340
- * Page of outlier access-items associated with the resolved identity outlier.
26341
- * @type {Array<IntelOutlierAccessItemV2026>}
26342
- * @memberof IntelIdentityRiskBodyV2026
26343
- */
26344
- 'outliers': Array<IntelOutlierAccessItemV2026>;
26345
- /**
26346
- * Total available outlier access-item count from upstream.
26347
- * @type {number}
26348
- * @memberof IntelIdentityRiskBodyV2026
26349
- */
26350
- 'outliersTotal': number | null;
26351
- /**
26352
- * Continuation links map; omitted when no additional page exists.
26353
- * @type {IntelRiskLinksV2026}
26354
- * @memberof IntelIdentityRiskBodyV2026
26355
- */
26356
- '_links'?: IntelRiskLinksV2026 | null;
26357
- }
26358
- /**
26359
- *
26360
- * @export
26361
- * @interface IntelIdentityTimestampsV2026
26362
- */
26363
- export interface IntelIdentityTimestampsV2026 {
26364
- /**
26365
- * Timestamp when the identity record was first created in Identity Security Cloud.
26366
- * @type {string}
26367
- * @memberof IntelIdentityTimestampsV2026
26368
- */
26369
- 'createdAt': string;
26370
- /**
26371
- * Timestamp when the identity record was last modified in Identity Security Cloud.
26372
- * @type {string}
26373
- * @memberof IntelIdentityTimestampsV2026
26374
- */
26375
- 'modifiedAt': string;
26376
- }
26377
- /**
26378
- *
26379
- * @export
26380
- * @interface IntelMachineSourceV2026
26381
- */
26382
- export interface IntelMachineSourceV2026 {
26383
- /**
26384
- * Unique identifier of the correlated source in Identity Security Cloud.
26385
- * @type {string}
26386
- * @memberof IntelMachineSourceV2026
26387
- */
26388
- 'id'?: string;
26389
- /**
26390
- * Display name of the source as configured in Identity Security Cloud.
26391
- * @type {string}
26392
- * @memberof IntelMachineSourceV2026
26393
- */
26394
- 'name'?: string;
26395
- /**
26396
- * Connector or source type classification for the backing system.
26397
- * @type {string}
26398
- * @memberof IntelMachineSourceV2026
26399
- */
26400
- 'type'?: string;
26401
- }
26402
- /**
26403
- * MACHINE-specific block; subtype is only on the top-level IntelIdentityResponse.
26404
- * @export
26405
- * @interface IntelMachineV2026
26406
- */
26407
- export interface IntelMachineV2026 {
26408
- /**
26409
- * Business application name associated with the non-human identity.
26410
- * @type {string}
26411
- * @memberof IntelMachineV2026
26412
- */
26413
- 'businessApplication'?: string;
26414
- /**
26415
- * Native identifier value on the authoritative source for the machine identity.
26416
- * @type {string}
26417
- * @memberof IntelMachineV2026
26418
- */
26419
- 'nativeIdentity'?: string;
26420
- /**
26421
- * Optional globally unique identifier for the machine identity when assigned.
26422
- * @type {string}
26423
- * @memberof IntelMachineV2026
26424
- */
26425
- 'uuid'?: string | null;
26426
- /**
26427
- * Identifier of the correlated source for this machine identity.
26428
- * @type {string}
26429
- * @memberof IntelMachineV2026
26430
- */
26431
- 'sourceId'?: string;
26432
- /**
26433
- * Correlated source summary for the machine identity when available.
26434
- * @type {IntelMachineSourceV2026}
26435
- * @memberof IntelMachineV2026
26436
- */
26437
- 'source'?: IntelMachineSourceV2026;
26438
- /**
26439
- * Dataset identifier used by machine identity correlation logic.
26440
- * @type {string}
26441
- * @memberof IntelMachineV2026
26442
- */
26443
- 'datasetId'?: string;
26444
- /**
26445
- * True when a matching account still exists on the connected source.
26446
- * @type {boolean}
26447
- * @memberof IntelMachineV2026
26448
- */
26449
- 'existsOnSource'?: boolean;
26450
- /**
26451
- * True when the machine identity was created through a manual administrative action.
26452
- * @type {boolean}
26453
- * @memberof IntelMachineV2026
26454
- */
26455
- 'manuallyCreated'?: boolean;
26456
- /**
26457
- * True when the machine identity attributes were manually edited after creation.
26458
- * @type {boolean}
26459
- * @memberof IntelMachineV2026
26460
- */
26461
- 'manuallyEdited'?: boolean;
26462
- /**
26463
- * Structured owner references for the machine identity when populated by the service.
26464
- * @type {object}
26465
- * @memberof IntelMachineV2026
26466
- */
26467
- 'owners'?: object;
26468
- /**
26469
- * Entitlements or fine-grained rights linked to the machine identity when available.
26470
- * @type {Array<object>}
26471
- * @memberof IntelMachineV2026
26472
- */
26473
- 'userEntitlements'?: Array<object>;
26474
- }
26475
- /**
26476
- * One outlier access-item row.
26477
- * @export
26478
- * @interface IntelOutlierAccessItemV2026
26479
- */
26480
- export interface IntelOutlierAccessItemV2026 {
26481
- /**
26482
- * Stable identifier of the outlier access-item row.
26483
- * @type {string}
26484
- * @memberof IntelOutlierAccessItemV2026
26485
- */
26486
- 'id': string;
26487
- /**
26488
- * Display label of the risky access item.
26489
- * @type {string}
26490
- * @memberof IntelOutlierAccessItemV2026
26491
- */
26492
- 'displayName': string;
26493
- /**
26494
- * Optional descriptive text for the risky access item.
26495
- * @type {string}
26496
- * @memberof IntelOutlierAccessItemV2026
26497
- */
26498
- 'description'?: string | null;
26499
- /**
26500
- * Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
26501
- * @type {string}
26502
- * @memberof IntelOutlierAccessItemV2026
26503
- */
26504
- 'accessType': string;
26505
- /**
26506
- * Source name where the risky access item exists.
26507
- * @type {string}
26508
- * @memberof IntelOutlierAccessItemV2026
26509
- */
26510
- 'sourceName': string;
26511
- /**
26512
- * Indicates whether analytics marked this item as extremely rare.
26513
- * @type {boolean}
26514
- * @memberof IntelOutlierAccessItemV2026
26515
- */
26516
- 'extremelyRare': boolean;
26517
- }
26518
- /**
26519
- * Source metadata associated with the privileged access item when present.
26520
- * @export
26521
- * @interface IntelPrivilegedAccessItemWireSourceV2026
26522
- */
26523
- export interface IntelPrivilegedAccessItemWireSourceV2026 {
26524
- /**
26525
- * Human-readable source name for the privileged access item.
26526
- * @type {string}
26527
- * @memberof IntelPrivilegedAccessItemWireSourceV2026
26528
- */
26529
- 'name'?: string;
26530
- /**
26531
- * Source identifier for the privileged access item.
26532
- * @type {string}
26533
- * @memberof IntelPrivilegedAccessItemWireSourceV2026
26534
- */
26535
- 'id'?: string;
26536
- }
26537
- /**
26538
- *
26539
- * @export
26540
- * @interface IntelPrivilegedAccessItemWireV2026
26541
- */
26542
- export interface IntelPrivilegedAccessItemWireV2026 {
26543
- /**
26544
- * True when SDS Search classifies this item as privileged access for the identity.
26545
- * @type {boolean}
26546
- * @memberof IntelPrivilegedAccessItemWireV2026
26547
- */
26548
- 'privileged': boolean;
26549
- /**
26550
- * Display label for the privileged access item in administrative experiences.
26551
- * @type {string}
26552
- * @memberof IntelPrivilegedAccessItemWireV2026
26553
- */
26554
- 'displayName'?: string;
26555
- /**
26556
- * Technical name of the privileged access item from SDS Search.
26557
- * @type {string}
26558
- * @memberof IntelPrivilegedAccessItemWireV2026
26559
- */
26560
- 'name'?: string;
26561
- /**
26562
- * True when the privileged item is modeled as a standalone entitlement or access object.
26563
- * @type {boolean}
26564
- * @memberof IntelPrivilegedAccessItemWireV2026
26565
- */
26566
- 'standalone'?: boolean;
26567
- /**
26568
- * Identifier of the privileged access item returned by SDS Search.
26569
- * @type {string}
26570
- * @memberof IntelPrivilegedAccessItemWireV2026
26571
- */
26572
- 'id': string;
26573
- /**
26574
- *
26575
- * @type {IntelPrivilegedAccessItemWireSourceV2026}
26576
- * @memberof IntelPrivilegedAccessItemWireV2026
26577
- */
26578
- 'source'?: IntelPrivilegedAccessItemWireSourceV2026;
26579
- /**
26580
- * Source attribute name that carries the privileged value when applicable.
26581
- * @type {string}
26582
- * @memberof IntelPrivilegedAccessItemWireV2026
26583
- */
26584
- 'attribute'?: string;
26585
- /**
26586
- * Object type classification from SDS Search (for example ENTITLEMENT).
26587
- * @type {string}
26588
- * @memberof IntelPrivilegedAccessItemWireV2026
26589
- */
26590
- 'type': string;
26591
- /**
26592
- * Privileged value on the source attribute when applicable.
26593
- * @type {string}
26594
- * @memberof IntelPrivilegedAccessItemWireV2026
26595
- */
26596
- 'value'?: string;
26597
- }
26598
- /**
26599
- * Continuation links for risk responses.
26600
- * @export
26601
- * @interface IntelRiskLinksV2026
26602
- */
26603
- export interface IntelRiskLinksV2026 {
26604
- /**
26605
- * Link to fetch the next outlier page for the same identity.
26606
- * @type {IntelHrefV2026}
26607
- * @memberof IntelRiskLinksV2026
26608
- */
26609
- 'outliers'?: IntelHrefV2026;
26610
- }
26611
26261
  /**
26612
26262
  *
26613
26263
  * @export
@@ -27791,6 +27441,19 @@ export interface ListDeploys200ResponseV2026 {
27791
27441
  */
27792
27442
  'items'?: Array<DeployResponseV2026>;
27793
27443
  }
27444
+ /**
27445
+ *
27446
+ * @export
27447
+ * @interface ListEntitlementConnections412ResponseV2026
27448
+ */
27449
+ export interface ListEntitlementConnections412ResponseV2026 {
27450
+ /**
27451
+ * A message describing the error
27452
+ * @type {object}
27453
+ * @memberof ListEntitlementConnections412ResponseV2026
27454
+ */
27455
+ 'message'?: object;
27456
+ }
27794
27457
  /**
27795
27458
  *
27796
27459
  * @export
@@ -52362,19 +52025,6 @@ export declare const UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV202
52362
52025
  readonly Pdf: "PDF";
52363
52026
  };
52364
52027
  export type UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026 = typeof UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026[keyof typeof UncorrelatedAccountsReportArgumentsV2026SelectedFormatsV2026];
52365
- /**
52366
- *
52367
- * @export
52368
- * @interface UpdateAccessProfilesInBulk412ResponseV2026
52369
- */
52370
- export interface UpdateAccessProfilesInBulk412ResponseV2026 {
52371
- /**
52372
- * A message describing the error
52373
- * @type {object}
52374
- * @memberof UpdateAccessProfilesInBulk412ResponseV2026
52375
- */
52376
- 'message'?: object;
52377
- }
52378
52028
  /**
52379
52029
  *
52380
52030
  * @export
@@ -70854,6 +70504,374 @@ export declare class DimensionsV2026Api extends BaseAPI {
70854
70504
  */
70855
70505
  patchDimension(requestParameters: DimensionsV2026ApiPatchDimensionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DimensionV2026, any>>;
70856
70506
  }
70507
+ /**
70508
+ * EntitlementConnectionsV2026Api - axios parameter creator
70509
+ * @export
70510
+ */
70511
+ export declare const EntitlementConnectionsV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
70512
+ /**
70513
+ * 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.
70514
+ * @summary List entitlement connections
70515
+ * @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.
70516
+ * @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.
70517
+ * @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.
70518
+ * @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.
70519
+ * @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*
70520
+ * @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.
70521
+ * @param {*} [axiosOptions] Override http request option.
70522
+ * @throws {RequiredError}
70523
+ */
70524
+ listEntitlementConnections: (offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70525
+ /**
70526
+ * Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
70527
+ * @summary List my entitlement connections
70528
+ * @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.
70529
+ * @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.
70530
+ * @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.
70531
+ * @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.
70532
+ * @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.
70533
+ * @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**
70534
+ * @param {*} [axiosOptions] Override http request option.
70535
+ * @throws {RequiredError}
70536
+ */
70537
+ listEntitlementConnectionsForCurrentIdentity: (offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70538
+ /**
70539
+ * Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
70540
+ * @summary Update entitlement connection
70541
+ * @param {string} connectionId Connection ID (UUID with or without hyphens).
70542
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
70543
+ * @param {*} [axiosOptions] Override http request option.
70544
+ * @throws {RequiredError}
70545
+ */
70546
+ patchEntitlementConnectionById: (connectionId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70547
+ /**
70548
+ * Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
70549
+ * @summary Update connection by query
70550
+ * @param {string} entitlementId Entitlement ID (UUID with or without hyphens).
70551
+ * @param {string} identityId Identity ID (UUID with or without hyphens).
70552
+ * @param {string} accountId Account ID (UUID with or without hyphens).
70553
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
70554
+ * @param {*} [axiosOptions] Override http request option.
70555
+ * @throws {RequiredError}
70556
+ */
70557
+ patchEntitlementConnectionByQuery: (entitlementId: string, identityId: string, accountId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70558
+ /**
70559
+ * Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
70560
+ * @summary Update connections in bulk
70561
+ * @param {Array<EntitlementConnectionBulkUpdateItemV2026>} entitlementConnectionBulkUpdateItemV2026
70562
+ * @param {*} [axiosOptions] Override http request option.
70563
+ * @throws {RequiredError}
70564
+ */
70565
+ updateEntitlementConnectionsBulk: (entitlementConnectionBulkUpdateItemV2026: Array<EntitlementConnectionBulkUpdateItemV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70566
+ };
70567
+ /**
70568
+ * EntitlementConnectionsV2026Api - functional programming interface
70569
+ * @export
70570
+ */
70571
+ export declare const EntitlementConnectionsV2026ApiFp: (configuration?: Configuration) => {
70572
+ /**
70573
+ * 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.
70574
+ * @summary List entitlement connections
70575
+ * @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.
70576
+ * @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.
70577
+ * @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.
70578
+ * @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.
70579
+ * @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*
70580
+ * @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.
70581
+ * @param {*} [axiosOptions] Override http request option.
70582
+ * @throws {RequiredError}
70583
+ */
70584
+ listEntitlementConnections(offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementConnectionSearchHitV2026>>>;
70585
+ /**
70586
+ * Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
70587
+ * @summary List my entitlement connections
70588
+ * @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.
70589
+ * @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.
70590
+ * @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.
70591
+ * @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.
70592
+ * @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.
70593
+ * @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**
70594
+ * @param {*} [axiosOptions] Override http request option.
70595
+ * @throws {RequiredError}
70596
+ */
70597
+ listEntitlementConnectionsForCurrentIdentity(offset?: number, limit?: number, count?: boolean, searchAfter?: string, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementConnectionSearchHitV2026>>>;
70598
+ /**
70599
+ * Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
70600
+ * @summary Update entitlement connection
70601
+ * @param {string} connectionId Connection ID (UUID with or without hyphens).
70602
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
70603
+ * @param {*} [axiosOptions] Override http request option.
70604
+ * @throws {RequiredError}
70605
+ */
70606
+ patchEntitlementConnectionById(connectionId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementConnectionV2026>>;
70607
+ /**
70608
+ * Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
70609
+ * @summary Update connection by query
70610
+ * @param {string} entitlementId Entitlement ID (UUID with or without hyphens).
70611
+ * @param {string} identityId Identity ID (UUID with or without hyphens).
70612
+ * @param {string} accountId Account ID (UUID with or without hyphens).
70613
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026
70614
+ * @param {*} [axiosOptions] Override http request option.
70615
+ * @throws {RequiredError}
70616
+ */
70617
+ patchEntitlementConnectionByQuery(entitlementId: string, identityId: string, accountId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementConnectionV2026>>;
70618
+ /**
70619
+ * Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
70620
+ * @summary Update connections in bulk
70621
+ * @param {Array<EntitlementConnectionBulkUpdateItemV2026>} entitlementConnectionBulkUpdateItemV2026
70622
+ * @param {*} [axiosOptions] Override http request option.
70623
+ * @throws {RequiredError}
70624
+ */
70625
+ updateEntitlementConnectionsBulk(entitlementConnectionBulkUpdateItemV2026: Array<EntitlementConnectionBulkUpdateItemV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementConnectionBulkUpdateResultItemV2026>>>;
70626
+ };
70627
+ /**
70628
+ * EntitlementConnectionsV2026Api - factory interface
70629
+ * @export
70630
+ */
70631
+ export declare const EntitlementConnectionsV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
70632
+ /**
70633
+ * 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.
70634
+ * @summary List entitlement connections
70635
+ * @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest} requestParameters Request parameters.
70636
+ * @param {*} [axiosOptions] Override http request option.
70637
+ * @throws {RequiredError}
70638
+ */
70639
+ listEntitlementConnections(requestParameters?: EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementConnectionSearchHitV2026>>;
70640
+ /**
70641
+ * Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
70642
+ * @summary List my entitlement connections
70643
+ * @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest} requestParameters Request parameters.
70644
+ * @param {*} [axiosOptions] Override http request option.
70645
+ * @throws {RequiredError}
70646
+ */
70647
+ listEntitlementConnectionsForCurrentIdentity(requestParameters?: EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementConnectionSearchHitV2026>>;
70648
+ /**
70649
+ * Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
70650
+ * @summary Update entitlement connection
70651
+ * @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest} requestParameters Request parameters.
70652
+ * @param {*} [axiosOptions] Override http request option.
70653
+ * @throws {RequiredError}
70654
+ */
70655
+ patchEntitlementConnectionById(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementConnectionV2026>;
70656
+ /**
70657
+ * Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
70658
+ * @summary Update connection by query
70659
+ * @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest} requestParameters Request parameters.
70660
+ * @param {*} [axiosOptions] Override http request option.
70661
+ * @throws {RequiredError}
70662
+ */
70663
+ patchEntitlementConnectionByQuery(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementConnectionV2026>;
70664
+ /**
70665
+ * Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
70666
+ * @summary Update connections in bulk
70667
+ * @param {EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest} requestParameters Request parameters.
70668
+ * @param {*} [axiosOptions] Override http request option.
70669
+ * @throws {RequiredError}
70670
+ */
70671
+ updateEntitlementConnectionsBulk(requestParameters: EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementConnectionBulkUpdateResultItemV2026>>;
70672
+ };
70673
+ /**
70674
+ * Request parameters for listEntitlementConnections operation in EntitlementConnectionsV2026Api.
70675
+ * @export
70676
+ * @interface EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest
70677
+ */
70678
+ export interface EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest {
70679
+ /**
70680
+ * 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.
70681
+ * @type {number}
70682
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
70683
+ */
70684
+ readonly offset?: number;
70685
+ /**
70686
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
70687
+ * @type {number}
70688
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
70689
+ */
70690
+ readonly limit?: number;
70691
+ /**
70692
+ * 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.
70693
+ * @type {boolean}
70694
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
70695
+ */
70696
+ readonly count?: boolean;
70697
+ /**
70698
+ * 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.
70699
+ * @type {string}
70700
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
70701
+ */
70702
+ readonly searchAfter?: string;
70703
+ /**
70704
+ * 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*
70705
+ * @type {string}
70706
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
70707
+ */
70708
+ readonly filters?: string;
70709
+ /**
70710
+ * 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.
70711
+ * @type {string}
70712
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnections
70713
+ */
70714
+ readonly sorters?: string;
70715
+ }
70716
+ /**
70717
+ * Request parameters for listEntitlementConnectionsForCurrentIdentity operation in EntitlementConnectionsV2026Api.
70718
+ * @export
70719
+ * @interface EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest
70720
+ */
70721
+ export interface EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest {
70722
+ /**
70723
+ * 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.
70724
+ * @type {number}
70725
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
70726
+ */
70727
+ readonly offset?: number;
70728
+ /**
70729
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
70730
+ * @type {number}
70731
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
70732
+ */
70733
+ readonly limit?: number;
70734
+ /**
70735
+ * 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.
70736
+ * @type {boolean}
70737
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
70738
+ */
70739
+ readonly count?: boolean;
70740
+ /**
70741
+ * 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.
70742
+ * @type {string}
70743
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
70744
+ */
70745
+ readonly searchAfter?: string;
70746
+ /**
70747
+ * 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.
70748
+ * @type {string}
70749
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
70750
+ */
70751
+ readonly filters?: string;
70752
+ /**
70753
+ * 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**
70754
+ * @type {string}
70755
+ * @memberof EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentity
70756
+ */
70757
+ readonly sorters?: string;
70758
+ }
70759
+ /**
70760
+ * Request parameters for patchEntitlementConnectionById operation in EntitlementConnectionsV2026Api.
70761
+ * @export
70762
+ * @interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest
70763
+ */
70764
+ export interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest {
70765
+ /**
70766
+ * Connection ID (UUID with or without hyphens).
70767
+ * @type {string}
70768
+ * @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionById
70769
+ */
70770
+ readonly connectionId: string;
70771
+ /**
70772
+ *
70773
+ * @type {Array<JsonPatchOperationV2026>}
70774
+ * @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionById
70775
+ */
70776
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
70777
+ }
70778
+ /**
70779
+ * Request parameters for patchEntitlementConnectionByQuery operation in EntitlementConnectionsV2026Api.
70780
+ * @export
70781
+ * @interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest
70782
+ */
70783
+ export interface EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest {
70784
+ /**
70785
+ * Entitlement ID (UUID with or without hyphens).
70786
+ * @type {string}
70787
+ * @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
70788
+ */
70789
+ readonly entitlementId: string;
70790
+ /**
70791
+ * Identity ID (UUID with or without hyphens).
70792
+ * @type {string}
70793
+ * @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
70794
+ */
70795
+ readonly identityId: string;
70796
+ /**
70797
+ * Account ID (UUID with or without hyphens).
70798
+ * @type {string}
70799
+ * @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
70800
+ */
70801
+ readonly accountId: string;
70802
+ /**
70803
+ *
70804
+ * @type {Array<JsonPatchOperationV2026>}
70805
+ * @memberof EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQuery
70806
+ */
70807
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
70808
+ }
70809
+ /**
70810
+ * Request parameters for updateEntitlementConnectionsBulk operation in EntitlementConnectionsV2026Api.
70811
+ * @export
70812
+ * @interface EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest
70813
+ */
70814
+ export interface EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest {
70815
+ /**
70816
+ *
70817
+ * @type {Array<EntitlementConnectionBulkUpdateItemV2026>}
70818
+ * @memberof EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulk
70819
+ */
70820
+ readonly entitlementConnectionBulkUpdateItemV2026: Array<EntitlementConnectionBulkUpdateItemV2026>;
70821
+ }
70822
+ /**
70823
+ * EntitlementConnectionsV2026Api - object-oriented interface
70824
+ * @export
70825
+ * @class EntitlementConnectionsV2026Api
70826
+ * @extends {BaseAPI}
70827
+ */
70828
+ export declare class EntitlementConnectionsV2026Api extends BaseAPI {
70829
+ /**
70830
+ * 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.
70831
+ * @summary List entitlement connections
70832
+ * @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest} requestParameters Request parameters.
70833
+ * @param {*} [axiosOptions] Override http request option.
70834
+ * @throws {RequiredError}
70835
+ * @memberof EntitlementConnectionsV2026Api
70836
+ */
70837
+ listEntitlementConnections(requestParameters?: EntitlementConnectionsV2026ApiListEntitlementConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementConnectionSearchHitV2026[], any>>;
70838
+ /**
70839
+ * Returns entitlement connections constrained to the authenticated identity. This endpoint proxies to Search and supports standard collection query parameters.
70840
+ * @summary List my entitlement connections
70841
+ * @param {EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest} requestParameters Request parameters.
70842
+ * @param {*} [axiosOptions] Override http request option.
70843
+ * @throws {RequiredError}
70844
+ * @memberof EntitlementConnectionsV2026Api
70845
+ */
70846
+ listEntitlementConnectionsForCurrentIdentity(requestParameters?: EntitlementConnectionsV2026ApiListEntitlementConnectionsForCurrentIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementConnectionSearchHitV2026[], any>>;
70847
+ /**
70848
+ * Applies JSON Patch operations to an entitlement connection selected by `connectionId`.
70849
+ * @summary Update entitlement connection
70850
+ * @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest} requestParameters Request parameters.
70851
+ * @param {*} [axiosOptions] Override http request option.
70852
+ * @throws {RequiredError}
70853
+ * @memberof EntitlementConnectionsV2026Api
70854
+ */
70855
+ patchEntitlementConnectionById(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementConnectionV2026, any>>;
70856
+ /**
70857
+ * Applies JSON Patch operations to a single entitlement connection selected by `entitlementId`, `identityId`, and `accountId`.
70858
+ * @summary Update connection by query
70859
+ * @param {EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest} requestParameters Request parameters.
70860
+ * @param {*} [axiosOptions] Override http request option.
70861
+ * @throws {RequiredError}
70862
+ * @memberof EntitlementConnectionsV2026Api
70863
+ */
70864
+ patchEntitlementConnectionByQuery(requestParameters: EntitlementConnectionsV2026ApiPatchEntitlementConnectionByQueryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementConnectionV2026, any>>;
70865
+ /**
70866
+ * Updates connection type for up to 100 connections in one request. The API returns per-item results in a 207 Multi-Status response.
70867
+ * @summary Update connections in bulk
70868
+ * @param {EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest} requestParameters Request parameters.
70869
+ * @param {*} [axiosOptions] Override http request option.
70870
+ * @throws {RequiredError}
70871
+ * @memberof EntitlementConnectionsV2026Api
70872
+ */
70873
+ updateEntitlementConnectionsBulk(requestParameters: EntitlementConnectionsV2026ApiUpdateEntitlementConnectionsBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementConnectionBulkUpdateResultItemV2026[], any>>;
70874
+ }
70857
70875
  /**
70858
70876
  * EntitlementsV2026Api - axios parameter creator
70859
70877
  * @export
@@ -79417,302 +79435,6 @@ export declare class IdentityProfilesV2026Api extends BaseAPI {
79417
79435
  */
79418
79436
  updateIdentityProfile(requestParameters: IdentityProfilesV2026ApiUpdateIdentityProfileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileV2026, any>>;
79419
79437
  }
79420
- /**
79421
- * IntelligencePackageV2026Api - axios parameter creator
79422
- * @export
79423
- */
79424
- export declare const IntelligencePackageV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
79425
- /**
79426
- * 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.
79427
- * @summary Accounts merged with privileged data
79428
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79429
- * @param {*} [axiosOptions] Override http request option.
79430
- * @throws {RequiredError}
79431
- */
79432
- getIntelIdentityAccess: (identityID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79433
- /**
79434
- * 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.
79435
- * @summary Return identity access-history events
79436
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79437
- * @param {number} [limit] Maximum number of historical events to return in this page of results.
79438
- * @param {number} [offset] Zero-based index of the first event row to return for pagination.
79439
- * @param {boolean} [count] When true, the service may include total count metadata alongside the result list.
79440
- * @param {*} [axiosOptions] Override http request option.
79441
- * @throws {RequiredError}
79442
- */
79443
- getIntelIdentityAccessHistory: (identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79444
- /**
79445
- * 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.
79446
- * @summary Identity risk snapshot
79447
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79448
- * @param {*} [axiosOptions] Override http request option.
79449
- * @throws {RequiredError}
79450
- */
79451
- getIntelIdentityRisk: (identityID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79452
- /**
79453
- * 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.
79454
- * @summary Risk outliers continuation paging
79455
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79456
- * @param {number} [limit] Maximum number of outlier rows to return for this page.
79457
- * @param {number} [offset] Zero-based row index for the first returned outlier item.
79458
- * @param {*} [axiosOptions] Override http request option.
79459
- * @throws {RequiredError}
79460
- */
79461
- getIntelIdentityRiskOutliers: (identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79462
- /**
79463
- * 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.
79464
- * @summary Resolve one identity by filter
79465
- * @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*
79466
- * @param {*} [axiosOptions] Override http request option.
79467
- * @throws {RequiredError}
79468
- */
79469
- searchIntelIdentities: (filters: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79470
- };
79471
- /**
79472
- * IntelligencePackageV2026Api - functional programming interface
79473
- * @export
79474
- */
79475
- export declare const IntelligencePackageV2026ApiFp: (configuration?: Configuration) => {
79476
- /**
79477
- * 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.
79478
- * @summary Accounts merged with privileged data
79479
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79480
- * @param {*} [axiosOptions] Override http request option.
79481
- * @throws {RequiredError}
79482
- */
79483
- getIntelIdentityAccess(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessBodyV2026>>;
79484
- /**
79485
- * 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.
79486
- * @summary Return identity access-history events
79487
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79488
- * @param {number} [limit] Maximum number of historical events to return in this page of results.
79489
- * @param {number} [offset] Zero-based index of the first event row to return for pagination.
79490
- * @param {boolean} [count] When true, the service may include total count metadata alongside the result list.
79491
- * @param {*} [axiosOptions] Override http request option.
79492
- * @throws {RequiredError}
79493
- */
79494
- getIntelIdentityAccessHistory(identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessHistoryBodyV2026>>;
79495
- /**
79496
- * 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.
79497
- * @summary Identity risk snapshot
79498
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79499
- * @param {*} [axiosOptions] Override http request option.
79500
- * @throws {RequiredError}
79501
- */
79502
- getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>>;
79503
- /**
79504
- * 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.
79505
- * @summary Risk outliers continuation paging
79506
- * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79507
- * @param {number} [limit] Maximum number of outlier rows to return for this page.
79508
- * @param {number} [offset] Zero-based row index for the first returned outlier item.
79509
- * @param {*} [axiosOptions] Override http request option.
79510
- * @throws {RequiredError}
79511
- */
79512
- getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>>;
79513
- /**
79514
- * 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.
79515
- * @summary Resolve one identity by filter
79516
- * @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*
79517
- * @param {*} [axiosOptions] Override http request option.
79518
- * @throws {RequiredError}
79519
- */
79520
- searchIntelIdentities(filters: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityResponseV2026>>;
79521
- };
79522
- /**
79523
- * IntelligencePackageV2026Api - factory interface
79524
- * @export
79525
- */
79526
- export declare const IntelligencePackageV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
79527
- /**
79528
- * 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.
79529
- * @summary Accounts merged with privileged data
79530
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessRequest} requestParameters Request parameters.
79531
- * @param {*} [axiosOptions] Override http request option.
79532
- * @throws {RequiredError}
79533
- */
79534
- getIntelIdentityAccess(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessBodyV2026>;
79535
- /**
79536
- * 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.
79537
- * @summary Return identity access-history events
79538
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest} requestParameters Request parameters.
79539
- * @param {*} [axiosOptions] Override http request option.
79540
- * @throws {RequiredError}
79541
- */
79542
- getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026>;
79543
- /**
79544
- * 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.
79545
- * @summary Identity risk snapshot
79546
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
79547
- * @param {*} [axiosOptions] Override http request option.
79548
- * @throws {RequiredError}
79549
- */
79550
- getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026>;
79551
- /**
79552
- * 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.
79553
- * @summary Risk outliers continuation paging
79554
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
79555
- * @param {*} [axiosOptions] Override http request option.
79556
- * @throws {RequiredError}
79557
- */
79558
- getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026>;
79559
- /**
79560
- * 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.
79561
- * @summary Resolve one identity by filter
79562
- * @param {IntelligencePackageV2026ApiSearchIntelIdentitiesRequest} requestParameters Request parameters.
79563
- * @param {*} [axiosOptions] Override http request option.
79564
- * @throws {RequiredError}
79565
- */
79566
- searchIntelIdentities(requestParameters: IntelligencePackageV2026ApiSearchIntelIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityResponseV2026>;
79567
- };
79568
- /**
79569
- * Request parameters for getIntelIdentityAccess operation in IntelligencePackageV2026Api.
79570
- * @export
79571
- * @interface IntelligencePackageV2026ApiGetIntelIdentityAccessRequest
79572
- */
79573
- export interface IntelligencePackageV2026ApiGetIntelIdentityAccessRequest {
79574
- /**
79575
- * Non-empty identity id path segment for Intelligence Package sub-resources.
79576
- * @type {string}
79577
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccess
79578
- */
79579
- readonly identityID: string;
79580
- }
79581
- /**
79582
- * Request parameters for getIntelIdentityAccessHistory operation in IntelligencePackageV2026Api.
79583
- * @export
79584
- * @interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
79585
- */
79586
- export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest {
79587
- /**
79588
- * Non-empty identity id path segment for Intelligence Package sub-resources.
79589
- * @type {string}
79590
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79591
- */
79592
- readonly identityID: string;
79593
- /**
79594
- * Maximum number of historical events to return in this page of results.
79595
- * @type {number}
79596
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79597
- */
79598
- readonly limit?: number;
79599
- /**
79600
- * Zero-based index of the first event row to return for pagination.
79601
- * @type {number}
79602
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79603
- */
79604
- readonly offset?: number;
79605
- /**
79606
- * When true, the service may include total count metadata alongside the result list.
79607
- * @type {boolean}
79608
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79609
- */
79610
- readonly count?: boolean;
79611
- }
79612
- /**
79613
- * Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
79614
- * @export
79615
- * @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
79616
- */
79617
- export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
79618
- /**
79619
- * Non-empty identity id path segment for Intelligence Package sub-resources.
79620
- * @type {string}
79621
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
79622
- */
79623
- readonly identityID: string;
79624
- }
79625
- /**
79626
- * Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
79627
- * @export
79628
- * @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
79629
- */
79630
- export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
79631
- /**
79632
- * Non-empty identity id path segment for Intelligence Package sub-resources.
79633
- * @type {string}
79634
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
79635
- */
79636
- readonly identityID: string;
79637
- /**
79638
- * Maximum number of outlier rows to return for this page.
79639
- * @type {number}
79640
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
79641
- */
79642
- readonly limit?: number;
79643
- /**
79644
- * Zero-based row index for the first returned outlier item.
79645
- * @type {number}
79646
- * @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
79647
- */
79648
- readonly offset?: number;
79649
- }
79650
- /**
79651
- * Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
79652
- * @export
79653
- * @interface IntelligencePackageV2026ApiSearchIntelIdentitiesRequest
79654
- */
79655
- export interface IntelligencePackageV2026ApiSearchIntelIdentitiesRequest {
79656
- /**
79657
- * 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*
79658
- * @type {string}
79659
- * @memberof IntelligencePackageV2026ApiSearchIntelIdentities
79660
- */
79661
- readonly filters: string;
79662
- }
79663
- /**
79664
- * IntelligencePackageV2026Api - object-oriented interface
79665
- * @export
79666
- * @class IntelligencePackageV2026Api
79667
- * @extends {BaseAPI}
79668
- */
79669
- export declare class IntelligencePackageV2026Api extends BaseAPI {
79670
- /**
79671
- * 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.
79672
- * @summary Accounts merged with privileged data
79673
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessRequest} requestParameters Request parameters.
79674
- * @param {*} [axiosOptions] Override http request option.
79675
- * @throws {RequiredError}
79676
- * @memberof IntelligencePackageV2026Api
79677
- */
79678
- getIntelIdentityAccess(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityAccessBodyV2026, any>>;
79679
- /**
79680
- * 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.
79681
- * @summary Return identity access-history events
79682
- * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest} requestParameters Request parameters.
79683
- * @param {*} [axiosOptions] Override http request option.
79684
- * @throws {RequiredError}
79685
- * @memberof IntelligencePackageV2026Api
79686
- */
79687
- getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityAccessHistoryBodyV2026, any>>;
79688
- /**
79689
- * 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.
79690
- * @summary Identity risk snapshot
79691
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
79692
- * @param {*} [axiosOptions] Override http request option.
79693
- * @throws {RequiredError}
79694
- * @memberof IntelligencePackageV2026Api
79695
- */
79696
- getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityRiskBodyV2026, any>>;
79697
- /**
79698
- * 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.
79699
- * @summary Risk outliers continuation paging
79700
- * @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
79701
- * @param {*} [axiosOptions] Override http request option.
79702
- * @throws {RequiredError}
79703
- * @memberof IntelligencePackageV2026Api
79704
- */
79705
- getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityRiskBodyV2026, any>>;
79706
- /**
79707
- * 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.
79708
- * @summary Resolve one identity by filter
79709
- * @param {IntelligencePackageV2026ApiSearchIntelIdentitiesRequest} requestParameters Request parameters.
79710
- * @param {*} [axiosOptions] Override http request option.
79711
- * @throws {RequiredError}
79712
- * @memberof IntelligencePackageV2026Api
79713
- */
79714
- searchIntelIdentities(requestParameters: IntelligencePackageV2026ApiSearchIntelIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityResponseV2026, any>>;
79715
- }
79716
79438
  /**
79717
79439
  * JITAccessV2026Api - axios parameter creator
79718
79440
  * @export