sailpoint-api-client 1.8.42 → 1.8.51

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.
@@ -275,6 +275,12 @@ export interface AccessItemAccessProfileResponseV2026 {
275
275
  * @memberof AccessItemAccessProfileResponseV2026
276
276
  */
277
277
  'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2026>;
278
+ /**
279
+ * the date the access profile will be assigned to the specified identity, in case requested with a future start date
280
+ * @type {string}
281
+ * @memberof AccessItemAccessProfileResponseV2026
282
+ */
283
+ 'startDate'?: string | null;
278
284
  /**
279
285
  * the date the access profile is no longer assigned to the specified identity
280
286
  * @type {string}
@@ -499,6 +505,12 @@ export interface AccessItemAssociatedAccessItemV2026 {
499
505
  * @memberof AccessItemAssociatedAccessItemV2026
500
506
  */
501
507
  'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2026>;
508
+ /**
509
+ * the date the access profile will be assigned to the specified identity, in case requested with a future start date
510
+ * @type {string}
511
+ * @memberof AccessItemAssociatedAccessItemV2026
512
+ */
513
+ 'startDate'?: string | null;
502
514
  /**
503
515
  * the date the role is no longer assigned to the specified identity
504
516
  * @type {string}
@@ -947,6 +959,12 @@ export interface AccessItemRoleResponseV2026 {
947
959
  * @memberof AccessItemRoleResponseV2026
948
960
  */
949
961
  'description'?: string;
962
+ /**
963
+ * the date the access profile will be assigned to the specified identity, in case requested with a future start date
964
+ * @type {string}
965
+ * @memberof AccessItemRoleResponseV2026
966
+ */
967
+ 'startDate'?: string | null;
950
968
  /**
951
969
  * the date the role is no longer assigned to the specified identity
952
970
  * @type {string}
@@ -7755,12 +7773,6 @@ export interface ApprovalConfigCronTimezoneV2026 {
7755
7773
  * @interface ApprovalConfigEscalationConfigEscalationChainInnerV2026
7756
7774
  */
7757
7775
  export interface ApprovalConfigEscalationConfigEscalationChainInnerV2026 {
7758
- /**
7759
- * ID of the escalation chain.
7760
- * @type {string}
7761
- * @memberof ApprovalConfigEscalationConfigEscalationChainInnerV2026
7762
- */
7763
- 'chainId'?: string;
7764
7776
  /**
7765
7777
  * Starting at 1 defines the order in which the identities will get assigned
7766
7778
  * @type {number}
@@ -7768,18 +7780,43 @@ export interface ApprovalConfigEscalationConfigEscalationChainInnerV2026 {
7768
7780
  */
7769
7781
  'tier'?: number;
7770
7782
  /**
7771
- * Identity ID in the escalation chain.
7783
+ * Optional Identity ID of the type of identity defined in the \'identityType\' field.
7772
7784
  * @type {string}
7773
7785
  * @memberof ApprovalConfigEscalationConfigEscalationChainInnerV2026
7774
7786
  */
7775
7787
  'identityId'?: string;
7776
7788
  /**
7777
- * Type of identity in the escalation chain.
7789
+ * Type of identityId in the escalation chain.
7778
7790
  * @type {string}
7779
7791
  * @memberof ApprovalConfigEscalationConfigEscalationChainInnerV2026
7780
7792
  */
7781
- 'identityType'?: string;
7793
+ 'identityType'?: ApprovalConfigEscalationConfigEscalationChainInnerV2026IdentityTypeV2026;
7782
7794
  }
7795
+ export declare const ApprovalConfigEscalationConfigEscalationChainInnerV2026IdentityTypeV2026: {
7796
+ readonly Identity: "IDENTITY";
7797
+ readonly ManagerOf: "MANAGER_OF";
7798
+ readonly AccountOwner: "ACCOUNT_OWNER";
7799
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7800
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7801
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7802
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7803
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7804
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7805
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7806
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7807
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7808
+ readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7809
+ readonly ApplicationOwner: "APPLICATION_OWNER";
7810
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7811
+ readonly RoleOwner: "ROLE_OWNER";
7812
+ readonly SourceOwner: "SOURCE_OWNER";
7813
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7814
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7815
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7816
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7817
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7818
+ };
7819
+ export type ApprovalConfigEscalationConfigEscalationChainInnerV2026IdentityTypeV2026 = typeof ApprovalConfigEscalationConfigEscalationChainInnerV2026IdentityTypeV2026[keyof typeof ApprovalConfigEscalationConfigEscalationChainInnerV2026IdentityTypeV2026];
7783
7820
  /**
7784
7821
  * Configuration for escalations.
7785
7822
  * @export
@@ -7811,6 +7848,52 @@ export interface ApprovalConfigEscalationConfigV2026 {
7811
7848
  */
7812
7849
  'escalationChain'?: Array<ApprovalConfigEscalationConfigEscalationChainInnerV2026>;
7813
7850
  }
7851
+ /**
7852
+ * Configuration for fallback approver. Used if the user cannot be found for whatever reason and escalation config does not exist.
7853
+ * @export
7854
+ * @interface ApprovalConfigFallbackApproverV2026
7855
+ */
7856
+ export interface ApprovalConfigFallbackApproverV2026 {
7857
+ /**
7858
+ * Optional Identity ID of the type of identity defined in the \'type\' field.
7859
+ * @type {string}
7860
+ * @memberof ApprovalConfigFallbackApproverV2026
7861
+ */
7862
+ 'identityID'?: string;
7863
+ /**
7864
+ * Type of identityID for the fallback approver.
7865
+ * @type {string}
7866
+ * @memberof ApprovalConfigFallbackApproverV2026
7867
+ */
7868
+ 'type'?: ApprovalConfigFallbackApproverV2026TypeV2026;
7869
+ }
7870
+ export declare const ApprovalConfigFallbackApproverV2026TypeV2026: {
7871
+ readonly Identity: "IDENTITY";
7872
+ readonly ManagerOf: "MANAGER_OF";
7873
+ readonly AccountOwner: "ACCOUNT_OWNER";
7874
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7875
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7876
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7877
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7878
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7879
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7880
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7881
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7882
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7883
+ readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7884
+ readonly ApplicationOwner: "APPLICATION_OWNER";
7885
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7886
+ readonly RoleOwner: "ROLE_OWNER";
7887
+ readonly SourceOwner: "SOURCE_OWNER";
7888
+ readonly RequestedTargetOwner: "REQUESTED_TARGET_OWNER";
7889
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7890
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7891
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7892
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7893
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7894
+ readonly RequestedTargetPrimaryOwner: "REQUESTED_TARGET_PRIMARY_OWNER";
7895
+ };
7896
+ export type ApprovalConfigFallbackApproverV2026TypeV2026 = typeof ApprovalConfigFallbackApproverV2026TypeV2026[keyof typeof ApprovalConfigFallbackApproverV2026TypeV2026];
7814
7897
  /**
7815
7898
  * Configuration for reminders.
7816
7899
  * @export
@@ -7848,12 +7931,6 @@ export interface ApprovalConfigReminderConfigV2026 {
7848
7931
  * @interface ApprovalConfigSerialChainInnerV2026
7849
7932
  */
7850
7933
  export interface ApprovalConfigSerialChainInnerV2026 {
7851
- /**
7852
- * ID of the serial chain.
7853
- * @type {string}
7854
- * @memberof ApprovalConfigSerialChainInnerV2026
7855
- */
7856
- 'chainId'?: string;
7857
7934
  /**
7858
7935
  * Starting at 1 defines the order in which the identities will get assigned
7859
7936
  * @type {number}
@@ -7861,18 +7938,58 @@ export interface ApprovalConfigSerialChainInnerV2026 {
7861
7938
  */
7862
7939
  'tier'?: number;
7863
7940
  /**
7864
- * Identity ID in the serial chain.
7941
+ * Optional Identity ID of the type of identity defined in the \'identityType\' field.
7865
7942
  * @type {string}
7866
7943
  * @memberof ApprovalConfigSerialChainInnerV2026
7867
7944
  */
7868
7945
  'identityId'?: string;
7869
7946
  /**
7870
- * Type of identity in the serial chain.
7947
+ * Type of identityId in the serial chain.
7871
7948
  * @type {string}
7872
7949
  * @memberof ApprovalConfigSerialChainInnerV2026
7873
7950
  */
7874
- 'identityType'?: string;
7951
+ 'identityType'?: ApprovalConfigSerialChainInnerV2026IdentityTypeV2026;
7875
7952
  }
7953
+ export declare const ApprovalConfigSerialChainInnerV2026IdentityTypeV2026: {
7954
+ readonly Identity: "IDENTITY";
7955
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
7956
+ readonly ManagerOf: "MANAGER_OF";
7957
+ readonly AccountOwner: "ACCOUNT_OWNER";
7958
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7959
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7960
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7961
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7962
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7963
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7964
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7965
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7966
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7967
+ readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7968
+ readonly ApplicationOwner: "APPLICATION_OWNER";
7969
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7970
+ readonly RoleOwner: "ROLE_OWNER";
7971
+ readonly SourceOwner: "SOURCE_OWNER";
7972
+ readonly RequestedTargetOwner: "REQUESTED_TARGET_OWNER";
7973
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7974
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7975
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7976
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7977
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7978
+ readonly RequestedTargetPrimaryOwner: "REQUESTED_TARGET_PRIMARY_OWNER";
7979
+ readonly AccessProfileSecondaryOwnerGroup: "ACCESS_PROFILE_SECONDARY_OWNER_GROUP";
7980
+ readonly ApplicationSecondaryOwnerGroup: "APPLICATION_SECONDARY_OWNER_GROUP";
7981
+ readonly EntitlementSecondaryOwnerGroup: "ENTITLEMENT_SECONDARY_OWNER_GROUP";
7982
+ readonly RoleSecondaryOwnerGroup: "ROLE_SECONDARY_OWNER_GROUP";
7983
+ readonly SourceSecondaryOwnerGroup: "SOURCE_SECONDARY_OWNER_GROUP";
7984
+ readonly RequestedTargetSecondaryOwnerGroup: "REQUESTED_TARGET_SECONDARY_OWNER_GROUP";
7985
+ readonly AccessProfileAllOwnerGroup: "ACCESS_PROFILE_ALL_OWNER_GROUP";
7986
+ readonly ApplicationAllOwnerGroup: "APPLICATION_ALL_OWNER_GROUP";
7987
+ readonly EntitlementAllOwnerGroup: "ENTITLEMENT_ALL_OWNER_GROUP";
7988
+ readonly RoleAllOwnerGroup: "ROLE_ALL_OWNER_GROUP";
7989
+ readonly SourceAllOwnerGroup: "SOURCE_ALL_OWNER_GROUP";
7990
+ readonly RequestedTargetAllOwnerGroup: "REQUESTED_TARGET_ALL_OWNER_GROUP";
7991
+ };
7992
+ export type ApprovalConfigSerialChainInnerV2026IdentityTypeV2026 = typeof ApprovalConfigSerialChainInnerV2026IdentityTypeV2026[keyof typeof ApprovalConfigSerialChainInnerV2026IdentityTypeV2026];
7876
7993
  /**
7877
7994
  * TimeoutConfig contains configurations around when the approval request should expire.
7878
7995
  * @export
@@ -7946,11 +8063,11 @@ export interface ApprovalConfigV2026 {
7946
8063
  */
7947
8064
  'requiresComment'?: ApprovalConfigV2026RequiresCommentV2026;
7948
8065
  /**
7949
- * Configuration for fallback approver. Used if the user cannot be found for whatever reason and escalation config does not exist.
7950
- * @type {ApprovalIdentityV2026}
8066
+ *
8067
+ * @type {ApprovalConfigFallbackApproverV2026}
7951
8068
  * @memberof ApprovalConfigV2026
7952
8069
  */
7953
- 'fallbackApprover'?: ApprovalIdentityV2026;
8070
+ 'fallbackApprover'?: ApprovalConfigFallbackApproverV2026;
7954
8071
  /**
7955
8072
  * Specifies how to treat the identity type \"MANAGER_OF\" when the requestee is a machine identity.
7956
8073
  * @type {string}
@@ -8214,7 +8331,7 @@ export interface ApprovalIdentityV2026 {
8214
8331
  */
8215
8332
  'email'?: string;
8216
8333
  /**
8217
- * Identity ID.
8334
+ * Identity ID of the type of identity defined in the \'type\' field.
8218
8335
  * @type {string}
8219
8336
  * @memberof ApprovalIdentityV2026
8220
8337
  */
@@ -8244,7 +8361,7 @@ export interface ApprovalIdentityV2026 {
8244
8361
  */
8245
8362
  'serialOrder'?: number;
8246
8363
  /**
8247
- * Type of identity.
8364
+ * Type of identityID.
8248
8365
  * @type {string}
8249
8366
  * @memberof ApprovalIdentityV2026
8250
8367
  */
@@ -8252,13 +8369,42 @@ export interface ApprovalIdentityV2026 {
8252
8369
  }
8253
8370
  export declare const ApprovalIdentityV2026TypeV2026: {
8254
8371
  readonly Identity: "IDENTITY";
8255
- readonly ManagerOf: "MANAGER_OF";
8256
8372
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
8257
- readonly SourceOwner: "SOURCE_OWNER";
8258
- readonly RoleOwner: "ROLE_OWNER";
8373
+ readonly ManagerOf: "MANAGER_OF";
8374
+ readonly AccountOwner: "ACCOUNT_OWNER";
8375
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
8376
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
8377
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
8378
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
8379
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
8380
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
8381
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
8382
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
8383
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
8259
8384
  readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
8260
- readonly EntitlementOwner: "ENTITLEMENT_OWNER";
8261
8385
  readonly ApplicationOwner: "APPLICATION_OWNER";
8386
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
8387
+ readonly RoleOwner: "ROLE_OWNER";
8388
+ readonly SourceOwner: "SOURCE_OWNER";
8389
+ readonly RequestedTargetOwner: "REQUESTED_TARGET_OWNER";
8390
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
8391
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
8392
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
8393
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
8394
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
8395
+ readonly RequestedTargetPrimaryOwner: "REQUESTED_TARGET_PRIMARY_OWNER";
8396
+ readonly AccessProfileSecondaryOwnerGroup: "ACCESS_PROFILE_SECONDARY_OWNER_GROUP";
8397
+ readonly ApplicationSecondaryOwnerGroup: "APPLICATION_SECONDARY_OWNER_GROUP";
8398
+ readonly EntitlementSecondaryOwnerGroup: "ENTITLEMENT_SECONDARY_OWNER_GROUP";
8399
+ readonly RoleSecondaryOwnerGroup: "ROLE_SECONDARY_OWNER_GROUP";
8400
+ readonly SourceSecondaryOwnerGroup: "SOURCE_SECONDARY_OWNER_GROUP";
8401
+ readonly RequestedTargetSecondaryOwnerGroup: "REQUESTED_TARGET_SECONDARY_OWNER_GROUP";
8402
+ readonly AccessProfileAllOwnerGroup: "ACCESS_PROFILE_ALL_OWNER_GROUP";
8403
+ readonly ApplicationAllOwnerGroup: "APPLICATION_ALL_OWNER_GROUP";
8404
+ readonly EntitlementAllOwnerGroup: "ENTITLEMENT_ALL_OWNER_GROUP";
8405
+ readonly RoleAllOwnerGroup: "ROLE_ALL_OWNER_GROUP";
8406
+ readonly SourceAllOwnerGroup: "SOURCE_ALL_OWNER_GROUP";
8407
+ readonly RequestedTargetAllOwnerGroup: "REQUESTED_TARGET_ALL_OWNER_GROUP";
8262
8408
  };
8263
8409
  export type ApprovalIdentityV2026TypeV2026 = typeof ApprovalIdentityV2026TypeV2026[keyof typeof ApprovalIdentityV2026TypeV2026];
8264
8410
  /**
@@ -11179,6 +11325,85 @@ export interface BulkApproveAccessRequestV2026 {
11179
11325
  */
11180
11326
  'comment': string;
11181
11327
  }
11328
+ /**
11329
+ * A single item in a bulk entitlement recommendation approval request. The recordType is optional; the backend resolves the type by ID lookup when omitted. Description applies to SED items only; privilegeLevel is required for privilege items.
11330
+ * @export
11331
+ * @interface BulkApproveEntitlementRecommendationItemV2026
11332
+ */
11333
+ export interface BulkApproveEntitlementRecommendationItemV2026 {
11334
+ /**
11335
+ * The unique identifier of the recommendation record to approve.
11336
+ * @type {string}
11337
+ * @memberof BulkApproveEntitlementRecommendationItemV2026
11338
+ */
11339
+ 'id': string;
11340
+ /**
11341
+ * The type of the recommendation. When omitted, the backend resolves the type by looking up the ID.
11342
+ * @type {string}
11343
+ * @memberof BulkApproveEntitlementRecommendationItemV2026
11344
+ */
11345
+ 'recordType'?: BulkApproveEntitlementRecommendationItemV2026RecordTypeV2026 | null;
11346
+ /**
11347
+ * The approved description text. Required for SED-type items; ignored for privilege items.
11348
+ * @type {string}
11349
+ * @memberof BulkApproveEntitlementRecommendationItemV2026
11350
+ */
11351
+ 'description'?: string | null;
11352
+ /**
11353
+ * The approved privilege level. Required for privilege-type items; ignored for SED items.
11354
+ * @type {string}
11355
+ * @memberof BulkApproveEntitlementRecommendationItemV2026
11356
+ */
11357
+ 'privilegeLevel'?: string | null;
11358
+ }
11359
+ export declare const BulkApproveEntitlementRecommendationItemV2026RecordTypeV2026: {
11360
+ readonly Sed: "SED";
11361
+ readonly Privilege: "privilege";
11362
+ };
11363
+ export type BulkApproveEntitlementRecommendationItemV2026RecordTypeV2026 = typeof BulkApproveEntitlementRecommendationItemV2026RecordTypeV2026[keyof typeof BulkApproveEntitlementRecommendationItemV2026RecordTypeV2026];
11364
+ /**
11365
+ * Request body for bulk-approving a set of entitlement recommendations.
11366
+ * @export
11367
+ * @interface BulkApproveEntitlementRecommendationRequestV2026
11368
+ */
11369
+ export interface BulkApproveEntitlementRecommendationRequestV2026 {
11370
+ /**
11371
+ * The list of recommendation items to approve.
11372
+ * @type {Array<BulkApproveEntitlementRecommendationItemV2026>}
11373
+ * @memberof BulkApproveEntitlementRecommendationRequestV2026
11374
+ */
11375
+ 'items': Array<BulkApproveEntitlementRecommendationItemV2026>;
11376
+ }
11377
+ /**
11378
+ * The result for a single item in a bulk entitlement recommendation approval response.
11379
+ * @export
11380
+ * @interface BulkApproveEntitlementRecommendationResultV2026
11381
+ */
11382
+ export interface BulkApproveEntitlementRecommendationResultV2026 {
11383
+ /**
11384
+ * The unique identifier of the processed recommendation record.
11385
+ * @type {string}
11386
+ * @memberof BulkApproveEntitlementRecommendationResultV2026
11387
+ */
11388
+ 'id'?: string;
11389
+ /**
11390
+ * The outcome of the approval for this item.
11391
+ * @type {string}
11392
+ * @memberof BulkApproveEntitlementRecommendationResultV2026
11393
+ */
11394
+ 'status'?: BulkApproveEntitlementRecommendationResultV2026StatusV2026;
11395
+ /**
11396
+ * The reason for failure if status is FAILURE; null on success.
11397
+ * @type {string}
11398
+ * @memberof BulkApproveEntitlementRecommendationResultV2026
11399
+ */
11400
+ 'failedReason'?: string | null;
11401
+ }
11402
+ export declare const BulkApproveEntitlementRecommendationResultV2026StatusV2026: {
11403
+ readonly Success: "SUCCESS";
11404
+ readonly Failure: "FAILURE";
11405
+ };
11406
+ export type BulkApproveEntitlementRecommendationResultV2026StatusV2026 = typeof BulkApproveEntitlementRecommendationResultV2026StatusV2026[keyof typeof BulkApproveEntitlementRecommendationResultV2026StatusV2026];
11182
11407
  /**
11183
11408
  * BulkApproveRequestDTO is the input struct that represents the request body required to facilitate a bulk approval action for a set of generic approval requests.
11184
11409
  * @export
@@ -18545,6 +18770,206 @@ export declare const EntitlementPrivilegeLevelV2026EffectiveV2026: {
18545
18770
  readonly None: "NONE";
18546
18771
  };
18547
18772
  export type EntitlementPrivilegeLevelV2026EffectiveV2026 = typeof EntitlementPrivilegeLevelV2026EffectiveV2026[keyof typeof EntitlementPrivilegeLevelV2026EffectiveV2026];
18773
+ /**
18774
+ * Request body for assigning a set of entitlement recommendations to a reviewer.
18775
+ * @export
18776
+ * @interface EntitlementRecommendationAssignRequestV2026
18777
+ */
18778
+ export interface EntitlementRecommendationAssignRequestV2026 {
18779
+ /**
18780
+ * The list of recommendation record IDs to assign.
18781
+ * @type {Array<string>}
18782
+ * @memberof EntitlementRecommendationAssignRequestV2026
18783
+ */
18784
+ 'items': Array<string>;
18785
+ /**
18786
+ *
18787
+ * @type {EntitlementRecommendationAssigneeV2026}
18788
+ * @memberof EntitlementRecommendationAssignRequestV2026
18789
+ */
18790
+ 'assignee': EntitlementRecommendationAssigneeV2026;
18791
+ }
18792
+ /**
18793
+ * Response body returned when entitlement recommendations are successfully queued for assignment.
18794
+ * @export
18795
+ * @interface EntitlementRecommendationAssignResultV2026
18796
+ */
18797
+ export interface EntitlementRecommendationAssignResultV2026 {
18798
+ /**
18799
+ * The unique identifier of the assignment batch created by this request.
18800
+ * @type {string}
18801
+ * @memberof EntitlementRecommendationAssignResultV2026
18802
+ */
18803
+ 'batchId'?: string;
18804
+ }
18805
+ /**
18806
+ * Assign to the source owner or entitlement owner role. No value field is required.
18807
+ * @export
18808
+ * @interface EntitlementRecommendationAssigneeOneOf1V2026
18809
+ */
18810
+ export interface EntitlementRecommendationAssigneeOneOf1V2026 {
18811
+ /**
18812
+ * The type of assignee.
18813
+ * @type {string}
18814
+ * @memberof EntitlementRecommendationAssigneeOneOf1V2026
18815
+ */
18816
+ 'type': EntitlementRecommendationAssigneeOneOf1V2026TypeV2026;
18817
+ }
18818
+ export declare const EntitlementRecommendationAssigneeOneOf1V2026TypeV2026: {
18819
+ readonly SourceOwner: "SOURCE_OWNER";
18820
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
18821
+ };
18822
+ export type EntitlementRecommendationAssigneeOneOf1V2026TypeV2026 = typeof EntitlementRecommendationAssigneeOneOf1V2026TypeV2026[keyof typeof EntitlementRecommendationAssigneeOneOf1V2026TypeV2026];
18823
+ /**
18824
+ * Assign to a specific identity or governance group. The value field is required and must be the ID of the identity or governance group.
18825
+ * @export
18826
+ * @interface EntitlementRecommendationAssigneeOneOfV2026
18827
+ */
18828
+ export interface EntitlementRecommendationAssigneeOneOfV2026 {
18829
+ /**
18830
+ * The type of assignee.
18831
+ * @type {string}
18832
+ * @memberof EntitlementRecommendationAssigneeOneOfV2026
18833
+ */
18834
+ 'type': EntitlementRecommendationAssigneeOneOfV2026TypeV2026;
18835
+ /**
18836
+ * The ID of the identity or governance group to assign to.
18837
+ * @type {string}
18838
+ * @memberof EntitlementRecommendationAssigneeOneOfV2026
18839
+ */
18840
+ 'value': string;
18841
+ }
18842
+ export declare const EntitlementRecommendationAssigneeOneOfV2026TypeV2026: {
18843
+ readonly Identity: "IDENTITY";
18844
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
18845
+ };
18846
+ export type EntitlementRecommendationAssigneeOneOfV2026TypeV2026 = typeof EntitlementRecommendationAssigneeOneOfV2026TypeV2026[keyof typeof EntitlementRecommendationAssigneeOneOfV2026TypeV2026];
18847
+ /**
18848
+ * @type EntitlementRecommendationAssigneeV2026
18849
+ * Describes the target assignee for entitlement recommendations.
18850
+ * @export
18851
+ */
18852
+ export type EntitlementRecommendationAssigneeV2026 = EntitlementRecommendationAssigneeOneOf1V2026 | EntitlementRecommendationAssigneeOneOfV2026;
18853
+ /**
18854
+ * A unified entitlement recommendation record representing either a SED (Suggested Entitlement Description) or a privilege recommendation.
18855
+ * @export
18856
+ * @interface EntitlementRecommendationRecordV2026
18857
+ */
18858
+ export interface EntitlementRecommendationRecordV2026 {
18859
+ /**
18860
+ * The type of recommendation. \"SED\" indicates a suggested description recommendation; \"privilege\" indicates a privilege-level recommendation.
18861
+ * @type {string}
18862
+ * @memberof EntitlementRecommendationRecordV2026
18863
+ */
18864
+ 'recordType'?: EntitlementRecommendationRecordV2026RecordTypeV2026;
18865
+ /**
18866
+ * The unique identifier for this recommendation record.
18867
+ * @type {string}
18868
+ * @memberof EntitlementRecommendationRecordV2026
18869
+ */
18870
+ 'id'?: string;
18871
+ /**
18872
+ * The entitlement attribute name (e.g. \"groups\").
18873
+ * @type {string}
18874
+ * @memberof EntitlementRecommendationRecordV2026
18875
+ */
18876
+ 'attribute'?: string | null;
18877
+ /**
18878
+ * The human-readable display name of the entitlement.
18879
+ * @type {string}
18880
+ * @memberof EntitlementRecommendationRecordV2026
18881
+ */
18882
+ 'displayName'?: string | null;
18883
+ /**
18884
+ * The internal name of the entitlement.
18885
+ * @type {string}
18886
+ * @memberof EntitlementRecommendationRecordV2026
18887
+ */
18888
+ 'name'?: string | null;
18889
+ /**
18890
+ * The ID of the source that owns this entitlement.
18891
+ * @type {string}
18892
+ * @memberof EntitlementRecommendationRecordV2026
18893
+ */
18894
+ 'sourceId'?: string;
18895
+ /**
18896
+ * The display name of the source that owns this entitlement.
18897
+ * @type {string}
18898
+ * @memberof EntitlementRecommendationRecordV2026
18899
+ */
18900
+ 'sourceName'?: string;
18901
+ /**
18902
+ * The current review status of the recommendation.
18903
+ * @type {string}
18904
+ * @memberof EntitlementRecommendationRecordV2026
18905
+ */
18906
+ 'status'?: string;
18907
+ /**
18908
+ * The entitlement type (e.g. \"group\").
18909
+ * @type {string}
18910
+ * @memberof EntitlementRecommendationRecordV2026
18911
+ */
18912
+ 'type'?: string | null;
18913
+ /**
18914
+ * The entitlement value or identifier.
18915
+ * @type {string}
18916
+ * @memberof EntitlementRecommendationRecordV2026
18917
+ */
18918
+ 'value'?: string;
18919
+ /**
18920
+ * The current description of the entitlement, if one exists.
18921
+ * @type {string}
18922
+ * @memberof EntitlementRecommendationRecordV2026
18923
+ */
18924
+ 'description'?: string | null;
18925
+ /**
18926
+ * The AI-generated suggested description for the entitlement (SED records only).
18927
+ * @type {string}
18928
+ * @memberof EntitlementRecommendationRecordV2026
18929
+ */
18930
+ 'suggestedDescription'?: string | null;
18931
+ /**
18932
+ * The current privilege level assigned to the entitlement.
18933
+ * @type {string}
18934
+ * @memberof EntitlementRecommendationRecordV2026
18935
+ */
18936
+ 'privilege'?: string | null;
18937
+ /**
18938
+ * The AI-suggested privilege level for the entitlement (privilege records only).
18939
+ * @type {string}
18940
+ * @memberof EntitlementRecommendationRecordV2026
18941
+ */
18942
+ 'suggestedPrivilege'?: string | null;
18943
+ /**
18944
+ * The ID of the identity who approved this recommendation.
18945
+ * @type {string}
18946
+ * @memberof EntitlementRecommendationRecordV2026
18947
+ */
18948
+ 'approvedBy'?: string | null;
18949
+ /**
18950
+ * How the recommendation was approved (e.g. \"direct\").
18951
+ * @type {string}
18952
+ * @memberof EntitlementRecommendationRecordV2026
18953
+ */
18954
+ 'approvedType'?: string | null;
18955
+ /**
18956
+ * The timestamp when the recommendation was approved.
18957
+ * @type {string}
18958
+ * @memberof EntitlementRecommendationRecordV2026
18959
+ */
18960
+ 'approvedWhen'?: string | null;
18961
+ /**
18962
+ * The timestamp when the LLM batch that generated this recommendation was created.
18963
+ * @type {string}
18964
+ * @memberof EntitlementRecommendationRecordV2026
18965
+ */
18966
+ 'llmBatchCreatedAt'?: string | null;
18967
+ }
18968
+ export declare const EntitlementRecommendationRecordV2026RecordTypeV2026: {
18969
+ readonly Sed: "SED";
18970
+ readonly Privilege: "privilege";
18971
+ };
18972
+ export type EntitlementRecommendationRecordV2026RecordTypeV2026 = typeof EntitlementRecommendationRecordV2026RecordTypeV2026[keyof typeof EntitlementRecommendationRecordV2026RecordTypeV2026];
18548
18973
  /**
18549
18974
  * Entitlement including a specific set of access.
18550
18975
  * @export
@@ -19127,27 +19552,21 @@ export interface EntityCreatedByDTOV2026 {
19127
19552
  /**
19128
19553
  *
19129
19554
  * @export
19130
- * @interface ErrorMessageDto1V2026
19555
+ * @interface ErrorBodyV2026
19131
19556
  */
19132
- export interface ErrorMessageDto1V2026 {
19557
+ export interface ErrorBodyV2026 {
19133
19558
  /**
19134
- * The locale for the message text, a BCP 47 language tag.
19559
+ * Machine-readable error code returned by the Intelligence Package service.
19135
19560
  * @type {string}
19136
- * @memberof ErrorMessageDto1V2026
19137
- */
19138
- 'locale'?: string | null;
19139
- /**
19140
- *
19141
- * @type {LocaleOriginV2026}
19142
- * @memberof ErrorMessageDto1V2026
19561
+ * @memberof ErrorBodyV2026
19143
19562
  */
19144
- 'localeOrigin'?: LocaleOriginV2026 | null;
19563
+ 'detailCode'?: string;
19145
19564
  /**
19146
- * Actual text of the error message in the indicated locale.
19565
+ * Human-readable explanation of the error suitable for client logging.
19147
19566
  * @type {string}
19148
- * @memberof ErrorMessageDto1V2026
19567
+ * @memberof ErrorBodyV2026
19149
19568
  */
19150
- 'text'?: string;
19569
+ 'message'?: string;
19151
19570
  }
19152
19571
  /**
19153
19572
  *
@@ -19199,37 +19618,6 @@ export interface ErrorMessageV2026 {
19199
19618
  */
19200
19619
  'text'?: string;
19201
19620
  }
19202
- /**
19203
- *
19204
- * @export
19205
- * @interface ErrorResponseDto1V2026
19206
- */
19207
- export interface ErrorResponseDto1V2026 {
19208
- /**
19209
- * Fine-grained error code providing more detail of the error.
19210
- * @type {string}
19211
- * @memberof ErrorResponseDto1V2026
19212
- */
19213
- 'detailCode'?: string;
19214
- /**
19215
- * Unique tracking id for the error.
19216
- * @type {string}
19217
- * @memberof ErrorResponseDto1V2026
19218
- */
19219
- 'trackingId'?: string;
19220
- /**
19221
- * Generic localized reason for error
19222
- * @type {Array<ErrorMessageDto1V2026>}
19223
- * @memberof ErrorResponseDto1V2026
19224
- */
19225
- 'messages'?: Array<ErrorMessageDto1V2026>;
19226
- /**
19227
- * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
19228
- * @type {Array<ErrorMessageDto1V2026>}
19229
- * @memberof ErrorResponseDto1V2026
19230
- */
19231
- 'causes'?: Array<ErrorMessageDto1V2026>;
19232
- }
19233
19621
  /**
19234
19622
  *
19235
19623
  * @export
@@ -25400,6 +25788,609 @@ export interface Int64StringKeyValuePairV2026 {
25400
25788
  */
25401
25789
  'value'?: string | null;
25402
25790
  }
25791
+ /**
25792
+ *
25793
+ * @export
25794
+ * @interface IntelAccessAccountWireV2026
25795
+ */
25796
+ export interface IntelAccessAccountWireV2026 {
25797
+ /**
25798
+ * Unique account identifier in Identity Security Cloud.
25799
+ * @type {string}
25800
+ * @memberof IntelAccessAccountWireV2026
25801
+ */
25802
+ 'id': string;
25803
+ /**
25804
+ * Account name or login value on the correlated source.
25805
+ * @type {string}
25806
+ * @memberof IntelAccessAccountWireV2026
25807
+ */
25808
+ 'name': string;
25809
+ /**
25810
+ * Source metadata for the account as returned by List Accounts wire format.
25811
+ * @type {IntelAccessSourceWireV2026}
25812
+ * @memberof IntelAccessAccountWireV2026
25813
+ */
25814
+ 'source'?: IntelAccessSourceWireV2026;
25815
+ /**
25816
+ * True when the account is administratively disabled on the source.
25817
+ * @type {boolean}
25818
+ * @memberof IntelAccessAccountWireV2026
25819
+ */
25820
+ 'disabled': boolean;
25821
+ /**
25822
+ * True when the account is locked from interactive sign-in on the source.
25823
+ * @type {boolean}
25824
+ * @memberof IntelAccessAccountWireV2026
25825
+ */
25826
+ 'locked': boolean;
25827
+ /**
25828
+ * True when the account is not correlated to an authoritative identity.
25829
+ * @type {boolean}
25830
+ * @memberof IntelAccessAccountWireV2026
25831
+ */
25832
+ 'uncorrelated': boolean;
25833
+ /**
25834
+ * True when the account is treated as authoritative for attribute synchronization.
25835
+ * @type {boolean}
25836
+ * @memberof IntelAccessAccountWireV2026
25837
+ */
25838
+ 'authoritative': boolean;
25839
+ /**
25840
+ * True when the account represents a non-interactive or system principal.
25841
+ * @type {boolean}
25842
+ * @memberof IntelAccessAccountWireV2026
25843
+ */
25844
+ 'systemAccount': boolean;
25845
+ /**
25846
+ * True when the account belongs to a machine or service identity.
25847
+ * @type {boolean}
25848
+ * @memberof IntelAccessAccountWireV2026
25849
+ */
25850
+ 'isMachine': boolean;
25851
+ /**
25852
+ * True when the account currently has one or more entitlements assigned.
25853
+ * @type {boolean}
25854
+ * @memberof IntelAccessAccountWireV2026
25855
+ */
25856
+ 'hasEntitlements': boolean;
25857
+ /**
25858
+ * True when an administrator manually correlated the account to an identity.
25859
+ * @type {boolean}
25860
+ * @memberof IntelAccessAccountWireV2026
25861
+ */
25862
+ 'manuallyCorrelated': boolean;
25863
+ /**
25864
+ * Connector connection type identifier for the backing source system.
25865
+ * @type {string}
25866
+ * @memberof IntelAccessAccountWireV2026
25867
+ */
25868
+ 'connectionType': string;
25869
+ /**
25870
+ * Native identifier string on the source directory or application.
25871
+ * @type {string}
25872
+ * @memberof IntelAccessAccountWireV2026
25873
+ */
25874
+ 'nativeIdentity'?: string | null;
25875
+ /**
25876
+ * Timestamp when the account record was created in Identity Security Cloud.
25877
+ * @type {string}
25878
+ * @memberof IntelAccessAccountWireV2026
25879
+ */
25880
+ 'created': string;
25881
+ /**
25882
+ * Timestamp when the account record was last modified in Identity Security Cloud.
25883
+ * @type {string}
25884
+ * @memberof IntelAccessAccountWireV2026
25885
+ */
25886
+ 'modified': string;
25887
+ }
25888
+ /**
25889
+ *
25890
+ * @export
25891
+ * @interface IntelAccessSourceWireV2026
25892
+ */
25893
+ export interface IntelAccessSourceWireV2026 {
25894
+ /**
25895
+ * Source identifier referenced by the account wire object.
25896
+ * @type {string}
25897
+ * @memberof IntelAccessSourceWireV2026
25898
+ */
25899
+ 'id'?: string;
25900
+ /**
25901
+ * Human-readable source name shown in administrative consoles.
25902
+ * @type {string}
25903
+ * @memberof IntelAccessSourceWireV2026
25904
+ */
25905
+ 'name'?: string;
25906
+ }
25907
+ /**
25908
+ *
25909
+ * @export
25910
+ * @interface IntelHrefV2026
25911
+ */
25912
+ export interface IntelHrefV2026 {
25913
+ /**
25914
+ * Target URI for the related Intelligence Package sub-resource or operation.
25915
+ * @type {string}
25916
+ * @memberof IntelHrefV2026
25917
+ */
25918
+ 'href': string;
25919
+ }
25920
+ /**
25921
+ *
25922
+ * @export
25923
+ * @interface IntelHumanV2026
25924
+ */
25925
+ export interface IntelHumanV2026 {
25926
+ /**
25927
+ * Primary login or account alias for the human identity.
25928
+ * @type {string}
25929
+ * @memberof IntelHumanV2026
25930
+ */
25931
+ 'alias': string;
25932
+ /**
25933
+ * Primary business email address for the human identity.
25934
+ * @type {string}
25935
+ * @memberof IntelHumanV2026
25936
+ */
25937
+ 'email': string;
25938
+ /**
25939
+ * Current identity lifecycle status label from Identity Security Cloud.
25940
+ * @type {string}
25941
+ * @memberof IntelHumanV2026
25942
+ */
25943
+ 'identityStatus': string;
25944
+ /**
25945
+ * Lifecycle state name assigned through provisioning policy when present.
25946
+ * @type {string}
25947
+ * @memberof IntelHumanV2026
25948
+ */
25949
+ 'lifecycleState'?: string | null;
25950
+ /**
25951
+ * Processing state for outstanding identity change operations when present.
25952
+ * @type {string}
25953
+ * @memberof IntelHumanV2026
25954
+ */
25955
+ 'processingState'?: string | null;
25956
+ /**
25957
+ * True when the identity is marked protected from automated changes.
25958
+ * @type {boolean}
25959
+ * @memberof IntelHumanV2026
25960
+ */
25961
+ 'isProtected': boolean;
25962
+ /**
25963
+ * Legacy manager identity identifier or display reference when assigned.
25964
+ * @type {string}
25965
+ * @memberof IntelHumanV2026
25966
+ */
25967
+ 'manager'?: string | null;
25968
+ /**
25969
+ * Manager identity identifier when correlated in Identity Security Cloud.
25970
+ * @type {string}
25971
+ * @memberof IntelHumanV2026
25972
+ */
25973
+ 'managerId'?: string | null;
25974
+ /**
25975
+ * Manager display name when available from identity services.
25976
+ * @type {string}
25977
+ * @memberof IntelHumanV2026
25978
+ */
25979
+ 'managerName'?: string | null;
25980
+ /**
25981
+ * True when the identity is flagged as a people manager in the organization.
25982
+ * @type {boolean}
25983
+ * @memberof IntelHumanV2026
25984
+ */
25985
+ 'isManager': boolean;
25986
+ /**
25987
+ * Timestamp of the last successful identity refresh from sources when known.
25988
+ * @type {string}
25989
+ * @memberof IntelHumanV2026
25990
+ */
25991
+ 'lastRefreshAt'?: string | null;
25992
+ }
25993
+ /**
25994
+ *
25995
+ * @export
25996
+ * @interface IntelIdentityAccessBodyV2026
25997
+ */
25998
+ export interface IntelIdentityAccessBodyV2026 {
25999
+ /**
26000
+ * Accounts for the identity in camelCase wire format from Shelby List Accounts.
26001
+ * @type {Array<IntelAccessAccountWireV2026>}
26002
+ * @memberof IntelIdentityAccessBodyV2026
26003
+ */
26004
+ 'accounts': Array<IntelAccessAccountWireV2026>;
26005
+ /**
26006
+ * Privileged access items for the identity returned by SDS Search.
26007
+ * @type {Array<IntelPrivilegedAccessItemWireV2026>}
26008
+ * @memberof IntelIdentityAccessBodyV2026
26009
+ */
26010
+ 'privilegedAccessItems': Array<IntelPrivilegedAccessItemWireV2026>;
26011
+ }
26012
+ /**
26013
+ *
26014
+ * @export
26015
+ * @interface IntelIdentityAccessHistoryBodyV2026
26016
+ */
26017
+ export interface IntelIdentityAccessHistoryBodyV2026 {
26018
+ /**
26019
+ * Each event is relayed from identity-history. Schema varies by event type; consumers should treat unknown fields as opaque using additionalProperties.
26020
+ * @type {Array<{ [key: string]: any; }>}
26021
+ * @memberof IntelIdentityAccessHistoryBodyV2026
26022
+ */
26023
+ 'events': Array<{
26024
+ [key: string]: any;
26025
+ }>;
26026
+ }
26027
+ /**
26028
+ *
26029
+ * @export
26030
+ * @interface IntelIdentityAmbiguousBodyV2026
26031
+ */
26032
+ export interface IntelIdentityAmbiguousBodyV2026 {
26033
+ /**
26034
+ * Constant detail code indicating that more than one identity matched the filter.
26035
+ * @type {string}
26036
+ * @memberof IntelIdentityAmbiguousBodyV2026
26037
+ */
26038
+ 'detailCode': IntelIdentityAmbiguousBodyV2026DetailCodeV2026;
26039
+ /**
26040
+ * Optional explanatory text describing why the filter was considered ambiguous.
26041
+ * @type {string}
26042
+ * @memberof IntelIdentityAmbiguousBodyV2026
26043
+ */
26044
+ 'message'?: string;
26045
+ /**
26046
+ * Collection of identities that matched the ambiguous filter expression.
26047
+ * @type {Array<IntelIdentityAmbiguousCandidateV2026>}
26048
+ * @memberof IntelIdentityAmbiguousBodyV2026
26049
+ */
26050
+ 'candidates': Array<IntelIdentityAmbiguousCandidateV2026>;
26051
+ }
26052
+ export declare const IntelIdentityAmbiguousBodyV2026DetailCodeV2026: {
26053
+ readonly IdcIdentityAmbiguous: "IDC_IDENTITY_AMBIGUOUS";
26054
+ };
26055
+ export type IntelIdentityAmbiguousBodyV2026DetailCodeV2026 = typeof IntelIdentityAmbiguousBodyV2026DetailCodeV2026[keyof typeof IntelIdentityAmbiguousBodyV2026DetailCodeV2026];
26056
+ /**
26057
+ *
26058
+ * @export
26059
+ * @interface IntelIdentityAmbiguousCandidateV2026
26060
+ */
26061
+ export interface IntelIdentityAmbiguousCandidateV2026 {
26062
+ /**
26063
+ * Identity identifier for one of the ambiguous matching identities.
26064
+ * @type {string}
26065
+ * @memberof IntelIdentityAmbiguousCandidateV2026
26066
+ */
26067
+ 'id': string;
26068
+ /**
26069
+ * Display name for the ambiguous matching identity when available.
26070
+ * @type {string}
26071
+ * @memberof IntelIdentityAmbiguousCandidateV2026
26072
+ */
26073
+ 'displayName'?: string;
26074
+ }
26075
+ /**
26076
+ *
26077
+ * @export
26078
+ * @interface IntelIdentityLinksV2026
26079
+ */
26080
+ export interface IntelIdentityLinksV2026 {
26081
+ /**
26082
+ * Hyperlink to the Intelligence Package access document for this identity.
26083
+ * @type {IntelHrefV2026}
26084
+ * @memberof IntelIdentityLinksV2026
26085
+ */
26086
+ 'access': IntelHrefV2026;
26087
+ /**
26088
+ * Hyperlink to the Intelligence Package access history document for this identity.
26089
+ * @type {IntelHrefV2026}
26090
+ * @memberof IntelIdentityLinksV2026
26091
+ */
26092
+ 'accessHistory': IntelHrefV2026;
26093
+ }
26094
+ /**
26095
+ *
26096
+ * @export
26097
+ * @interface IntelIdentityNotFoundBodyV2026
26098
+ */
26099
+ export interface IntelIdentityNotFoundBodyV2026 {
26100
+ /**
26101
+ * Constant detail code indicating that no identity matched the supplied filter.
26102
+ * @type {string}
26103
+ * @memberof IntelIdentityNotFoundBodyV2026
26104
+ */
26105
+ 'detailCode': IntelIdentityNotFoundBodyV2026DetailCodeV2026;
26106
+ /**
26107
+ * Optional explanatory text describing why no identity was found.
26108
+ * @type {string}
26109
+ * @memberof IntelIdentityNotFoundBodyV2026
26110
+ */
26111
+ 'message'?: string;
26112
+ }
26113
+ export declare const IntelIdentityNotFoundBodyV2026DetailCodeV2026: {
26114
+ readonly IdcIdentityNotFound: "IDC_IDENTITY_NOT_FOUND";
26115
+ };
26116
+ export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
26117
+ /**
26118
+ * HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access and accessHistory only). MACHINE responses include machine and top-level subtype (connector subtype string); _links is omitted.
26119
+ * @export
26120
+ * @interface IntelIdentityResponseV2026
26121
+ */
26122
+ export interface IntelIdentityResponseV2026 {
26123
+ /**
26124
+ * Identity Security Cloud identifier for this identity.
26125
+ * @type {string}
26126
+ * @memberof IntelIdentityResponseV2026
26127
+ */
26128
+ 'id': string;
26129
+ /**
26130
+ * Discriminator indicating whether this identity is human or machine backed.
26131
+ * @type {string}
26132
+ * @memberof IntelIdentityResponseV2026
26133
+ */
26134
+ 'type': IntelIdentityResponseV2026TypeV2026;
26135
+ /**
26136
+ * Preferred display name for the identity across administrative experiences.
26137
+ * @type {string}
26138
+ * @memberof IntelIdentityResponseV2026
26139
+ */
26140
+ 'displayName'?: string;
26141
+ /**
26142
+ * Optional free-text description assigned to the identity profile when present.
26143
+ * @type {string}
26144
+ * @memberof IntelIdentityResponseV2026
26145
+ */
26146
+ 'description'?: string | null;
26147
+ /**
26148
+ * For HUMAN identities, NERM classification (Employee, Non Employee, or Cannot Determine). For MACHINE identities, connector subtype string from the authoritative source.
26149
+ * @type {string}
26150
+ * @memberof IntelIdentityResponseV2026
26151
+ */
26152
+ 'subtype'?: string | null;
26153
+ /**
26154
+ * Serialized owner reference information when populated by upstream identity services.
26155
+ * @type {string}
26156
+ * @memberof IntelIdentityResponseV2026
26157
+ */
26158
+ 'owners'?: string | null;
26159
+ /**
26160
+ * Arbitrary SCIM-style attribute bag returned for the identity context view.
26161
+ * @type {{ [key: string]: any; }}
26162
+ * @memberof IntelIdentityResponseV2026
26163
+ */
26164
+ 'attributes'?: {
26165
+ [key: string]: any;
26166
+ };
26167
+ /**
26168
+ * Created and modified timestamps for the identity record in Identity Security Cloud.
26169
+ * @type {IntelIdentityTimestampsV2026}
26170
+ * @memberof IntelIdentityResponseV2026
26171
+ */
26172
+ 'timestamps': IntelIdentityTimestampsV2026;
26173
+ /**
26174
+ * Human identity extension payload when type is HUMAN.
26175
+ * @type {IntelHumanV2026}
26176
+ * @memberof IntelIdentityResponseV2026
26177
+ */
26178
+ 'human'?: IntelHumanV2026 | null;
26179
+ /**
26180
+ * Machine identity extension payload when type is MACHINE.
26181
+ * @type {IntelMachineV2026}
26182
+ * @memberof IntelIdentityResponseV2026
26183
+ */
26184
+ 'machine'?: IntelMachineV2026 | null;
26185
+ /**
26186
+ * Hyperlinks to related Intelligence Package sub-resources; present for HUMAN only.
26187
+ * @type {IntelIdentityLinksV2026}
26188
+ * @memberof IntelIdentityResponseV2026
26189
+ */
26190
+ '_links'?: IntelIdentityLinksV2026 | null;
26191
+ }
26192
+ export declare const IntelIdentityResponseV2026TypeV2026: {
26193
+ readonly Human: "HUMAN";
26194
+ readonly Machine: "MACHINE";
26195
+ };
26196
+ export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
26197
+ /**
26198
+ *
26199
+ * @export
26200
+ * @interface IntelIdentityTimestampsV2026
26201
+ */
26202
+ export interface IntelIdentityTimestampsV2026 {
26203
+ /**
26204
+ * Timestamp when the identity record was first created in Identity Security Cloud.
26205
+ * @type {string}
26206
+ * @memberof IntelIdentityTimestampsV2026
26207
+ */
26208
+ 'createdAt': string;
26209
+ /**
26210
+ * Timestamp when the identity record was last modified in Identity Security Cloud.
26211
+ * @type {string}
26212
+ * @memberof IntelIdentityTimestampsV2026
26213
+ */
26214
+ 'modifiedAt': string;
26215
+ }
26216
+ /**
26217
+ *
26218
+ * @export
26219
+ * @interface IntelMachineSourceV2026
26220
+ */
26221
+ export interface IntelMachineSourceV2026 {
26222
+ /**
26223
+ * Unique identifier of the correlated source in Identity Security Cloud.
26224
+ * @type {string}
26225
+ * @memberof IntelMachineSourceV2026
26226
+ */
26227
+ 'id'?: string;
26228
+ /**
26229
+ * Display name of the source as configured in Identity Security Cloud.
26230
+ * @type {string}
26231
+ * @memberof IntelMachineSourceV2026
26232
+ */
26233
+ 'name'?: string;
26234
+ /**
26235
+ * Connector or source type classification for the backing system.
26236
+ * @type {string}
26237
+ * @memberof IntelMachineSourceV2026
26238
+ */
26239
+ 'type'?: string;
26240
+ }
26241
+ /**
26242
+ * MACHINE-specific block; subtype is only on the top-level IntelIdentityResponse.
26243
+ * @export
26244
+ * @interface IntelMachineV2026
26245
+ */
26246
+ export interface IntelMachineV2026 {
26247
+ /**
26248
+ * Business application name associated with the non-human identity.
26249
+ * @type {string}
26250
+ * @memberof IntelMachineV2026
26251
+ */
26252
+ 'businessApplication'?: string;
26253
+ /**
26254
+ * Native identifier value on the authoritative source for the machine identity.
26255
+ * @type {string}
26256
+ * @memberof IntelMachineV2026
26257
+ */
26258
+ 'nativeIdentity'?: string;
26259
+ /**
26260
+ * Optional globally unique identifier for the machine identity when assigned.
26261
+ * @type {string}
26262
+ * @memberof IntelMachineV2026
26263
+ */
26264
+ 'uuid'?: string | null;
26265
+ /**
26266
+ * Identifier of the correlated source for this machine identity.
26267
+ * @type {string}
26268
+ * @memberof IntelMachineV2026
26269
+ */
26270
+ 'sourceId'?: string;
26271
+ /**
26272
+ * Correlated source summary for the machine identity when available.
26273
+ * @type {IntelMachineSourceV2026}
26274
+ * @memberof IntelMachineV2026
26275
+ */
26276
+ 'source'?: IntelMachineSourceV2026;
26277
+ /**
26278
+ * Dataset identifier used by machine identity correlation logic.
26279
+ * @type {string}
26280
+ * @memberof IntelMachineV2026
26281
+ */
26282
+ 'datasetId'?: string;
26283
+ /**
26284
+ * True when a matching account still exists on the connected source.
26285
+ * @type {boolean}
26286
+ * @memberof IntelMachineV2026
26287
+ */
26288
+ 'existsOnSource'?: boolean;
26289
+ /**
26290
+ * True when the machine identity was created through a manual administrative action.
26291
+ * @type {boolean}
26292
+ * @memberof IntelMachineV2026
26293
+ */
26294
+ 'manuallyCreated'?: boolean;
26295
+ /**
26296
+ * True when the machine identity attributes were manually edited after creation.
26297
+ * @type {boolean}
26298
+ * @memberof IntelMachineV2026
26299
+ */
26300
+ 'manuallyEdited'?: boolean;
26301
+ /**
26302
+ * Structured owner references for the machine identity when populated by the service.
26303
+ * @type {object}
26304
+ * @memberof IntelMachineV2026
26305
+ */
26306
+ 'owners'?: object;
26307
+ /**
26308
+ * Entitlements or fine-grained rights linked to the machine identity when available.
26309
+ * @type {Array<object>}
26310
+ * @memberof IntelMachineV2026
26311
+ */
26312
+ 'userEntitlements'?: Array<object>;
26313
+ }
26314
+ /**
26315
+ * Source metadata associated with the privileged access item when present.
26316
+ * @export
26317
+ * @interface IntelPrivilegedAccessItemWireSourceV2026
26318
+ */
26319
+ export interface IntelPrivilegedAccessItemWireSourceV2026 {
26320
+ /**
26321
+ * Human-readable source name for the privileged access item.
26322
+ * @type {string}
26323
+ * @memberof IntelPrivilegedAccessItemWireSourceV2026
26324
+ */
26325
+ 'name'?: string;
26326
+ /**
26327
+ * Source identifier for the privileged access item.
26328
+ * @type {string}
26329
+ * @memberof IntelPrivilegedAccessItemWireSourceV2026
26330
+ */
26331
+ 'id'?: string;
26332
+ }
26333
+ /**
26334
+ *
26335
+ * @export
26336
+ * @interface IntelPrivilegedAccessItemWireV2026
26337
+ */
26338
+ export interface IntelPrivilegedAccessItemWireV2026 {
26339
+ /**
26340
+ * True when SDS Search classifies this item as privileged access for the identity.
26341
+ * @type {boolean}
26342
+ * @memberof IntelPrivilegedAccessItemWireV2026
26343
+ */
26344
+ 'privileged': boolean;
26345
+ /**
26346
+ * Display label for the privileged access item in administrative experiences.
26347
+ * @type {string}
26348
+ * @memberof IntelPrivilegedAccessItemWireV2026
26349
+ */
26350
+ 'displayName'?: string;
26351
+ /**
26352
+ * Technical name of the privileged access item from SDS Search.
26353
+ * @type {string}
26354
+ * @memberof IntelPrivilegedAccessItemWireV2026
26355
+ */
26356
+ 'name'?: string;
26357
+ /**
26358
+ * True when the privileged item is modeled as a standalone entitlement or access object.
26359
+ * @type {boolean}
26360
+ * @memberof IntelPrivilegedAccessItemWireV2026
26361
+ */
26362
+ 'standalone'?: boolean;
26363
+ /**
26364
+ * Identifier of the privileged access item returned by SDS Search.
26365
+ * @type {string}
26366
+ * @memberof IntelPrivilegedAccessItemWireV2026
26367
+ */
26368
+ 'id': string;
26369
+ /**
26370
+ *
26371
+ * @type {IntelPrivilegedAccessItemWireSourceV2026}
26372
+ * @memberof IntelPrivilegedAccessItemWireV2026
26373
+ */
26374
+ 'source'?: IntelPrivilegedAccessItemWireSourceV2026;
26375
+ /**
26376
+ * Source attribute name that carries the privileged value when applicable.
26377
+ * @type {string}
26378
+ * @memberof IntelPrivilegedAccessItemWireV2026
26379
+ */
26380
+ 'attribute'?: string;
26381
+ /**
26382
+ * Object type classification from SDS Search (for example ENTITLEMENT).
26383
+ * @type {string}
26384
+ * @memberof IntelPrivilegedAccessItemWireV2026
26385
+ */
26386
+ 'type': string;
26387
+ /**
26388
+ * Privileged value on the source attribute when applicable.
26389
+ * @type {string}
26390
+ * @memberof IntelPrivilegedAccessItemWireV2026
26391
+ */
26392
+ 'value'?: string;
26393
+ }
25403
26394
  /**
25404
26395
  *
25405
26396
  * @export
@@ -25742,6 +26733,12 @@ export interface JitActivationActivateResponseV2026 {
25742
26733
  * @memberof JitActivationActivateResponseV2026
25743
26734
  */
25744
26735
  'id': string;
26736
+ /**
26737
+ * Persistent activation record identifier for this JIT activation.
26738
+ * @type {string}
26739
+ * @memberof JitActivationActivateResponseV2026
26740
+ */
26741
+ 'activationId': string;
25745
26742
  /**
25746
26743
  * Entitlement connection identifier for the activation.
25747
26744
  * @type {string}
@@ -25792,6 +26789,12 @@ export interface JitActivationDeactivateResponseV2026 {
25792
26789
  * @memberof JitActivationDeactivateResponseV2026
25793
26790
  */
25794
26791
  'id': string;
26792
+ /**
26793
+ * Persistent activation record identifier for this JIT activation.
26794
+ * @type {string}
26795
+ * @memberof JitActivationDeactivateResponseV2026
26796
+ */
26797
+ 'activationId': string;
25795
26798
  /**
25796
26799
  * Entitlement connection identifier for the activation.
25797
26800
  * @type {string}
@@ -25842,6 +26845,12 @@ export interface JitActivationExtendResponseV2026 {
25842
26845
  * @memberof JitActivationExtendResponseV2026
25843
26846
  */
25844
26847
  'id': string;
26848
+ /**
26849
+ * Persistent activation record identifier for this JIT activation.
26850
+ * @type {string}
26851
+ * @memberof JitActivationExtendResponseV2026
26852
+ */
26853
+ 'activationId': string;
25845
26854
  /**
25846
26855
  * Entitlement connection identifier for the activation.
25847
26856
  * @type {string}
@@ -26796,6 +27805,12 @@ export interface ListIdentityAccessItems200ResponseInnerV2026 {
26796
27805
  * @memberof ListIdentityAccessItems200ResponseInnerV2026
26797
27806
  */
26798
27807
  'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2026>;
27808
+ /**
27809
+ * the date the access profile will be assigned to the specified identity, in case requested with a future start date
27810
+ * @type {string}
27811
+ * @memberof ListIdentityAccessItems200ResponseInnerV2026
27812
+ */
27813
+ 'startDate'?: string | null;
26799
27814
  /**
26800
27815
  * the date the role is no longer assigned to the specified identity
26801
27816
  * @type {string}
@@ -30628,6 +31643,63 @@ export interface MfaOktaConfigV2026 {
30628
31643
  */
30629
31644
  'identityAttribute'?: string | null;
30630
31645
  }
31646
+ /**
31647
+ * Request body listing machine identity or machine account IDs for a bulk operation.
31648
+ * @export
31649
+ * @interface MisBulkRequestV2026
31650
+ */
31651
+ export interface MisBulkRequestV2026 {
31652
+ /**
31653
+ * Machine identity or machine account IDs to include in the bulk operation.
31654
+ * @type {Array<string>}
31655
+ * @memberof MisBulkRequestV2026
31656
+ */
31657
+ 'ids': Array<string>;
31658
+ }
31659
+ /**
31660
+ * Per-ID result for a machine identity or machine account bulk operation.
31661
+ * @export
31662
+ * @interface MisBulkResponseV2026
31663
+ */
31664
+ export interface MisBulkResponseV2026 {
31665
+ /**
31666
+ * Machine identity or machine account ID from the request.
31667
+ * @type {string}
31668
+ * @memberof MisBulkResponseV2026
31669
+ */
31670
+ 'id': string;
31671
+ /**
31672
+ * HTTP status code for this ID. For example, 200 indicates success, 404 indicates the resource was not found or is not accessible to the caller, and 409 indicates a conflict such as a duplicate ID in the batch.
31673
+ * @type {number}
31674
+ * @memberof MisBulkResponseV2026
31675
+ */
31676
+ 'status': number;
31677
+ /**
31678
+ * Human-readable detail for this result.
31679
+ * @type {string}
31680
+ * @memberof MisBulkResponseV2026
31681
+ */
31682
+ 'message'?: string;
31683
+ }
31684
+ /**
31685
+ * Request body for applying the same JSON Patch document to multiple machine identities or machine accounts.
31686
+ * @export
31687
+ * @interface MisBulkUpdateRequestV2026
31688
+ */
31689
+ export interface MisBulkUpdateRequestV2026 {
31690
+ /**
31691
+ * Machine identity or machine account IDs to update.
31692
+ * @type {Array<string>}
31693
+ * @memberof MisBulkUpdateRequestV2026
31694
+ */
31695
+ 'ids': Array<string>;
31696
+ /**
31697
+ * JSON Patch operations to apply to each ID in the request (RFC 6902).
31698
+ * @type {Array<JsonPatchOperationV2026>}
31699
+ * @memberof MisBulkUpdateRequestV2026
31700
+ */
31701
+ 'jsonPatch': Array<JsonPatchOperationV2026>;
31702
+ }
30631
31703
  /**
30632
31704
  * This represents a Multi-Host Integration template type.
30633
31705
  * @export
@@ -35155,6 +36227,116 @@ export declare const PrivilegeCriteriaDTOV2026PrivilegeLevelV2026: {
35155
36227
  readonly Low: "LOW";
35156
36228
  };
35157
36229
  export type PrivilegeCriteriaDTOV2026PrivilegeLevelV2026 = typeof PrivilegeCriteriaDTOV2026PrivilegeLevelV2026[keyof typeof PrivilegeCriteriaDTOV2026PrivilegeLevelV2026];
36230
+ /**
36231
+ * A group of entitlement instances that share the same entitlement name and connector type, aggregated for privileged-access review.
36232
+ * @export
36233
+ * @interface PrivilegedRecommendationGroupV2026
36234
+ */
36235
+ export interface PrivilegedRecommendationGroupV2026 {
36236
+ /**
36237
+ * The name of the entitlement shared across all instances in this group.
36238
+ * @type {string}
36239
+ * @memberof PrivilegedRecommendationGroupV2026
36240
+ */
36241
+ 'entitlementName'?: string;
36242
+ /**
36243
+ * The connector type associated with all instances in this group.
36244
+ * @type {string}
36245
+ * @memberof PrivilegedRecommendationGroupV2026
36246
+ */
36247
+ 'connectorType'?: string;
36248
+ /**
36249
+ * A decimal string representing the confidence score of the privilege recommendation (0.0-1.0).
36250
+ * @type {string}
36251
+ * @memberof PrivilegedRecommendationGroupV2026
36252
+ */
36253
+ 'recommendationScore'?: string;
36254
+ /**
36255
+ * The number of organizations in which this entitlement appears as privileged.
36256
+ * @type {number}
36257
+ * @memberof PrivilegedRecommendationGroupV2026
36258
+ */
36259
+ 'orgCount'?: number;
36260
+ /**
36261
+ * The total number of individual entitlement instances in this group.
36262
+ * @type {number}
36263
+ * @memberof PrivilegedRecommendationGroupV2026
36264
+ */
36265
+ 'instanceCount'?: number;
36266
+ /**
36267
+ * The individual entitlement instances belonging to this group.
36268
+ * @type {Array<PrivilegedRecommendationInstanceV2026>}
36269
+ * @memberof PrivilegedRecommendationGroupV2026
36270
+ */
36271
+ 'instances'?: Array<PrivilegedRecommendationInstanceV2026>;
36272
+ }
36273
+ /**
36274
+ * An individual entitlement instance within a privileged recommendation group.
36275
+ * @export
36276
+ * @interface PrivilegedRecommendationInstanceV2026
36277
+ */
36278
+ export interface PrivilegedRecommendationInstanceV2026 {
36279
+ /**
36280
+ * The unique identifier for this entitlement instance.
36281
+ * @type {string}
36282
+ * @memberof PrivilegedRecommendationInstanceV2026
36283
+ */
36284
+ 'id'?: string;
36285
+ /**
36286
+ * The entitlement attribute name.
36287
+ * @type {string}
36288
+ * @memberof PrivilegedRecommendationInstanceV2026
36289
+ */
36290
+ 'attribute'?: string;
36291
+ /**
36292
+ * The ID of the source that owns this entitlement.
36293
+ * @type {string}
36294
+ * @memberof PrivilegedRecommendationInstanceV2026
36295
+ */
36296
+ 'sourceId'?: string;
36297
+ /**
36298
+ * The display name of the source.
36299
+ * @type {string}
36300
+ * @memberof PrivilegedRecommendationInstanceV2026
36301
+ */
36302
+ 'sourceName'?: string;
36303
+ /**
36304
+ * The entitlement type.
36305
+ * @type {string}
36306
+ * @memberof PrivilegedRecommendationInstanceV2026
36307
+ */
36308
+ 'type'?: string;
36309
+ /**
36310
+ * The entitlement value or distinguished name.
36311
+ * @type {string}
36312
+ * @memberof PrivilegedRecommendationInstanceV2026
36313
+ */
36314
+ 'value'?: string;
36315
+ /**
36316
+ * The current review status of this instance.
36317
+ * @type {string}
36318
+ * @memberof PrivilegedRecommendationInstanceV2026
36319
+ */
36320
+ 'status'?: string;
36321
+ /**
36322
+ * The currently assigned privilege level, if any.
36323
+ * @type {string}
36324
+ * @memberof PrivilegedRecommendationInstanceV2026
36325
+ */
36326
+ 'privilegeLevel'?: string | null;
36327
+ /**
36328
+ * The current description of the entitlement, if one exists.
36329
+ * @type {string}
36330
+ * @memberof PrivilegedRecommendationInstanceV2026
36331
+ */
36332
+ 'description'?: string | null;
36333
+ /**
36334
+ * The timestamp when this instance was recommended.
36335
+ * @type {string}
36336
+ * @memberof PrivilegedRecommendationInstanceV2026
36337
+ */
36338
+ 'recommendedAt'?: string;
36339
+ }
35158
36340
  /**
35159
36341
  *
35160
36342
  * @export
@@ -35321,6 +36503,104 @@ export declare const ProductV2026OrgTypeV2026: {
35321
36503
  readonly Sandbox: "sandbox";
35322
36504
  };
35323
36505
  export type ProductV2026OrgTypeV2026 = typeof ProductV2026OrgTypeV2026[keyof typeof ProductV2026OrgTypeV2026];
36506
+ /**
36507
+ * A prompt security insight event.
36508
+ * @export
36509
+ * @interface PromptInsightV2026
36510
+ */
36511
+ export interface PromptInsightV2026 {
36512
+ /**
36513
+ * Event time in UTC.
36514
+ * @type {string}
36515
+ * @memberof PromptInsightV2026
36516
+ */
36517
+ 'timestamp'?: string;
36518
+ /**
36519
+ * User identifier or display name.
36520
+ * @type {string}
36521
+ * @memberof PromptInsightV2026
36522
+ */
36523
+ 'user'?: string;
36524
+ /**
36525
+ * The AI agent that processed the prompt.
36526
+ * @type {string}
36527
+ * @memberof PromptInsightV2026
36528
+ */
36529
+ 'agent'?: string;
36530
+ /**
36531
+ * The policy decision applied to the prompt.
36532
+ * @type {string}
36533
+ * @memberof PromptInsightV2026
36534
+ */
36535
+ 'policyDecision'?: PromptInsightV2026PolicyDecisionV2026;
36536
+ /**
36537
+ * The category of the prompt security finding.
36538
+ * @type {string}
36539
+ * @memberof PromptInsightV2026
36540
+ */
36541
+ 'category'?: PromptInsightV2026CategoryV2026;
36542
+ /**
36543
+ * The severity of the prompt security finding.
36544
+ * @type {string}
36545
+ * @memberof PromptInsightV2026
36546
+ */
36547
+ 'severity'?: PromptInsightV2026SeverityV2026;
36548
+ /**
36549
+ * Human-readable or structured reason for the policy decision.
36550
+ * @type {string}
36551
+ * @memberof PromptInsightV2026
36552
+ */
36553
+ 'reason'?: string;
36554
+ /**
36555
+ * The rule that matched the prompt.
36556
+ * @type {string}
36557
+ * @memberof PromptInsightV2026
36558
+ */
36559
+ 'rule'?: string;
36560
+ /**
36561
+ * The policy that matched the prompt.
36562
+ * @type {string}
36563
+ * @memberof PromptInsightV2026
36564
+ */
36565
+ 'policy'?: string;
36566
+ }
36567
+ export declare const PromptInsightV2026PolicyDecisionV2026: {
36568
+ readonly Allowed: "ALLOWED";
36569
+ readonly Redacted: "REDACTED";
36570
+ };
36571
+ export type PromptInsightV2026PolicyDecisionV2026 = typeof PromptInsightV2026PolicyDecisionV2026[keyof typeof PromptInsightV2026PolicyDecisionV2026];
36572
+ export declare const PromptInsightV2026CategoryV2026: {
36573
+ readonly Anomalies: "ANOMALIES";
36574
+ readonly DataUploads: "DATA_UPLOADS";
36575
+ readonly McpToolCalls: "MCP_TOOL_CALLS";
36576
+ };
36577
+ export type PromptInsightV2026CategoryV2026 = typeof PromptInsightV2026CategoryV2026[keyof typeof PromptInsightV2026CategoryV2026];
36578
+ export declare const PromptInsightV2026SeverityV2026: {
36579
+ readonly Low: "LOW";
36580
+ readonly Medium: "MEDIUM";
36581
+ readonly High: "HIGH";
36582
+ readonly Critical: "CRITICAL";
36583
+ };
36584
+ export type PromptInsightV2026SeverityV2026 = typeof PromptInsightV2026SeverityV2026[keyof typeof PromptInsightV2026SeverityV2026];
36585
+ /**
36586
+ * Aggregate prompt insights metrics for the requested time window.
36587
+ * @export
36588
+ * @interface PromptInsightsMetricsV2026
36589
+ */
36590
+ export interface PromptInsightsMetricsV2026 {
36591
+ /**
36592
+ * Count of prompts scanned in the interval.
36593
+ * @type {number}
36594
+ * @memberof PromptInsightsMetricsV2026
36595
+ */
36596
+ 'promptsScanned'?: number;
36597
+ /**
36598
+ * Count of prompts redacted in the interval.
36599
+ * @type {number}
36600
+ * @memberof PromptInsightsMetricsV2026
36601
+ */
36602
+ 'promptsRedacted'?: number;
36603
+ }
35324
36604
  /**
35325
36605
  *
35326
36606
  * @export
@@ -47470,7 +48750,7 @@ export interface SpConfigExportJobStatusV2026 {
47470
48750
  * @type {string}
47471
48751
  * @memberof SpConfigExportJobStatusV2026
47472
48752
  */
47473
- 'expiration': string;
48753
+ 'expiration'?: string;
47474
48754
  /**
47475
48755
  * The time the job was started.
47476
48756
  * @type {string}
@@ -47538,7 +48818,7 @@ export interface SpConfigExportJobV2026 {
47538
48818
  * @type {string}
47539
48819
  * @memberof SpConfigExportJobV2026
47540
48820
  */
47541
- 'expiration': string;
48821
+ 'expiration'?: string;
47542
48822
  /**
47543
48823
  * The time the job was started.
47544
48824
  * @type {string}
@@ -47643,7 +48923,7 @@ export interface SpConfigImportJobStatusV2026 {
47643
48923
  * @type {string}
47644
48924
  * @memberof SpConfigImportJobStatusV2026
47645
48925
  */
47646
- 'expiration': string;
48926
+ 'expiration'?: string;
47647
48927
  /**
47648
48928
  * The time the job was started.
47649
48929
  * @type {string}
@@ -47732,7 +49012,7 @@ export interface SpConfigJobV2026 {
47732
49012
  * @type {string}
47733
49013
  * @memberof SpConfigJobV2026
47734
49014
  */
47735
- 'expiration': string;
49015
+ 'expiration'?: string;
47736
49016
  /**
47737
49017
  * The time the job was started.
47738
49018
  * @type {string}
@@ -49285,7 +50565,7 @@ export interface TaskStatusV2026 {
49285
50565
  * @type {string}
49286
50566
  * @memberof TaskStatusV2026
49287
50567
  */
49288
- 'modified': string;
50568
+ 'modified': string | null;
49289
50569
  /**
49290
50570
  * Launch date of the task this TaskStatus represents
49291
50571
  * @type {string}
@@ -57451,9 +58731,9 @@ export declare const ApprovalsV2026ApiAxiosParamCreator: (configuration?: Config
57451
58731
  */
57452
58732
  getApproval: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
57453
58733
  /**
57454
- * Gets a list of approvals. For lookups by access request ID please use the following: /generic-approvals?filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\" Absence of all query parameters for non admins will will default to mine=true. Admin will default to mine=false. Absence of all query parameters for admins will return all approvals in the org.
58734
+ * Gets a list of approvals. One of the following query parameters should be present: \'mine\', \'approverId\', \'requesterId\', \'requesteeId\'. The absence of all query parameters for non admins will default to mine=true (which is the equivalent of \'approverId=[your_identity_id]\') while admins will default to mine=false (which will show all approvals in the org). For lookups by access request ID please use the following: \'/generic-approvals?mine=false&filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\"\'
57455
58735
  * @summary Get approvals
57456
- * @param {boolean} [mine] Returns the list of approvals for the current caller. Defaults to false if admin, true otherwise.
58736
+ * @param {boolean} [mine] Determines whether to return the list of approvals assigned to the current caller or all approvals in the org. Defaults to false if admin, true otherwise (which is the equivalent of \&#39;approverId&#x3D;[your_identity_id]\&#39;).
57457
58737
  * @param {string} [requesterId] Returns the list of approvals for a given requester ID. Must match the calling user\&#39;s identity ID unless they are an admin.
57458
58738
  * @param {string} [requesteeId] Returns the list of approvals for a given requesteeId ID. Must match the calling user\&#39;s identity ID unless they are an admin.
57459
58739
  * @param {string} [approverId] Returns the list of approvals for a given approverId ID. Must match the calling user\&#39;s identity ID unless they are an admin.
@@ -57463,7 +58743,7 @@ export declare const ApprovalsV2026ApiAxiosParamCreator: (configuration?: Config
57463
58743
  * @param {boolean} [includeApprovers] If set to true in the query, the approval requests returned will include approvers.
57464
58744
  * @param {boolean} [includeReassignmentHistory] If set to true in the query, the approval requests returned will include reassignment history.
57465
58745
  * @param {boolean} [includeBatchInfo] If set to true in the query, the approval requests returned will include batch information.
57466
- * @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: **status**: *eq, ne, in, co, sw* **referenceType**: *eq, ne, in, co, sw* **name**: *eq, ne, in, co, sw* **priority**: *eq, ne, in, co, sw* **type**: *eq, ne, in, co, sw* **medium**: *eq, ne, in, co, sw* **description**: *eq, ne, in, co, sw* **batchId**: *eq, ne, in, co, sw* **approvalId**: *eq, ne, in, co, sw* **tenantId**: *eq, ne, in, co, sw* **createdDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **dueDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **completedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **search**: *eq, ne, in, co, sw* **referenceId**: *eq, ne, in, co, sw* **referenceName**: *eq, ne, in, co, sw* **requestedTargetType**: *eq, ne, in, co, sw* **requestedTargetRequestType**: *eq, ne, in, co, sw* **requestedTargetId**: *eq, ne, in, co, sw* **modifiedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **requesterId**: *eq, ne, in, co, sw* **requesteeId**: *eq, ne, in, co, sw* **approverId**: *eq, ne, in, co, sw* **decisionDate**: *eq, ne, in, co, sw, gt, ge, lt, le*
58746
+ * @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: **status**: *eq, ne, in, co, sw* **name**: *eq, ne, in, co, sw* **priority**: *eq, ne, in, co, sw* **type**: *eq, ne, in, co, sw* **medium**: *eq, ne, in, co, sw* **description**: *eq, ne, in, co, sw* **batchId**: *eq, ne, in, co, sw* **createdDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **dueDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **completedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **search**: *eq, ne, in, co, sw* **referenceId**: *eq, ne, in, co, sw* **referenceType**: *eq, ne, in, co, sw* **referenceName**: *eq, ne, in, co, sw* **requestedTargetId**: *eq, ne, in, co, sw* **requestedTargetType**: *eq, ne, in, co, sw* **requestedTargetName**: *eq, ne, in, co, sw* **requestedTargetRequestType**: *eq, ne, in, co, sw* **modifiedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **decisionDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **approvalId**: *eq, ne, in, co, sw* **requesterId**: *eq, ne, in, co, sw* **requesteeId**: *eq, ne, in, co, sw* **approverId**: *eq, ne, in, co, sw*
57467
58747
  * @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.
57468
58748
  * @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.
57469
58749
  * @param {*} [axiosOptions] Override http request option.
@@ -57598,9 +58878,9 @@ export declare const ApprovalsV2026ApiFp: (configuration?: Configuration) => {
57598
58878
  */
57599
58879
  getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalV2026>>;
57600
58880
  /**
57601
- * Gets a list of approvals. For lookups by access request ID please use the following: /generic-approvals?filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\" Absence of all query parameters for non admins will will default to mine=true. Admin will default to mine=false. Absence of all query parameters for admins will return all approvals in the org.
58881
+ * Gets a list of approvals. One of the following query parameters should be present: \'mine\', \'approverId\', \'requesterId\', \'requesteeId\'. The absence of all query parameters for non admins will default to mine=true (which is the equivalent of \'approverId=[your_identity_id]\') while admins will default to mine=false (which will show all approvals in the org). For lookups by access request ID please use the following: \'/generic-approvals?mine=false&filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\"\'
57602
58882
  * @summary Get approvals
57603
- * @param {boolean} [mine] Returns the list of approvals for the current caller. Defaults to false if admin, true otherwise.
58883
+ * @param {boolean} [mine] Determines whether to return the list of approvals assigned to the current caller or all approvals in the org. Defaults to false if admin, true otherwise (which is the equivalent of \&#39;approverId&#x3D;[your_identity_id]\&#39;).
57604
58884
  * @param {string} [requesterId] Returns the list of approvals for a given requester ID. Must match the calling user\&#39;s identity ID unless they are an admin.
57605
58885
  * @param {string} [requesteeId] Returns the list of approvals for a given requesteeId ID. Must match the calling user\&#39;s identity ID unless they are an admin.
57606
58886
  * @param {string} [approverId] Returns the list of approvals for a given approverId ID. Must match the calling user\&#39;s identity ID unless they are an admin.
@@ -57610,7 +58890,7 @@ export declare const ApprovalsV2026ApiFp: (configuration?: Configuration) => {
57610
58890
  * @param {boolean} [includeApprovers] If set to true in the query, the approval requests returned will include approvers.
57611
58891
  * @param {boolean} [includeReassignmentHistory] If set to true in the query, the approval requests returned will include reassignment history.
57612
58892
  * @param {boolean} [includeBatchInfo] If set to true in the query, the approval requests returned will include batch information.
57613
- * @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: **status**: *eq, ne, in, co, sw* **referenceType**: *eq, ne, in, co, sw* **name**: *eq, ne, in, co, sw* **priority**: *eq, ne, in, co, sw* **type**: *eq, ne, in, co, sw* **medium**: *eq, ne, in, co, sw* **description**: *eq, ne, in, co, sw* **batchId**: *eq, ne, in, co, sw* **approvalId**: *eq, ne, in, co, sw* **tenantId**: *eq, ne, in, co, sw* **createdDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **dueDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **completedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **search**: *eq, ne, in, co, sw* **referenceId**: *eq, ne, in, co, sw* **referenceName**: *eq, ne, in, co, sw* **requestedTargetType**: *eq, ne, in, co, sw* **requestedTargetRequestType**: *eq, ne, in, co, sw* **requestedTargetId**: *eq, ne, in, co, sw* **modifiedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **requesterId**: *eq, ne, in, co, sw* **requesteeId**: *eq, ne, in, co, sw* **approverId**: *eq, ne, in, co, sw* **decisionDate**: *eq, ne, in, co, sw, gt, ge, lt, le*
58893
+ * @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: **status**: *eq, ne, in, co, sw* **name**: *eq, ne, in, co, sw* **priority**: *eq, ne, in, co, sw* **type**: *eq, ne, in, co, sw* **medium**: *eq, ne, in, co, sw* **description**: *eq, ne, in, co, sw* **batchId**: *eq, ne, in, co, sw* **createdDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **dueDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **completedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **search**: *eq, ne, in, co, sw* **referenceId**: *eq, ne, in, co, sw* **referenceType**: *eq, ne, in, co, sw* **referenceName**: *eq, ne, in, co, sw* **requestedTargetId**: *eq, ne, in, co, sw* **requestedTargetType**: *eq, ne, in, co, sw* **requestedTargetName**: *eq, ne, in, co, sw* **requestedTargetRequestType**: *eq, ne, in, co, sw* **modifiedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **decisionDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **approvalId**: *eq, ne, in, co, sw* **requesterId**: *eq, ne, in, co, sw* **requesteeId**: *eq, ne, in, co, sw* **approverId**: *eq, ne, in, co, sw*
57614
58894
  * @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.
57615
58895
  * @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.
57616
58896
  * @param {*} [axiosOptions] Override http request option.
@@ -57742,7 +59022,7 @@ export declare const ApprovalsV2026ApiFactory: (configuration?: Configuration, b
57742
59022
  */
57743
59023
  getApproval(requestParameters: ApprovalsV2026ApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalV2026>;
57744
59024
  /**
57745
- * Gets a list of approvals. For lookups by access request ID please use the following: /generic-approvals?filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\" Absence of all query parameters for non admins will will default to mine=true. Admin will default to mine=false. Absence of all query parameters for admins will return all approvals in the org.
59025
+ * Gets a list of approvals. One of the following query parameters should be present: \'mine\', \'approverId\', \'requesterId\', \'requesteeId\'. The absence of all query parameters for non admins will default to mine=true (which is the equivalent of \'approverId=[your_identity_id]\') while admins will default to mine=false (which will show all approvals in the org). For lookups by access request ID please use the following: \'/generic-approvals?mine=false&filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\"\'
57746
59026
  * @summary Get approvals
57747
59027
  * @param {ApprovalsV2026ApiGetApprovalsRequest} requestParameters Request parameters.
57748
59028
  * @param {*} [axiosOptions] Override http request option.
@@ -57917,7 +59197,7 @@ export interface ApprovalsV2026ApiGetApprovalRequest {
57917
59197
  */
57918
59198
  export interface ApprovalsV2026ApiGetApprovalsRequest {
57919
59199
  /**
57920
- * Returns the list of approvals for the current caller. Defaults to false if admin, true otherwise.
59200
+ * Determines whether to return the list of approvals assigned to the current caller or all approvals in the org. Defaults to false if admin, true otherwise (which is the equivalent of \&#39;approverId&#x3D;[your_identity_id]\&#39;).
57921
59201
  * @type {boolean}
57922
59202
  * @memberof ApprovalsV2026ApiGetApprovals
57923
59203
  */
@@ -57977,7 +59257,7 @@ export interface ApprovalsV2026ApiGetApprovalsRequest {
57977
59257
  */
57978
59258
  readonly includeBatchInfo?: boolean;
57979
59259
  /**
57980
- * 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: **status**: *eq, ne, in, co, sw* **referenceType**: *eq, ne, in, co, sw* **name**: *eq, ne, in, co, sw* **priority**: *eq, ne, in, co, sw* **type**: *eq, ne, in, co, sw* **medium**: *eq, ne, in, co, sw* **description**: *eq, ne, in, co, sw* **batchId**: *eq, ne, in, co, sw* **approvalId**: *eq, ne, in, co, sw* **tenantId**: *eq, ne, in, co, sw* **createdDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **dueDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **completedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **search**: *eq, ne, in, co, sw* **referenceId**: *eq, ne, in, co, sw* **referenceName**: *eq, ne, in, co, sw* **requestedTargetType**: *eq, ne, in, co, sw* **requestedTargetRequestType**: *eq, ne, in, co, sw* **requestedTargetId**: *eq, ne, in, co, sw* **modifiedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **requesterId**: *eq, ne, in, co, sw* **requesteeId**: *eq, ne, in, co, sw* **approverId**: *eq, ne, in, co, sw* **decisionDate**: *eq, ne, in, co, sw, gt, ge, lt, le*
59260
+ * 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: **status**: *eq, ne, in, co, sw* **name**: *eq, ne, in, co, sw* **priority**: *eq, ne, in, co, sw* **type**: *eq, ne, in, co, sw* **medium**: *eq, ne, in, co, sw* **description**: *eq, ne, in, co, sw* **batchId**: *eq, ne, in, co, sw* **createdDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **dueDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **completedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **search**: *eq, ne, in, co, sw* **referenceId**: *eq, ne, in, co, sw* **referenceType**: *eq, ne, in, co, sw* **referenceName**: *eq, ne, in, co, sw* **requestedTargetId**: *eq, ne, in, co, sw* **requestedTargetType**: *eq, ne, in, co, sw* **requestedTargetName**: *eq, ne, in, co, sw* **requestedTargetRequestType**: *eq, ne, in, co, sw* **modifiedDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **decisionDate**: *eq, ne, in, co, sw, gt, ge, lt, le* **approvalId**: *eq, ne, in, co, sw* **requesterId**: *eq, ne, in, co, sw* **requesteeId**: *eq, ne, in, co, sw* **approverId**: *eq, ne, in, co, sw*
57981
59261
  * @type {string}
57982
59262
  * @memberof ApprovalsV2026ApiGetApprovals
57983
59263
  */
@@ -58197,7 +59477,7 @@ export declare class ApprovalsV2026Api extends BaseAPI {
58197
59477
  */
58198
59478
  getApproval(requestParameters: ApprovalsV2026ApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApprovalV2026, any>>;
58199
59479
  /**
58200
- * Gets a list of approvals. For lookups by access request ID please use the following: /generic-approvals?filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\" Absence of all query parameters for non admins will will default to mine=true. Admin will default to mine=false. Absence of all query parameters for admins will return all approvals in the org.
59480
+ * Gets a list of approvals. One of the following query parameters should be present: \'mine\', \'approverId\', \'requesterId\', \'requesteeId\'. The absence of all query parameters for non admins will default to mine=true (which is the equivalent of \'approverId=[your_identity_id]\') while admins will default to mine=false (which will show all approvals in the org). For lookups by access request ID please use the following: \'/generic-approvals?mine=false&filters=referenceType+eq+\"accessRequestId\"+and+referenceId+eq+\"12345678901234567890123456789012\"\'
58201
59481
  * @summary Get approvals
58202
59482
  * @param {ApprovalsV2026ApiGetApprovalsRequest} requestParameters Request parameters.
58203
59483
  * @param {*} [axiosOptions] Override http request option.
@@ -77853,6 +79133,194 @@ export declare class IdentityProfilesV2026Api extends BaseAPI {
77853
79133
  */
77854
79134
  updateIdentityProfile(requestParameters: IdentityProfilesV2026ApiUpdateIdentityProfileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileV2026, any>>;
77855
79135
  }
79136
+ /**
79137
+ * IntelligencePackageV2026Api - axios parameter creator
79138
+ * @export
79139
+ */
79140
+ export declare const IntelligencePackageV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
79141
+ /**
79142
+ * 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.
79143
+ * @summary Accounts merged with privileged data
79144
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79145
+ * @param {*} [axiosOptions] Override http request option.
79146
+ * @throws {RequiredError}
79147
+ */
79148
+ getIntelIdentityAccess: (identityID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79149
+ /**
79150
+ * 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.
79151
+ * @summary Return identity access-history events
79152
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79153
+ * @param {number} [limit] Maximum number of historical events to return in this page of results.
79154
+ * @param {number} [offset] Zero-based index of the first event row to return for pagination.
79155
+ * @param {boolean} [count] When true, the service may include total count metadata alongside the result list.
79156
+ * @param {*} [axiosOptions] Override http request option.
79157
+ * @throws {RequiredError}
79158
+ */
79159
+ getIntelIdentityAccessHistory: (identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79160
+ /**
79161
+ * 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.
79162
+ * @summary Resolve one identity by filter
79163
+ * @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*
79164
+ * @param {*} [axiosOptions] Override http request option.
79165
+ * @throws {RequiredError}
79166
+ */
79167
+ searchIntelIdentities: (filters: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79168
+ };
79169
+ /**
79170
+ * IntelligencePackageV2026Api - functional programming interface
79171
+ * @export
79172
+ */
79173
+ export declare const IntelligencePackageV2026ApiFp: (configuration?: Configuration) => {
79174
+ /**
79175
+ * 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.
79176
+ * @summary Accounts merged with privileged data
79177
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79178
+ * @param {*} [axiosOptions] Override http request option.
79179
+ * @throws {RequiredError}
79180
+ */
79181
+ getIntelIdentityAccess(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessBodyV2026>>;
79182
+ /**
79183
+ * 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.
79184
+ * @summary Return identity access-history events
79185
+ * @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
79186
+ * @param {number} [limit] Maximum number of historical events to return in this page of results.
79187
+ * @param {number} [offset] Zero-based index of the first event row to return for pagination.
79188
+ * @param {boolean} [count] When true, the service may include total count metadata alongside the result list.
79189
+ * @param {*} [axiosOptions] Override http request option.
79190
+ * @throws {RequiredError}
79191
+ */
79192
+ getIntelIdentityAccessHistory(identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessHistoryBodyV2026>>;
79193
+ /**
79194
+ * 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.
79195
+ * @summary Resolve one identity by filter
79196
+ * @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*
79197
+ * @param {*} [axiosOptions] Override http request option.
79198
+ * @throws {RequiredError}
79199
+ */
79200
+ searchIntelIdentities(filters: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityResponseV2026>>;
79201
+ };
79202
+ /**
79203
+ * IntelligencePackageV2026Api - factory interface
79204
+ * @export
79205
+ */
79206
+ export declare const IntelligencePackageV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
79207
+ /**
79208
+ * 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.
79209
+ * @summary Accounts merged with privileged data
79210
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessRequest} requestParameters Request parameters.
79211
+ * @param {*} [axiosOptions] Override http request option.
79212
+ * @throws {RequiredError}
79213
+ */
79214
+ getIntelIdentityAccess(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessBodyV2026>;
79215
+ /**
79216
+ * 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.
79217
+ * @summary Return identity access-history events
79218
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest} requestParameters Request parameters.
79219
+ * @param {*} [axiosOptions] Override http request option.
79220
+ * @throws {RequiredError}
79221
+ */
79222
+ getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026>;
79223
+ /**
79224
+ * 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.
79225
+ * @summary Resolve one identity by filter
79226
+ * @param {IntelligencePackageV2026ApiSearchIntelIdentitiesRequest} requestParameters Request parameters.
79227
+ * @param {*} [axiosOptions] Override http request option.
79228
+ * @throws {RequiredError}
79229
+ */
79230
+ searchIntelIdentities(requestParameters: IntelligencePackageV2026ApiSearchIntelIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityResponseV2026>;
79231
+ };
79232
+ /**
79233
+ * Request parameters for getIntelIdentityAccess operation in IntelligencePackageV2026Api.
79234
+ * @export
79235
+ * @interface IntelligencePackageV2026ApiGetIntelIdentityAccessRequest
79236
+ */
79237
+ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessRequest {
79238
+ /**
79239
+ * Non-empty identity id path segment for Intelligence Package sub-resources.
79240
+ * @type {string}
79241
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccess
79242
+ */
79243
+ readonly identityID: string;
79244
+ }
79245
+ /**
79246
+ * Request parameters for getIntelIdentityAccessHistory operation in IntelligencePackageV2026Api.
79247
+ * @export
79248
+ * @interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
79249
+ */
79250
+ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest {
79251
+ /**
79252
+ * Non-empty identity id path segment for Intelligence Package sub-resources.
79253
+ * @type {string}
79254
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79255
+ */
79256
+ readonly identityID: string;
79257
+ /**
79258
+ * Maximum number of historical events to return in this page of results.
79259
+ * @type {number}
79260
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79261
+ */
79262
+ readonly limit?: number;
79263
+ /**
79264
+ * Zero-based index of the first event row to return for pagination.
79265
+ * @type {number}
79266
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79267
+ */
79268
+ readonly offset?: number;
79269
+ /**
79270
+ * When true, the service may include total count metadata alongside the result list.
79271
+ * @type {boolean}
79272
+ * @memberof IntelligencePackageV2026ApiGetIntelIdentityAccessHistory
79273
+ */
79274
+ readonly count?: boolean;
79275
+ }
79276
+ /**
79277
+ * Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
79278
+ * @export
79279
+ * @interface IntelligencePackageV2026ApiSearchIntelIdentitiesRequest
79280
+ */
79281
+ export interface IntelligencePackageV2026ApiSearchIntelIdentitiesRequest {
79282
+ /**
79283
+ * 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*
79284
+ * @type {string}
79285
+ * @memberof IntelligencePackageV2026ApiSearchIntelIdentities
79286
+ */
79287
+ readonly filters: string;
79288
+ }
79289
+ /**
79290
+ * IntelligencePackageV2026Api - object-oriented interface
79291
+ * @export
79292
+ * @class IntelligencePackageV2026Api
79293
+ * @extends {BaseAPI}
79294
+ */
79295
+ export declare class IntelligencePackageV2026Api extends BaseAPI {
79296
+ /**
79297
+ * 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.
79298
+ * @summary Accounts merged with privileged data
79299
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessRequest} requestParameters Request parameters.
79300
+ * @param {*} [axiosOptions] Override http request option.
79301
+ * @throws {RequiredError}
79302
+ * @memberof IntelligencePackageV2026Api
79303
+ */
79304
+ getIntelIdentityAccess(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityAccessBodyV2026, any>>;
79305
+ /**
79306
+ * 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.
79307
+ * @summary Return identity access-history events
79308
+ * @param {IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest} requestParameters Request parameters.
79309
+ * @param {*} [axiosOptions] Override http request option.
79310
+ * @throws {RequiredError}
79311
+ * @memberof IntelligencePackageV2026Api
79312
+ */
79313
+ getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityAccessHistoryBodyV2026, any>>;
79314
+ /**
79315
+ * 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.
79316
+ * @summary Resolve one identity by filter
79317
+ * @param {IntelligencePackageV2026ApiSearchIntelIdentitiesRequest} requestParameters Request parameters.
79318
+ * @param {*} [axiosOptions] Override http request option.
79319
+ * @throws {RequiredError}
79320
+ * @memberof IntelligencePackageV2026Api
79321
+ */
79322
+ searchIntelIdentities(requestParameters: IntelligencePackageV2026ApiSearchIntelIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityResponseV2026, any>>;
79323
+ }
77856
79324
  /**
77857
79325
  * JITAccessV2026Api - axios parameter creator
77858
79326
  * @export
@@ -79912,6 +81380,24 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
79912
81380
  * @throws {RequiredError}
79913
81381
  */
79914
81382
  deleteMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81383
+ /**
81384
+ * Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
81385
+ * @summary Bulk disable machine accounts
81386
+ * @param {MisBulkRequestV2026} misBulkRequestV2026
81387
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81388
+ * @param {*} [axiosOptions] Override http request option.
81389
+ * @throws {RequiredError}
81390
+ */
81391
+ disableMachineAccountsInBulk: (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81392
+ /**
81393
+ * Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
81394
+ * @summary Bulk enable machine accounts
81395
+ * @param {MisBulkRequestV2026} misBulkRequestV2026
81396
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81397
+ * @param {*} [axiosOptions] Override http request option.
81398
+ * @throws {RequiredError}
81399
+ */
81400
+ enableMachineAccountsInBulk: (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79915
81401
  /**
79916
81402
  * Use this API to return the details for a single machine account by its ID.
79917
81403
  * @summary Get machine account details
@@ -79996,6 +81482,15 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
79996
81482
  * @throws {RequiredError}
79997
81483
  */
79998
81484
  patchMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81485
+ /**
81486
+ * Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
81487
+ * @summary Bulk reload machine accounts
81488
+ * @param {MisBulkRequestV2026} misBulkRequestV2026
81489
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81490
+ * @param {*} [axiosOptions] Override http request option.
81491
+ * @throws {RequiredError}
81492
+ */
81493
+ reloadMachineAccountsInBulk: (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79999
81494
  /**
80000
81495
  * Use this API to update machine accounts details.
80001
81496
  * @summary Update machine account details
@@ -80016,6 +81511,15 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
80016
81511
  * @throws {RequiredError}
80017
81512
  */
80018
81513
  updateMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81514
+ /**
81515
+ * Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
81516
+ * @summary Bulk update machine accounts
81517
+ * @param {MisBulkUpdateRequestV2026} misBulkUpdateRequestV2026
81518
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81519
+ * @param {*} [axiosOptions] Override http request option.
81520
+ * @throws {RequiredError}
81521
+ */
81522
+ updateMachineAccountsInBulk: (misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80019
81523
  };
80020
81524
  /**
80021
81525
  * MachineAccountsV2026Api - functional programming interface
@@ -80042,6 +81546,24 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
80042
81546
  * @throws {RequiredError}
80043
81547
  */
80044
81548
  deleteMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
81549
+ /**
81550
+ * Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
81551
+ * @summary Bulk disable machine accounts
81552
+ * @param {MisBulkRequestV2026} misBulkRequestV2026
81553
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81554
+ * @param {*} [axiosOptions] Override http request option.
81555
+ * @throws {RequiredError}
81556
+ */
81557
+ disableMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>>;
81558
+ /**
81559
+ * Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
81560
+ * @summary Bulk enable machine accounts
81561
+ * @param {MisBulkRequestV2026} misBulkRequestV2026
81562
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81563
+ * @param {*} [axiosOptions] Override http request option.
81564
+ * @throws {RequiredError}
81565
+ */
81566
+ enableMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>>;
80045
81567
  /**
80046
81568
  * Use this API to return the details for a single machine account by its ID.
80047
81569
  * @summary Get machine account details
@@ -80126,6 +81648,15 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
80126
81648
  * @throws {RequiredError}
80127
81649
  */
80128
81650
  patchMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
81651
+ /**
81652
+ * Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
81653
+ * @summary Bulk reload machine accounts
81654
+ * @param {MisBulkRequestV2026} misBulkRequestV2026
81655
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81656
+ * @param {*} [axiosOptions] Override http request option.
81657
+ * @throws {RequiredError}
81658
+ */
81659
+ reloadMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MisBulkResponseV2026>>>;
80129
81660
  /**
80130
81661
  * Use this API to update machine accounts details.
80131
81662
  * @summary Update machine account details
@@ -80146,6 +81677,15 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
80146
81677
  * @throws {RequiredError}
80147
81678
  */
80148
81679
  updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
81680
+ /**
81681
+ * Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
81682
+ * @summary Bulk update machine accounts
81683
+ * @param {MisBulkUpdateRequestV2026} misBulkUpdateRequestV2026
81684
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81685
+ * @param {*} [axiosOptions] Override http request option.
81686
+ * @throws {RequiredError}
81687
+ */
81688
+ updateMachineAccountsInBulk(misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MisBulkResponseV2026>>>;
80149
81689
  };
80150
81690
  /**
80151
81691
  * MachineAccountsV2026Api - factory interface
@@ -80168,6 +81708,22 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
80168
81708
  * @throws {RequiredError}
80169
81709
  */
80170
81710
  deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
81711
+ /**
81712
+ * Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
81713
+ * @summary Bulk disable machine accounts
81714
+ * @param {MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest} requestParameters Request parameters.
81715
+ * @param {*} [axiosOptions] Override http request option.
81716
+ * @throws {RequiredError}
81717
+ */
81718
+ disableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026>;
81719
+ /**
81720
+ * Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
81721
+ * @summary Bulk enable machine accounts
81722
+ * @param {MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest} requestParameters Request parameters.
81723
+ * @param {*} [axiosOptions] Override http request option.
81724
+ * @throws {RequiredError}
81725
+ */
81726
+ enableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026>;
80171
81727
  /**
80172
81728
  * Use this API to return the details for a single machine account by its ID.
80173
81729
  * @summary Get machine account details
@@ -80232,6 +81788,14 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
80232
81788
  * @throws {RequiredError}
80233
81789
  */
80234
81790
  patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
81791
+ /**
81792
+ * Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
81793
+ * @summary Bulk reload machine accounts
81794
+ * @param {MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest} requestParameters Request parameters.
81795
+ * @param {*} [axiosOptions] Override http request option.
81796
+ * @throws {RequiredError}
81797
+ */
81798
+ reloadMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MisBulkResponseV2026>>;
80235
81799
  /**
80236
81800
  * Use this API to update machine accounts details.
80237
81801
  * @summary Update machine account details
@@ -80248,6 +81812,14 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
80248
81812
  * @throws {RequiredError}
80249
81813
  */
80250
81814
  updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
81815
+ /**
81816
+ * Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
81817
+ * @summary Bulk update machine accounts
81818
+ * @param {MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest} requestParameters Request parameters.
81819
+ * @param {*} [axiosOptions] Override http request option.
81820
+ * @throws {RequiredError}
81821
+ */
81822
+ updateMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MisBulkResponseV2026>>;
80251
81823
  };
80252
81824
  /**
80253
81825
  * Request parameters for createMachineAccountSubtype operation in MachineAccountsV2026Api.
@@ -80299,6 +81871,44 @@ export interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNa
80299
81871
  */
80300
81872
  readonly xSailPointExperimental?: string;
80301
81873
  }
81874
+ /**
81875
+ * Request parameters for disableMachineAccountsInBulk operation in MachineAccountsV2026Api.
81876
+ * @export
81877
+ * @interface MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest
81878
+ */
81879
+ export interface MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest {
81880
+ /**
81881
+ *
81882
+ * @type {MisBulkRequestV2026}
81883
+ * @memberof MachineAccountsV2026ApiDisableMachineAccountsInBulk
81884
+ */
81885
+ readonly misBulkRequestV2026: MisBulkRequestV2026;
81886
+ /**
81887
+ * Use this header to enable this experimental API.
81888
+ * @type {string}
81889
+ * @memberof MachineAccountsV2026ApiDisableMachineAccountsInBulk
81890
+ */
81891
+ readonly xSailPointExperimental?: string;
81892
+ }
81893
+ /**
81894
+ * Request parameters for enableMachineAccountsInBulk operation in MachineAccountsV2026Api.
81895
+ * @export
81896
+ * @interface MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest
81897
+ */
81898
+ export interface MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest {
81899
+ /**
81900
+ *
81901
+ * @type {MisBulkRequestV2026}
81902
+ * @memberof MachineAccountsV2026ApiEnableMachineAccountsInBulk
81903
+ */
81904
+ readonly misBulkRequestV2026: MisBulkRequestV2026;
81905
+ /**
81906
+ * Use this header to enable this experimental API.
81907
+ * @type {string}
81908
+ * @memberof MachineAccountsV2026ApiEnableMachineAccountsInBulk
81909
+ */
81910
+ readonly xSailPointExperimental?: string;
81911
+ }
80302
81912
  /**
80303
81913
  * Request parameters for getMachineAccount operation in MachineAccountsV2026Api.
80304
81914
  * @export
@@ -80523,6 +82133,25 @@ export interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNam
80523
82133
  */
80524
82134
  readonly xSailPointExperimental?: string;
80525
82135
  }
82136
+ /**
82137
+ * Request parameters for reloadMachineAccountsInBulk operation in MachineAccountsV2026Api.
82138
+ * @export
82139
+ * @interface MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest
82140
+ */
82141
+ export interface MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest {
82142
+ /**
82143
+ *
82144
+ * @type {MisBulkRequestV2026}
82145
+ * @memberof MachineAccountsV2026ApiReloadMachineAccountsInBulk
82146
+ */
82147
+ readonly misBulkRequestV2026: MisBulkRequestV2026;
82148
+ /**
82149
+ * Use this header to enable this experimental API.
82150
+ * @type {string}
82151
+ * @memberof MachineAccountsV2026ApiReloadMachineAccountsInBulk
82152
+ */
82153
+ readonly xSailPointExperimental?: string;
82154
+ }
80526
82155
  /**
80527
82156
  * Request parameters for updateMachineAccount operation in MachineAccountsV2026Api.
80528
82157
  * @export
@@ -80573,6 +82202,25 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfi
80573
82202
  */
80574
82203
  readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
80575
82204
  }
82205
+ /**
82206
+ * Request parameters for updateMachineAccountsInBulk operation in MachineAccountsV2026Api.
82207
+ * @export
82208
+ * @interface MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest
82209
+ */
82210
+ export interface MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest {
82211
+ /**
82212
+ *
82213
+ * @type {MisBulkUpdateRequestV2026}
82214
+ * @memberof MachineAccountsV2026ApiUpdateMachineAccountsInBulk
82215
+ */
82216
+ readonly misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026;
82217
+ /**
82218
+ * Use this header to enable this experimental API.
82219
+ * @type {string}
82220
+ * @memberof MachineAccountsV2026ApiUpdateMachineAccountsInBulk
82221
+ */
82222
+ readonly xSailPointExperimental?: string;
82223
+ }
80576
82224
  /**
80577
82225
  * MachineAccountsV2026Api - object-oriented interface
80578
82226
  * @export
@@ -80598,6 +82246,24 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
80598
82246
  * @memberof MachineAccountsV2026Api
80599
82247
  */
80600
82248
  deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
82249
+ /**
82250
+ * Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
82251
+ * @summary Bulk disable machine accounts
82252
+ * @param {MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest} requestParameters Request parameters.
82253
+ * @param {*} [axiosOptions] Override http request option.
82254
+ * @throws {RequiredError}
82255
+ * @memberof MachineAccountsV2026Api
82256
+ */
82257
+ disableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestAsyncResultV2026, any>>;
82258
+ /**
82259
+ * Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
82260
+ * @summary Bulk enable machine accounts
82261
+ * @param {MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest} requestParameters Request parameters.
82262
+ * @param {*} [axiosOptions] Override http request option.
82263
+ * @throws {RequiredError}
82264
+ * @memberof MachineAccountsV2026Api
82265
+ */
82266
+ enableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestAsyncResultV2026, any>>;
80601
82267
  /**
80602
82268
  * Use this API to return the details for a single machine account by its ID.
80603
82269
  * @summary Get machine account details
@@ -80670,6 +82336,15 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
80670
82336
  * @memberof MachineAccountsV2026Api
80671
82337
  */
80672
82338
  patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeV2026, any>>;
82339
+ /**
82340
+ * Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
82341
+ * @summary Bulk reload machine accounts
82342
+ * @param {MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest} requestParameters Request parameters.
82343
+ * @param {*} [axiosOptions] Override http request option.
82344
+ * @throws {RequiredError}
82345
+ * @memberof MachineAccountsV2026Api
82346
+ */
82347
+ reloadMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MisBulkResponseV2026[], any>>;
80673
82348
  /**
80674
82349
  * Use this API to update machine accounts details.
80675
82350
  * @summary Update machine account details
@@ -80688,6 +82363,15 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
80688
82363
  * @memberof MachineAccountsV2026Api
80689
82364
  */
80690
82365
  updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
82366
+ /**
82367
+ * Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
82368
+ * @summary Bulk update machine accounts
82369
+ * @param {MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest} requestParameters Request parameters.
82370
+ * @param {*} [axiosOptions] Override http request option.
82371
+ * @throws {RequiredError}
82372
+ * @memberof MachineAccountsV2026Api
82373
+ */
82374
+ updateMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MisBulkResponseV2026[], any>>;
80691
82375
  }
80692
82376
  /**
80693
82377
  * MachineClassificationConfigV2026Api - axios parameter creator
@@ -80922,12 +82606,13 @@ export declare const MachineIdentitiesV2026ApiAxiosParamCreator: (configuration?
80922
82606
  /**
80923
82607
  * Starts a machine identity (AI Agents) aggregation on the specified source.
80924
82608
  * @summary Start machine identity aggregation
82609
+ * @param {string} sourceId Source ID.
80925
82610
  * @param {MachineIdentityAggregationRequestV2026} machineIdentityAggregationRequestV2026
80926
82611
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
80927
82612
  * @param {*} [axiosOptions] Override http request option.
80928
82613
  * @throws {RequiredError}
80929
82614
  */
80930
- startMachineIdentityAggregation: (machineIdentityAggregationRequestV2026: MachineIdentityAggregationRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
82615
+ startMachineIdentityAggregation: (sourceId: string, machineIdentityAggregationRequestV2026: MachineIdentityAggregationRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80931
82616
  /**
80932
82617
  * Use this API to update machine identity details.
80933
82618
  * @summary Update machine identity details
@@ -81000,12 +82685,13 @@ export declare const MachineIdentitiesV2026ApiFp: (configuration?: Configuration
81000
82685
  /**
81001
82686
  * Starts a machine identity (AI Agents) aggregation on the specified source.
81002
82687
  * @summary Start machine identity aggregation
82688
+ * @param {string} sourceId Source ID.
81003
82689
  * @param {MachineIdentityAggregationRequestV2026} machineIdentityAggregationRequestV2026
81004
82690
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81005
82691
  * @param {*} [axiosOptions] Override http request option.
81006
82692
  * @throws {RequiredError}
81007
82693
  */
81008
- startMachineIdentityAggregation(machineIdentityAggregationRequestV2026: MachineIdentityAggregationRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityAggregationResponseV2026>>;
82694
+ startMachineIdentityAggregation(sourceId: string, machineIdentityAggregationRequestV2026: MachineIdentityAggregationRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityAggregationResponseV2026>>;
81009
82695
  /**
81010
82696
  * Use this API to update machine identity details.
81011
82697
  * @summary Update machine identity details
@@ -81228,6 +82914,12 @@ export interface MachineIdentitiesV2026ApiListMachineIdentityUserEntitlementsReq
81228
82914
  * @interface MachineIdentitiesV2026ApiStartMachineIdentityAggregationRequest
81229
82915
  */
81230
82916
  export interface MachineIdentitiesV2026ApiStartMachineIdentityAggregationRequest {
82917
+ /**
82918
+ * Source ID.
82919
+ * @type {string}
82920
+ * @memberof MachineIdentitiesV2026ApiStartMachineIdentityAggregation
82921
+ */
82922
+ readonly sourceId: string;
81231
82923
  /**
81232
82924
  *
81233
82925
  * @type {MachineIdentityAggregationRequestV2026}
@@ -88452,6 +90144,168 @@ export declare class PrivilegeCriteriaConfigurationV2026Api extends BaseAPI {
88452
90144
  */
88453
90145
  patchPrivilegeCriteriaConfig(requestParameters: PrivilegeCriteriaConfigurationV2026ApiPatchPrivilegeCriteriaConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PrivilegeCriteriaConfigDTOV2026, any>>;
88454
90146
  }
90147
+ /**
90148
+ * PromptInsightsV2026Api - axios parameter creator
90149
+ * @export
90150
+ */
90151
+ export declare const PromptInsightsV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
90152
+ /**
90153
+ * Returns aggregate prompt insights metrics for the requested time window.
90154
+ * @summary Get prompt insights metrics
90155
+ * @param {GetPromptInsightsMetricsIntervalV2026} interval Relative lookback window for metrics aggregation.
90156
+ * @param {*} [axiosOptions] Override http request option.
90157
+ * @throws {RequiredError}
90158
+ */
90159
+ getPromptInsightsMetrics: (interval: GetPromptInsightsMetricsIntervalV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
90160
+ /**
90161
+ * Returns a paginated list of prompt insights within a lookback window, with optional structured filters. Results are sorted by timestamp descending (most recent first).
90162
+ * @summary List prompt insights
90163
+ * @param {ListPromptInsightsIntervalV2026} interval Relative lookback window for prompt insights.
90164
+ * @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.
90165
+ * @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.
90166
+ * @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: **policyDecision**: *eq* **category**: *eq* **severity**: *eq* **user**: *eq, sw, co* **agent**: *eq, sw, co* **reason**: *eq, sw, co* **rule**: *eq, sw, co* **policy**: *eq, sw, co*
90167
+ * @param {*} [axiosOptions] Override http request option.
90168
+ * @throws {RequiredError}
90169
+ */
90170
+ listPromptInsights: (interval: ListPromptInsightsIntervalV2026, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
90171
+ };
90172
+ /**
90173
+ * PromptInsightsV2026Api - functional programming interface
90174
+ * @export
90175
+ */
90176
+ export declare const PromptInsightsV2026ApiFp: (configuration?: Configuration) => {
90177
+ /**
90178
+ * Returns aggregate prompt insights metrics for the requested time window.
90179
+ * @summary Get prompt insights metrics
90180
+ * @param {GetPromptInsightsMetricsIntervalV2026} interval Relative lookback window for metrics aggregation.
90181
+ * @param {*} [axiosOptions] Override http request option.
90182
+ * @throws {RequiredError}
90183
+ */
90184
+ getPromptInsightsMetrics(interval: GetPromptInsightsMetricsIntervalV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PromptInsightsMetricsV2026>>;
90185
+ /**
90186
+ * Returns a paginated list of prompt insights within a lookback window, with optional structured filters. Results are sorted by timestamp descending (most recent first).
90187
+ * @summary List prompt insights
90188
+ * @param {ListPromptInsightsIntervalV2026} interval Relative lookback window for prompt insights.
90189
+ * @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.
90190
+ * @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.
90191
+ * @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: **policyDecision**: *eq* **category**: *eq* **severity**: *eq* **user**: *eq, sw, co* **agent**: *eq, sw, co* **reason**: *eq, sw, co* **rule**: *eq, sw, co* **policy**: *eq, sw, co*
90192
+ * @param {*} [axiosOptions] Override http request option.
90193
+ * @throws {RequiredError}
90194
+ */
90195
+ listPromptInsights(interval: ListPromptInsightsIntervalV2026, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PromptInsightV2026>>>;
90196
+ };
90197
+ /**
90198
+ * PromptInsightsV2026Api - factory interface
90199
+ * @export
90200
+ */
90201
+ export declare const PromptInsightsV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
90202
+ /**
90203
+ * Returns aggregate prompt insights metrics for the requested time window.
90204
+ * @summary Get prompt insights metrics
90205
+ * @param {PromptInsightsV2026ApiGetPromptInsightsMetricsRequest} requestParameters Request parameters.
90206
+ * @param {*} [axiosOptions] Override http request option.
90207
+ * @throws {RequiredError}
90208
+ */
90209
+ getPromptInsightsMetrics(requestParameters: PromptInsightsV2026ApiGetPromptInsightsMetricsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<PromptInsightsMetricsV2026>;
90210
+ /**
90211
+ * Returns a paginated list of prompt insights within a lookback window, with optional structured filters. Results are sorted by timestamp descending (most recent first).
90212
+ * @summary List prompt insights
90213
+ * @param {PromptInsightsV2026ApiListPromptInsightsRequest} requestParameters Request parameters.
90214
+ * @param {*} [axiosOptions] Override http request option.
90215
+ * @throws {RequiredError}
90216
+ */
90217
+ listPromptInsights(requestParameters: PromptInsightsV2026ApiListPromptInsightsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<PromptInsightV2026>>;
90218
+ };
90219
+ /**
90220
+ * Request parameters for getPromptInsightsMetrics operation in PromptInsightsV2026Api.
90221
+ * @export
90222
+ * @interface PromptInsightsV2026ApiGetPromptInsightsMetricsRequest
90223
+ */
90224
+ export interface PromptInsightsV2026ApiGetPromptInsightsMetricsRequest {
90225
+ /**
90226
+ * Relative lookback window for metrics aggregation.
90227
+ * @type {'-1h' | '-1d' | '-7d' | '-30d'}
90228
+ * @memberof PromptInsightsV2026ApiGetPromptInsightsMetrics
90229
+ */
90230
+ readonly interval: GetPromptInsightsMetricsIntervalV2026;
90231
+ }
90232
+ /**
90233
+ * Request parameters for listPromptInsights operation in PromptInsightsV2026Api.
90234
+ * @export
90235
+ * @interface PromptInsightsV2026ApiListPromptInsightsRequest
90236
+ */
90237
+ export interface PromptInsightsV2026ApiListPromptInsightsRequest {
90238
+ /**
90239
+ * Relative lookback window for prompt insights.
90240
+ * @type {'-1h' | '-1d' | '-7d' | '-30d'}
90241
+ * @memberof PromptInsightsV2026ApiListPromptInsights
90242
+ */
90243
+ readonly interval: ListPromptInsightsIntervalV2026;
90244
+ /**
90245
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
90246
+ * @type {number}
90247
+ * @memberof PromptInsightsV2026ApiListPromptInsights
90248
+ */
90249
+ readonly limit?: number;
90250
+ /**
90251
+ * 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.
90252
+ * @type {number}
90253
+ * @memberof PromptInsightsV2026ApiListPromptInsights
90254
+ */
90255
+ readonly offset?: number;
90256
+ /**
90257
+ * 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: **policyDecision**: *eq* **category**: *eq* **severity**: *eq* **user**: *eq, sw, co* **agent**: *eq, sw, co* **reason**: *eq, sw, co* **rule**: *eq, sw, co* **policy**: *eq, sw, co*
90258
+ * @type {string}
90259
+ * @memberof PromptInsightsV2026ApiListPromptInsights
90260
+ */
90261
+ readonly filters?: string;
90262
+ }
90263
+ /**
90264
+ * PromptInsightsV2026Api - object-oriented interface
90265
+ * @export
90266
+ * @class PromptInsightsV2026Api
90267
+ * @extends {BaseAPI}
90268
+ */
90269
+ export declare class PromptInsightsV2026Api extends BaseAPI {
90270
+ /**
90271
+ * Returns aggregate prompt insights metrics for the requested time window.
90272
+ * @summary Get prompt insights metrics
90273
+ * @param {PromptInsightsV2026ApiGetPromptInsightsMetricsRequest} requestParameters Request parameters.
90274
+ * @param {*} [axiosOptions] Override http request option.
90275
+ * @throws {RequiredError}
90276
+ * @memberof PromptInsightsV2026Api
90277
+ */
90278
+ getPromptInsightsMetrics(requestParameters: PromptInsightsV2026ApiGetPromptInsightsMetricsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PromptInsightsMetricsV2026, any>>;
90279
+ /**
90280
+ * Returns a paginated list of prompt insights within a lookback window, with optional structured filters. Results are sorted by timestamp descending (most recent first).
90281
+ * @summary List prompt insights
90282
+ * @param {PromptInsightsV2026ApiListPromptInsightsRequest} requestParameters Request parameters.
90283
+ * @param {*} [axiosOptions] Override http request option.
90284
+ * @throws {RequiredError}
90285
+ * @memberof PromptInsightsV2026Api
90286
+ */
90287
+ listPromptInsights(requestParameters: PromptInsightsV2026ApiListPromptInsightsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PromptInsightV2026[], any>>;
90288
+ }
90289
+ /**
90290
+ * @export
90291
+ */
90292
+ export declare const GetPromptInsightsMetricsIntervalV2026: {
90293
+ readonly _1h: "-1h";
90294
+ readonly _1d: "-1d";
90295
+ readonly _7d: "-7d";
90296
+ readonly _30d: "-30d";
90297
+ };
90298
+ export type GetPromptInsightsMetricsIntervalV2026 = typeof GetPromptInsightsMetricsIntervalV2026[keyof typeof GetPromptInsightsMetricsIntervalV2026];
90299
+ /**
90300
+ * @export
90301
+ */
90302
+ export declare const ListPromptInsightsIntervalV2026: {
90303
+ readonly _1h: "-1h";
90304
+ readonly _1d: "-1d";
90305
+ readonly _7d: "-7d";
90306
+ readonly _30d: "-30d";
90307
+ };
90308
+ export type ListPromptInsightsIntervalV2026 = typeof ListPromptInsightsIntervalV2026[keyof typeof ListPromptInsightsIntervalV2026];
88455
90309
  /**
88456
90310
  * PublicIdentitiesV2026Api - axios parameter creator
88457
90311
  * @export
@@ -95593,11 +97447,12 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
95593
97447
  /**
95594
97448
  * This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
95595
97449
  * @summary Get source entitlement request configuration
97450
+ * @param {string} id The Source id
95596
97451
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
95597
97452
  * @param {*} [axiosOptions] Override http request option.
95598
97453
  * @throws {RequiredError}
95599
97454
  */
95600
- getSourceEntitlementRequestConfig: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97455
+ getSourceEntitlementRequestConfig: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
95601
97456
  /**
95602
97457
  * This endpoint fetches source health by source\'s id
95603
97458
  * @summary Fetches source health by id
@@ -95890,12 +97745,13 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
95890
97745
  /**
95891
97746
  * This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
95892
97747
  * @summary Update source entitlement request configuration
97748
+ * @param {string} id The Source id
95893
97749
  * @param {SourceEntitlementRequestConfigV2026} sourceEntitlementRequestConfigV2026
95894
97750
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
95895
97751
  * @param {*} [axiosOptions] Override http request option.
95896
97752
  * @throws {RequiredError}
95897
97753
  */
95898
- updateSourceEntitlementRequestConfig: (sourceEntitlementRequestConfigV2026: SourceEntitlementRequestConfigV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97754
+ updateSourceEntitlementRequestConfig: (id: string, sourceEntitlementRequestConfigV2026: SourceEntitlementRequestConfigV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
95899
97755
  /**
95900
97756
  * Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
95901
97757
  * @summary Update source schedule (partial)
@@ -96104,11 +97960,12 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
96104
97960
  /**
96105
97961
  * This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
96106
97962
  * @summary Get source entitlement request configuration
97963
+ * @param {string} id The Source id
96107
97964
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
96108
97965
  * @param {*} [axiosOptions] Override http request option.
96109
97966
  * @throws {RequiredError}
96110
97967
  */
96111
- getSourceEntitlementRequestConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2026>>;
97968
+ getSourceEntitlementRequestConfig(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2026>>;
96112
97969
  /**
96113
97970
  * This endpoint fetches source health by source\'s id
96114
97971
  * @summary Fetches source health by id
@@ -96401,12 +98258,13 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
96401
98258
  /**
96402
98259
  * This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
96403
98260
  * @summary Update source entitlement request configuration
98261
+ * @param {string} id The Source id
96404
98262
  * @param {SourceEntitlementRequestConfigV2026} sourceEntitlementRequestConfigV2026
96405
98263
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
96406
98264
  * @param {*} [axiosOptions] Override http request option.
96407
98265
  * @throws {RequiredError}
96408
98266
  */
96409
- updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigV2026: SourceEntitlementRequestConfigV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2026>>;
98267
+ updateSourceEntitlementRequestConfig(id: string, sourceEntitlementRequestConfigV2026: SourceEntitlementRequestConfigV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2026>>;
96410
98268
  /**
96411
98269
  * Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
96412
98270
  * @summary Update source schedule (partial)
@@ -96608,7 +98466,7 @@ export declare const SourcesV2026ApiFactory: (configuration?: Configuration, bas
96608
98466
  * @param {*} [axiosOptions] Override http request option.
96609
98467
  * @throws {RequiredError}
96610
98468
  */
96611
- getSourceEntitlementRequestConfig(requestParameters?: SourcesV2026ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceEntitlementRequestConfigV2026>;
98469
+ getSourceEntitlementRequestConfig(requestParameters: SourcesV2026ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceEntitlementRequestConfigV2026>;
96612
98470
  /**
96613
98471
  * This endpoint fetches source health by source\'s id
96614
98472
  * @summary Fetches source health by id
@@ -97227,6 +99085,12 @@ export interface SourcesV2026ApiGetSourceConnectionsRequest {
97227
99085
  * @interface SourcesV2026ApiGetSourceEntitlementRequestConfigRequest
97228
99086
  */
97229
99087
  export interface SourcesV2026ApiGetSourceEntitlementRequestConfigRequest {
99088
+ /**
99089
+ * The Source id
99090
+ * @type {string}
99091
+ * @memberof SourcesV2026ApiGetSourceEntitlementRequestConfig
99092
+ */
99093
+ readonly id: string;
97230
99094
  /**
97231
99095
  * Use this header to enable this experimental API.
97232
99096
  * @type {string}
@@ -97889,6 +99753,12 @@ export interface SourcesV2026ApiUpdateSourceRequest {
97889
99753
  * @interface SourcesV2026ApiUpdateSourceEntitlementRequestConfigRequest
97890
99754
  */
97891
99755
  export interface SourcesV2026ApiUpdateSourceEntitlementRequestConfigRequest {
99756
+ /**
99757
+ * The Source id
99758
+ * @type {string}
99759
+ * @memberof SourcesV2026ApiUpdateSourceEntitlementRequestConfig
99760
+ */
99761
+ readonly id: string;
97892
99762
  /**
97893
99763
  *
97894
99764
  * @type {SourceEntitlementRequestConfigV2026}
@@ -98156,7 +100026,7 @@ export declare class SourcesV2026Api extends BaseAPI {
98156
100026
  * @throws {RequiredError}
98157
100027
  * @memberof SourcesV2026Api
98158
100028
  */
98159
- getSourceEntitlementRequestConfig(requestParameters?: SourcesV2026ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceEntitlementRequestConfigV2026, any>>;
100029
+ getSourceEntitlementRequestConfig(requestParameters: SourcesV2026ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceEntitlementRequestConfigV2026, any>>;
98160
100030
  /**
98161
100031
  * This endpoint fetches source health by source\'s id
98162
100032
  * @summary Fetches source health by id
@@ -98526,6 +100396,14 @@ export type UpdateSourceScheduleScheduleTypeV2026 = typeof UpdateSourceScheduleS
98526
100396
  * @export
98527
100397
  */
98528
100398
  export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
100399
+ /**
100400
+ * Approve multiple entitlement recommendations in a single request. Each item in the request must include the recommendation ID and, depending on the record type, either an approved description (SED items) or an approved privilege level (privilege items). Returns a per-item result indicating success or failure.
100401
+ * @summary Bulk approve entitlement recommendations
100402
+ * @param {BulkApproveEntitlementRecommendationRequestV2026} bulkApproveEntitlementRecommendationRequestV2026 The list of recommendation items to approve.
100403
+ * @param {*} [axiosOptions] Override http request option.
100404
+ * @throws {RequiredError}
100405
+ */
100406
+ approveBulkEntitlementRecommendations: (bulkApproveEntitlementRecommendationRequestV2026: BulkApproveEntitlementRecommendationRequestV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
98529
100407
  /**
98530
100408
  * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
98531
100409
  * @summary Create auto-write settings for SED
@@ -98561,6 +100439,24 @@ export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (
98561
100439
  * @throws {RequiredError}
98562
100440
  */
98563
100441
  getSedBatches: (offset?: number, limit?: number, count?: boolean, countOnly?: boolean, status?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100442
+ /**
100443
+ * Returns a list of entitlement recommendations (SED and/or privilege) that are currently awaiting review or approval. Each record includes the recommendation type, entitlement details, and any AI-generated suggestions.
100444
+ * @summary List pending entitlement recommendation approvals
100445
+ * @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.
100446
+ * @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.
100447
+ * @param {*} [axiosOptions] Override http request option.
100448
+ * @throws {RequiredError}
100449
+ */
100450
+ listPendingEntitlementRecommendationApprovals: (offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100451
+ /**
100452
+ * Returns a list of privileged entitlement recommendation groups. Each group aggregates individual entitlement instances that share the same entitlement name and connector type, along with a recommendation score and instance count.
100453
+ * @summary List privileged entitlement recommendations
100454
+ * @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.
100455
+ * @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.
100456
+ * @param {*} [axiosOptions] Override http request option.
100457
+ * @throws {RequiredError}
100458
+ */
100459
+ listPrivilegedEntitlementRecommendations: (offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
98564
100460
  /**
98565
100461
  * List of Suggested Entitlement Descriptions (SED) SED field descriptions: **batchId**: the ID of the batch of entitlements that are submitted for description generation **displayName**: the display name of the entitlement that we are generating a description for **sourceName**: the name of the source associated with the entitlement that we are generating the description for **sourceId**: the ID of the source associated with the entitlement that we are generating the description for **status**: the status of the suggested entitlement description, valid status options: \"requested\", \"suggested\", \"not_suggested\", \"failed\", \"assigned\", \"approved\", \"denied\" **fullText**: will filter suggested entitlement description records by text found in any of the following fields: entitlement name, entitlement display name, suggested description, source name
98566
100462
  * @summary List suggested entitlement descriptions
@@ -98576,6 +100472,15 @@ export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (
98576
100472
  * @throws {RequiredError}
98577
100473
  */
98578
100474
  listSeds: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, countOnly?: boolean, requestedByAnyone?: boolean, showPendingStatusOnly?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100475
+ /**
100476
+ * Partially update a single entitlement recommendation record by its ID. Use this endpoint to update the status, description, or privilege level of a specific SED or privilege recommendation.
100477
+ * @summary Update an entitlement recommendation
100478
+ * @param {string} id The unique identifier of the entitlement recommendation to update.
100479
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The patch operations to apply to the entitlement recommendation record.
100480
+ * @param {*} [axiosOptions] Override http request option.
100481
+ * @throws {RequiredError}
100482
+ */
100483
+ patchEntitlementRecommendation: (id: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
98579
100484
  /**
98580
100485
  * Patch Suggested Entitlement Description
98581
100486
  * @summary Patch suggested entitlement description
@@ -98585,6 +100490,14 @@ export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (
98585
100490
  * @throws {RequiredError}
98586
100491
  */
98587
100492
  patchSed: (id: string, sedPatchV2026: Array<SedPatchV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100493
+ /**
100494
+ * Assign a set of entitlement recommendation records to a reviewer. The assignee can be a specific identity, a governance group, or a role-based assignee such as source owner or entitlement owner. Returns a batch ID that can be used to track the assignment.
100495
+ * @summary Assign entitlement recommendations for review
100496
+ * @param {EntitlementRecommendationAssignRequestV2026} entitlementRecommendationAssignRequestV2026 The recommendation IDs and the target assignee.
100497
+ * @param {*} [axiosOptions] Override http request option.
100498
+ * @throws {RequiredError}
100499
+ */
100500
+ submitEntitlementRecommendationsAssignment: (entitlementRecommendationAssignRequestV2026: EntitlementRecommendationAssignRequestV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
98588
100501
  /**
98589
100502
  * Submit Bulk Approval Request for SED. Request body takes list of SED Ids. API responses with list of SED Approval Status
98590
100503
  * @summary Submit bulk approval request
@@ -98623,6 +100536,14 @@ export declare const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator: (
98623
100536
  * @export
98624
100537
  */
98625
100538
  export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?: Configuration) => {
100539
+ /**
100540
+ * Approve multiple entitlement recommendations in a single request. Each item in the request must include the recommendation ID and, depending on the record type, either an approved description (SED items) or an approved privilege level (privilege items). Returns a per-item result indicating success or failure.
100541
+ * @summary Bulk approve entitlement recommendations
100542
+ * @param {BulkApproveEntitlementRecommendationRequestV2026} bulkApproveEntitlementRecommendationRequestV2026 The list of recommendation items to approve.
100543
+ * @param {*} [axiosOptions] Override http request option.
100544
+ * @throws {RequiredError}
100545
+ */
100546
+ approveBulkEntitlementRecommendations(bulkApproveEntitlementRecommendationRequestV2026: BulkApproveEntitlementRecommendationRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkApproveEntitlementRecommendationResultV2026>>>;
98626
100547
  /**
98627
100548
  * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
98628
100549
  * @summary Create auto-write settings for SED
@@ -98658,6 +100579,24 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?:
98658
100579
  * @throws {RequiredError}
98659
100580
  */
98660
100581
  getSedBatches(offset?: number, limit?: number, count?: boolean, countOnly?: boolean, status?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SedBatchRecordV2026>>>;
100582
+ /**
100583
+ * Returns a list of entitlement recommendations (SED and/or privilege) that are currently awaiting review or approval. Each record includes the recommendation type, entitlement details, and any AI-generated suggestions.
100584
+ * @summary List pending entitlement recommendation approvals
100585
+ * @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.
100586
+ * @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.
100587
+ * @param {*} [axiosOptions] Override http request option.
100588
+ * @throws {RequiredError}
100589
+ */
100590
+ listPendingEntitlementRecommendationApprovals(offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementRecommendationRecordV2026>>>;
100591
+ /**
100592
+ * Returns a list of privileged entitlement recommendation groups. Each group aggregates individual entitlement instances that share the same entitlement name and connector type, along with a recommendation score and instance count.
100593
+ * @summary List privileged entitlement recommendations
100594
+ * @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.
100595
+ * @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.
100596
+ * @param {*} [axiosOptions] Override http request option.
100597
+ * @throws {RequiredError}
100598
+ */
100599
+ listPrivilegedEntitlementRecommendations(offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PrivilegedRecommendationGroupV2026>>>;
98661
100600
  /**
98662
100601
  * List of Suggested Entitlement Descriptions (SED) SED field descriptions: **batchId**: the ID of the batch of entitlements that are submitted for description generation **displayName**: the display name of the entitlement that we are generating a description for **sourceName**: the name of the source associated with the entitlement that we are generating the description for **sourceId**: the ID of the source associated with the entitlement that we are generating the description for **status**: the status of the suggested entitlement description, valid status options: \"requested\", \"suggested\", \"not_suggested\", \"failed\", \"assigned\", \"approved\", \"denied\" **fullText**: will filter suggested entitlement description records by text found in any of the following fields: entitlement name, entitlement display name, suggested description, source name
98663
100602
  * @summary List suggested entitlement descriptions
@@ -98673,6 +100612,15 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?:
98673
100612
  * @throws {RequiredError}
98674
100613
  */
98675
100614
  listSeds(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, countOnly?: boolean, requestedByAnyone?: boolean, showPendingStatusOnly?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SedV2026>>>;
100615
+ /**
100616
+ * Partially update a single entitlement recommendation record by its ID. Use this endpoint to update the status, description, or privilege level of a specific SED or privilege recommendation.
100617
+ * @summary Update an entitlement recommendation
100618
+ * @param {string} id The unique identifier of the entitlement recommendation to update.
100619
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The patch operations to apply to the entitlement recommendation record.
100620
+ * @param {*} [axiosOptions] Override http request option.
100621
+ * @throws {RequiredError}
100622
+ */
100623
+ patchEntitlementRecommendation(id: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRecommendationRecordV2026>>;
98676
100624
  /**
98677
100625
  * Patch Suggested Entitlement Description
98678
100626
  * @summary Patch suggested entitlement description
@@ -98682,6 +100630,14 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?:
98682
100630
  * @throws {RequiredError}
98683
100631
  */
98684
100632
  patchSed(id: string, sedPatchV2026: Array<SedPatchV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SedV2026>>;
100633
+ /**
100634
+ * Assign a set of entitlement recommendation records to a reviewer. The assignee can be a specific identity, a governance group, or a role-based assignee such as source owner or entitlement owner. Returns a batch ID that can be used to track the assignment.
100635
+ * @summary Assign entitlement recommendations for review
100636
+ * @param {EntitlementRecommendationAssignRequestV2026} entitlementRecommendationAssignRequestV2026 The recommendation IDs and the target assignee.
100637
+ * @param {*} [axiosOptions] Override http request option.
100638
+ * @throws {RequiredError}
100639
+ */
100640
+ submitEntitlementRecommendationsAssignment(entitlementRecommendationAssignRequestV2026: EntitlementRecommendationAssignRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRecommendationAssignResultV2026>>;
98685
100641
  /**
98686
100642
  * Submit Bulk Approval Request for SED. Request body takes list of SED Ids. API responses with list of SED Approval Status
98687
100643
  * @summary Submit bulk approval request
@@ -98720,6 +100676,14 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFp: (configuration?:
98720
100676
  * @export
98721
100677
  */
98722
100678
  export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
100679
+ /**
100680
+ * Approve multiple entitlement recommendations in a single request. Each item in the request must include the recommendation ID and, depending on the record type, either an approved description (SED items) or an approved privilege level (privilege items). Returns a per-item result indicating success or failure.
100681
+ * @summary Bulk approve entitlement recommendations
100682
+ * @param {SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendationsRequest} requestParameters Request parameters.
100683
+ * @param {*} [axiosOptions] Override http request option.
100684
+ * @throws {RequiredError}
100685
+ */
100686
+ approveBulkEntitlementRecommendations(requestParameters: SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<BulkApproveEntitlementRecommendationResultV2026>>;
98723
100687
  /**
98724
100688
  * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
98725
100689
  * @summary Create auto-write settings for SED
@@ -98751,6 +100715,22 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configurat
98751
100715
  * @throws {RequiredError}
98752
100716
  */
98753
100717
  getSedBatches(requestParameters?: SuggestedEntitlementDescriptionV2026ApiGetSedBatchesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SedBatchRecordV2026>>;
100718
+ /**
100719
+ * Returns a list of entitlement recommendations (SED and/or privilege) that are currently awaiting review or approval. Each record includes the recommendation type, entitlement details, and any AI-generated suggestions.
100720
+ * @summary List pending entitlement recommendation approvals
100721
+ * @param {SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovalsRequest} requestParameters Request parameters.
100722
+ * @param {*} [axiosOptions] Override http request option.
100723
+ * @throws {RequiredError}
100724
+ */
100725
+ listPendingEntitlementRecommendationApprovals(requestParameters?: SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovalsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementRecommendationRecordV2026>>;
100726
+ /**
100727
+ * Returns a list of privileged entitlement recommendation groups. Each group aggregates individual entitlement instances that share the same entitlement name and connector type, along with a recommendation score and instance count.
100728
+ * @summary List privileged entitlement recommendations
100729
+ * @param {SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendationsRequest} requestParameters Request parameters.
100730
+ * @param {*} [axiosOptions] Override http request option.
100731
+ * @throws {RequiredError}
100732
+ */
100733
+ listPrivilegedEntitlementRecommendations(requestParameters?: SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<PrivilegedRecommendationGroupV2026>>;
98754
100734
  /**
98755
100735
  * List of Suggested Entitlement Descriptions (SED) SED field descriptions: **batchId**: the ID of the batch of entitlements that are submitted for description generation **displayName**: the display name of the entitlement that we are generating a description for **sourceName**: the name of the source associated with the entitlement that we are generating the description for **sourceId**: the ID of the source associated with the entitlement that we are generating the description for **status**: the status of the suggested entitlement description, valid status options: \"requested\", \"suggested\", \"not_suggested\", \"failed\", \"assigned\", \"approved\", \"denied\" **fullText**: will filter suggested entitlement description records by text found in any of the following fields: entitlement name, entitlement display name, suggested description, source name
98756
100736
  * @summary List suggested entitlement descriptions
@@ -98759,6 +100739,14 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configurat
98759
100739
  * @throws {RequiredError}
98760
100740
  */
98761
100741
  listSeds(requestParameters?: SuggestedEntitlementDescriptionV2026ApiListSedsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SedV2026>>;
100742
+ /**
100743
+ * Partially update a single entitlement recommendation record by its ID. Use this endpoint to update the status, description, or privilege level of a specific SED or privilege recommendation.
100744
+ * @summary Update an entitlement recommendation
100745
+ * @param {SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendationRequest} requestParameters Request parameters.
100746
+ * @param {*} [axiosOptions] Override http request option.
100747
+ * @throws {RequiredError}
100748
+ */
100749
+ patchEntitlementRecommendation(requestParameters: SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementRecommendationRecordV2026>;
98762
100750
  /**
98763
100751
  * Patch Suggested Entitlement Description
98764
100752
  * @summary Patch suggested entitlement description
@@ -98767,6 +100755,14 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configurat
98767
100755
  * @throws {RequiredError}
98768
100756
  */
98769
100757
  patchSed(requestParameters: SuggestedEntitlementDescriptionV2026ApiPatchSedRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SedV2026>;
100758
+ /**
100759
+ * Assign a set of entitlement recommendation records to a reviewer. The assignee can be a specific identity, a governance group, or a role-based assignee such as source owner or entitlement owner. Returns a batch ID that can be used to track the assignment.
100760
+ * @summary Assign entitlement recommendations for review
100761
+ * @param {SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignmentRequest} requestParameters Request parameters.
100762
+ * @param {*} [axiosOptions] Override http request option.
100763
+ * @throws {RequiredError}
100764
+ */
100765
+ submitEntitlementRecommendationsAssignment(requestParameters: SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementRecommendationAssignResultV2026>;
98770
100766
  /**
98771
100767
  * Submit Bulk Approval Request for SED. Request body takes list of SED Ids. API responses with list of SED Approval Status
98772
100768
  * @summary Submit bulk approval request
@@ -98800,6 +100796,19 @@ export declare const SuggestedEntitlementDescriptionV2026ApiFactory: (configurat
98800
100796
  */
98801
100797
  updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026>;
98802
100798
  };
100799
+ /**
100800
+ * Request parameters for approveBulkEntitlementRecommendations operation in SuggestedEntitlementDescriptionV2026Api.
100801
+ * @export
100802
+ * @interface SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendationsRequest
100803
+ */
100804
+ export interface SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendationsRequest {
100805
+ /**
100806
+ * The list of recommendation items to approve.
100807
+ * @type {BulkApproveEntitlementRecommendationRequestV2026}
100808
+ * @memberof SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendations
100809
+ */
100810
+ readonly bulkApproveEntitlementRecommendationRequestV2026: BulkApproveEntitlementRecommendationRequestV2026;
100811
+ }
98803
100812
  /**
98804
100813
  * Request parameters for createAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
98805
100814
  * @export
@@ -98863,6 +100872,44 @@ export interface SuggestedEntitlementDescriptionV2026ApiGetSedBatchesRequest {
98863
100872
  */
98864
100873
  readonly status?: string;
98865
100874
  }
100875
+ /**
100876
+ * Request parameters for listPendingEntitlementRecommendationApprovals operation in SuggestedEntitlementDescriptionV2026Api.
100877
+ * @export
100878
+ * @interface SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovalsRequest
100879
+ */
100880
+ export interface SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovalsRequest {
100881
+ /**
100882
+ * 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.
100883
+ * @type {number}
100884
+ * @memberof SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovals
100885
+ */
100886
+ readonly offset?: number;
100887
+ /**
100888
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
100889
+ * @type {number}
100890
+ * @memberof SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovals
100891
+ */
100892
+ readonly limit?: number;
100893
+ }
100894
+ /**
100895
+ * Request parameters for listPrivilegedEntitlementRecommendations operation in SuggestedEntitlementDescriptionV2026Api.
100896
+ * @export
100897
+ * @interface SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendationsRequest
100898
+ */
100899
+ export interface SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendationsRequest {
100900
+ /**
100901
+ * 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.
100902
+ * @type {number}
100903
+ * @memberof SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendations
100904
+ */
100905
+ readonly offset?: number;
100906
+ /**
100907
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
100908
+ * @type {number}
100909
+ * @memberof SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendations
100910
+ */
100911
+ readonly limit?: number;
100912
+ }
98866
100913
  /**
98867
100914
  * Request parameters for listSeds operation in SuggestedEntitlementDescriptionV2026Api.
98868
100915
  * @export
@@ -98918,6 +100965,25 @@ export interface SuggestedEntitlementDescriptionV2026ApiListSedsRequest {
98918
100965
  */
98919
100966
  readonly showPendingStatusOnly?: boolean;
98920
100967
  }
100968
+ /**
100969
+ * Request parameters for patchEntitlementRecommendation operation in SuggestedEntitlementDescriptionV2026Api.
100970
+ * @export
100971
+ * @interface SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendationRequest
100972
+ */
100973
+ export interface SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendationRequest {
100974
+ /**
100975
+ * The unique identifier of the entitlement recommendation to update.
100976
+ * @type {string}
100977
+ * @memberof SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendation
100978
+ */
100979
+ readonly id: string;
100980
+ /**
100981
+ * The patch operations to apply to the entitlement recommendation record.
100982
+ * @type {Array<JsonPatchOperationV2026>}
100983
+ * @memberof SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendation
100984
+ */
100985
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
100986
+ }
98921
100987
  /**
98922
100988
  * Request parameters for patchSed operation in SuggestedEntitlementDescriptionV2026Api.
98923
100989
  * @export
@@ -98937,6 +101003,19 @@ export interface SuggestedEntitlementDescriptionV2026ApiPatchSedRequest {
98937
101003
  */
98938
101004
  readonly sedPatchV2026: Array<SedPatchV2026>;
98939
101005
  }
101006
+ /**
101007
+ * Request parameters for submitEntitlementRecommendationsAssignment operation in SuggestedEntitlementDescriptionV2026Api.
101008
+ * @export
101009
+ * @interface SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignmentRequest
101010
+ */
101011
+ export interface SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignmentRequest {
101012
+ /**
101013
+ * The recommendation IDs and the target assignee.
101014
+ * @type {EntitlementRecommendationAssignRequestV2026}
101015
+ * @memberof SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignment
101016
+ */
101017
+ readonly entitlementRecommendationAssignRequestV2026: EntitlementRecommendationAssignRequestV2026;
101018
+ }
98940
101019
  /**
98941
101020
  * Request parameters for submitSedApproval operation in SuggestedEntitlementDescriptionV2026Api.
98942
101021
  * @export
@@ -98996,6 +101075,15 @@ export interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsR
98996
101075
  * @extends {BaseAPI}
98997
101076
  */
98998
101077
  export declare class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
101078
+ /**
101079
+ * Approve multiple entitlement recommendations in a single request. Each item in the request must include the recommendation ID and, depending on the record type, either an approved description (SED items) or an approved privilege level (privilege items). Returns a per-item result indicating success or failure.
101080
+ * @summary Bulk approve entitlement recommendations
101081
+ * @param {SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendationsRequest} requestParameters Request parameters.
101082
+ * @param {*} [axiosOptions] Override http request option.
101083
+ * @throws {RequiredError}
101084
+ * @memberof SuggestedEntitlementDescriptionV2026Api
101085
+ */
101086
+ approveBulkEntitlementRecommendations(requestParameters: SuggestedEntitlementDescriptionV2026ApiApproveBulkEntitlementRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkApproveEntitlementRecommendationResultV2026[], any>>;
98999
101087
  /**
99000
101088
  * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
99001
101089
  * @summary Create auto-write settings for SED
@@ -99031,6 +101119,24 @@ export declare class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
99031
101119
  * @memberof SuggestedEntitlementDescriptionV2026Api
99032
101120
  */
99033
101121
  getSedBatches(requestParameters?: SuggestedEntitlementDescriptionV2026ApiGetSedBatchesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SedBatchRecordV2026[], any>>;
101122
+ /**
101123
+ * Returns a list of entitlement recommendations (SED and/or privilege) that are currently awaiting review or approval. Each record includes the recommendation type, entitlement details, and any AI-generated suggestions.
101124
+ * @summary List pending entitlement recommendation approvals
101125
+ * @param {SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovalsRequest} requestParameters Request parameters.
101126
+ * @param {*} [axiosOptions] Override http request option.
101127
+ * @throws {RequiredError}
101128
+ * @memberof SuggestedEntitlementDescriptionV2026Api
101129
+ */
101130
+ listPendingEntitlementRecommendationApprovals(requestParameters?: SuggestedEntitlementDescriptionV2026ApiListPendingEntitlementRecommendationApprovalsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementRecommendationRecordV2026[], any>>;
101131
+ /**
101132
+ * Returns a list of privileged entitlement recommendation groups. Each group aggregates individual entitlement instances that share the same entitlement name and connector type, along with a recommendation score and instance count.
101133
+ * @summary List privileged entitlement recommendations
101134
+ * @param {SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendationsRequest} requestParameters Request parameters.
101135
+ * @param {*} [axiosOptions] Override http request option.
101136
+ * @throws {RequiredError}
101137
+ * @memberof SuggestedEntitlementDescriptionV2026Api
101138
+ */
101139
+ listPrivilegedEntitlementRecommendations(requestParameters?: SuggestedEntitlementDescriptionV2026ApiListPrivilegedEntitlementRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PrivilegedRecommendationGroupV2026[], any>>;
99034
101140
  /**
99035
101141
  * List of Suggested Entitlement Descriptions (SED) SED field descriptions: **batchId**: the ID of the batch of entitlements that are submitted for description generation **displayName**: the display name of the entitlement that we are generating a description for **sourceName**: the name of the source associated with the entitlement that we are generating the description for **sourceId**: the ID of the source associated with the entitlement that we are generating the description for **status**: the status of the suggested entitlement description, valid status options: \"requested\", \"suggested\", \"not_suggested\", \"failed\", \"assigned\", \"approved\", \"denied\" **fullText**: will filter suggested entitlement description records by text found in any of the following fields: entitlement name, entitlement display name, suggested description, source name
99036
101142
  * @summary List suggested entitlement descriptions
@@ -99040,6 +101146,15 @@ export declare class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
99040
101146
  * @memberof SuggestedEntitlementDescriptionV2026Api
99041
101147
  */
99042
101148
  listSeds(requestParameters?: SuggestedEntitlementDescriptionV2026ApiListSedsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SedV2026[], any>>;
101149
+ /**
101150
+ * Partially update a single entitlement recommendation record by its ID. Use this endpoint to update the status, description, or privilege level of a specific SED or privilege recommendation.
101151
+ * @summary Update an entitlement recommendation
101152
+ * @param {SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendationRequest} requestParameters Request parameters.
101153
+ * @param {*} [axiosOptions] Override http request option.
101154
+ * @throws {RequiredError}
101155
+ * @memberof SuggestedEntitlementDescriptionV2026Api
101156
+ */
101157
+ patchEntitlementRecommendation(requestParameters: SuggestedEntitlementDescriptionV2026ApiPatchEntitlementRecommendationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementRecommendationRecordV2026, any>>;
99043
101158
  /**
99044
101159
  * Patch Suggested Entitlement Description
99045
101160
  * @summary Patch suggested entitlement description
@@ -99049,6 +101164,15 @@ export declare class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
99049
101164
  * @memberof SuggestedEntitlementDescriptionV2026Api
99050
101165
  */
99051
101166
  patchSed(requestParameters: SuggestedEntitlementDescriptionV2026ApiPatchSedRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SedV2026, any>>;
101167
+ /**
101168
+ * Assign a set of entitlement recommendation records to a reviewer. The assignee can be a specific identity, a governance group, or a role-based assignee such as source owner or entitlement owner. Returns a batch ID that can be used to track the assignment.
101169
+ * @summary Assign entitlement recommendations for review
101170
+ * @param {SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignmentRequest} requestParameters Request parameters.
101171
+ * @param {*} [axiosOptions] Override http request option.
101172
+ * @throws {RequiredError}
101173
+ * @memberof SuggestedEntitlementDescriptionV2026Api
101174
+ */
101175
+ submitEntitlementRecommendationsAssignment(requestParameters: SuggestedEntitlementDescriptionV2026ApiSubmitEntitlementRecommendationsAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementRecommendationAssignResultV2026, any>>;
99052
101176
  /**
99053
101177
  * Submit Bulk Approval Request for SED. Request body takes list of SED Ids. API responses with list of SED Approval Status
99054
101178
  * @summary Submit bulk approval request
@@ -100131,22 +102255,20 @@ export declare class TenantV2026Api extends BaseAPI {
100131
102255
  */
100132
102256
  export declare const TenantContextV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
100133
102257
  /**
100134
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
102258
+ * Returns all key-value pairs representing the current state of the tenant\'s context. Each tenant is limited to a maximum of 100 key-value pairs.
100135
102259
  * @summary Retrieve tenant context
100136
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
100137
102260
  * @param {*} [axiosOptions] Override http request option.
100138
102261
  * @throws {RequiredError}
100139
102262
  */
100140
- getTenantContext: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
102263
+ getTenantContext: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100141
102264
  /**
100142
102265
  * Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
100143
102266
  * @summary Update tenant context
100144
102267
  * @param {JsonPatchOperationV2026} jsonPatchOperationV2026
100145
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
100146
102268
  * @param {*} [axiosOptions] Override http request option.
100147
102269
  * @throws {RequiredError}
100148
102270
  */
100149
- patchTenantContext: (jsonPatchOperationV2026: JsonPatchOperationV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
102271
+ patchTenantContext: (jsonPatchOperationV2026: JsonPatchOperationV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100150
102272
  };
100151
102273
  /**
100152
102274
  * TenantContextV2026Api - functional programming interface
@@ -100154,22 +102276,20 @@ export declare const TenantContextV2026ApiAxiosParamCreator: (configuration?: Co
100154
102276
  */
100155
102277
  export declare const TenantContextV2026ApiFp: (configuration?: Configuration) => {
100156
102278
  /**
100157
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
102279
+ * Returns all key-value pairs representing the current state of the tenant\'s context. Each tenant is limited to a maximum of 100 key-value pairs.
100158
102280
  * @summary Retrieve tenant context
100159
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
100160
102281
  * @param {*} [axiosOptions] Override http request option.
100161
102282
  * @throws {RequiredError}
100162
102283
  */
100163
- getTenantContext(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetTenantContext200ResponseInnerV2026>>>;
102284
+ getTenantContext(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetTenantContext200ResponseInnerV2026>>>;
100164
102285
  /**
100165
102286
  * Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
100166
102287
  * @summary Update tenant context
100167
102288
  * @param {JsonPatchOperationV2026} jsonPatchOperationV2026
100168
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
100169
102289
  * @param {*} [axiosOptions] Override http request option.
100170
102290
  * @throws {RequiredError}
100171
102291
  */
100172
- patchTenantContext(jsonPatchOperationV2026: JsonPatchOperationV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
102292
+ patchTenantContext(jsonPatchOperationV2026: JsonPatchOperationV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
100173
102293
  };
100174
102294
  /**
100175
102295
  * TenantContextV2026Api - factory interface
@@ -100177,13 +102297,12 @@ export declare const TenantContextV2026ApiFp: (configuration?: Configuration) =>
100177
102297
  */
100178
102298
  export declare const TenantContextV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
100179
102299
  /**
100180
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
102300
+ * Returns all key-value pairs representing the current state of the tenant\'s context. Each tenant is limited to a maximum of 100 key-value pairs.
100181
102301
  * @summary Retrieve tenant context
100182
- * @param {TenantContextV2026ApiGetTenantContextRequest} requestParameters Request parameters.
100183
102302
  * @param {*} [axiosOptions] Override http request option.
100184
102303
  * @throws {RequiredError}
100185
102304
  */
100186
- getTenantContext(requestParameters?: TenantContextV2026ApiGetTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetTenantContext200ResponseInnerV2026>>;
102305
+ getTenantContext(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetTenantContext200ResponseInnerV2026>>;
100187
102306
  /**
100188
102307
  * Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
100189
102308
  * @summary Update tenant context
@@ -100193,19 +102312,6 @@ export declare const TenantContextV2026ApiFactory: (configuration?: Configuratio
100193
102312
  */
100194
102313
  patchTenantContext(requestParameters: TenantContextV2026ApiPatchTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
100195
102314
  };
100196
- /**
100197
- * Request parameters for getTenantContext operation in TenantContextV2026Api.
100198
- * @export
100199
- * @interface TenantContextV2026ApiGetTenantContextRequest
100200
- */
100201
- export interface TenantContextV2026ApiGetTenantContextRequest {
100202
- /**
100203
- * Use this header to enable this experimental API.
100204
- * @type {string}
100205
- * @memberof TenantContextV2026ApiGetTenantContext
100206
- */
100207
- readonly xSailPointExperimental?: string;
100208
- }
100209
102315
  /**
100210
102316
  * Request parameters for patchTenantContext operation in TenantContextV2026Api.
100211
102317
  * @export
@@ -100218,12 +102324,6 @@ export interface TenantContextV2026ApiPatchTenantContextRequest {
100218
102324
  * @memberof TenantContextV2026ApiPatchTenantContext
100219
102325
  */
100220
102326
  readonly jsonPatchOperationV2026: JsonPatchOperationV2026;
100221
- /**
100222
- * Use this header to enable this experimental API.
100223
- * @type {string}
100224
- * @memberof TenantContextV2026ApiPatchTenantContext
100225
- */
100226
- readonly xSailPointExperimental?: string;
100227
102327
  }
100228
102328
  /**
100229
102329
  * TenantContextV2026Api - object-oriented interface
@@ -100233,14 +102333,13 @@ export interface TenantContextV2026ApiPatchTenantContextRequest {
100233
102333
  */
100234
102334
  export declare class TenantContextV2026Api extends BaseAPI {
100235
102335
  /**
100236
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
102336
+ * Returns all key-value pairs representing the current state of the tenant\'s context. Each tenant is limited to a maximum of 100 key-value pairs.
100237
102337
  * @summary Retrieve tenant context
100238
- * @param {TenantContextV2026ApiGetTenantContextRequest} requestParameters Request parameters.
100239
102338
  * @param {*} [axiosOptions] Override http request option.
100240
102339
  * @throws {RequiredError}
100241
102340
  * @memberof TenantContextV2026Api
100242
102341
  */
100243
- getTenantContext(requestParameters?: TenantContextV2026ApiGetTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantContext200ResponseInnerV2026[], any>>;
102342
+ getTenantContext(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantContext200ResponseInnerV2026[], any>>;
100244
102343
  /**
100245
102344
  * Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
100246
102345
  * @summary Update tenant context