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 AccessItemAccessProfileResponseV2025 {
275
275
  * @memberof AccessItemAccessProfileResponseV2025
276
276
  */
277
277
  'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
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 AccessItemAccessProfileResponseV2025
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 AccessItemAssociatedAccessItemV2025 {
499
505
  * @memberof AccessItemAssociatedAccessItemV2025
500
506
  */
501
507
  'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
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 AccessItemAssociatedAccessItemV2025
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 AccessItemRoleResponseV2025 {
947
959
  * @memberof AccessItemRoleResponseV2025
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 AccessItemRoleResponseV2025
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}
@@ -7103,12 +7121,6 @@ export interface ApprovalConfigCronTimezoneV2025 {
7103
7121
  * @interface ApprovalConfigEscalationConfigEscalationChainInnerV2025
7104
7122
  */
7105
7123
  export interface ApprovalConfigEscalationConfigEscalationChainInnerV2025 {
7106
- /**
7107
- * ID of the escalation chain.
7108
- * @type {string}
7109
- * @memberof ApprovalConfigEscalationConfigEscalationChainInnerV2025
7110
- */
7111
- 'chainId'?: string;
7112
7124
  /**
7113
7125
  * Starting at 1 defines the order in which the identities will get assigned
7114
7126
  * @type {number}
@@ -7116,18 +7128,43 @@ export interface ApprovalConfigEscalationConfigEscalationChainInnerV2025 {
7116
7128
  */
7117
7129
  'tier'?: number;
7118
7130
  /**
7119
- * Identity ID in the escalation chain.
7131
+ * Optional Identity ID of the type of identity defined in the \'identityType\' field.
7120
7132
  * @type {string}
7121
7133
  * @memberof ApprovalConfigEscalationConfigEscalationChainInnerV2025
7122
7134
  */
7123
7135
  'identityId'?: string;
7124
7136
  /**
7125
- * Type of identity in the escalation chain.
7137
+ * Type of identityId in the escalation chain.
7126
7138
  * @type {string}
7127
7139
  * @memberof ApprovalConfigEscalationConfigEscalationChainInnerV2025
7128
7140
  */
7129
- 'identityType'?: string;
7141
+ 'identityType'?: ApprovalConfigEscalationConfigEscalationChainInnerV2025IdentityTypeV2025;
7130
7142
  }
7143
+ export declare const ApprovalConfigEscalationConfigEscalationChainInnerV2025IdentityTypeV2025: {
7144
+ readonly Identity: "IDENTITY";
7145
+ readonly ManagerOf: "MANAGER_OF";
7146
+ readonly AccountOwner: "ACCOUNT_OWNER";
7147
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7148
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7149
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7150
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7151
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7152
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7153
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7154
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7155
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7156
+ readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7157
+ readonly ApplicationOwner: "APPLICATION_OWNER";
7158
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7159
+ readonly RoleOwner: "ROLE_OWNER";
7160
+ readonly SourceOwner: "SOURCE_OWNER";
7161
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7162
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7163
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7164
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7165
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7166
+ };
7167
+ export type ApprovalConfigEscalationConfigEscalationChainInnerV2025IdentityTypeV2025 = typeof ApprovalConfigEscalationConfigEscalationChainInnerV2025IdentityTypeV2025[keyof typeof ApprovalConfigEscalationConfigEscalationChainInnerV2025IdentityTypeV2025];
7131
7168
  /**
7132
7169
  * Configuration for escalations.
7133
7170
  * @export
@@ -7159,6 +7196,52 @@ export interface ApprovalConfigEscalationConfigV2025 {
7159
7196
  */
7160
7197
  'escalationChain'?: Array<ApprovalConfigEscalationConfigEscalationChainInnerV2025>;
7161
7198
  }
7199
+ /**
7200
+ * Configuration for fallback approver. Used if the user cannot be found for whatever reason and escalation config does not exist.
7201
+ * @export
7202
+ * @interface ApprovalConfigFallbackApproverV2025
7203
+ */
7204
+ export interface ApprovalConfigFallbackApproverV2025 {
7205
+ /**
7206
+ * Optional Identity ID of the type of identity defined in the \'type\' field.
7207
+ * @type {string}
7208
+ * @memberof ApprovalConfigFallbackApproverV2025
7209
+ */
7210
+ 'identityID'?: string;
7211
+ /**
7212
+ * Type of identityID for the fallback approver.
7213
+ * @type {string}
7214
+ * @memberof ApprovalConfigFallbackApproverV2025
7215
+ */
7216
+ 'type'?: ApprovalConfigFallbackApproverV2025TypeV2025;
7217
+ }
7218
+ export declare const ApprovalConfigFallbackApproverV2025TypeV2025: {
7219
+ readonly Identity: "IDENTITY";
7220
+ readonly ManagerOf: "MANAGER_OF";
7221
+ readonly AccountOwner: "ACCOUNT_OWNER";
7222
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7223
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7224
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7225
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7226
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7227
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7228
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7229
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7230
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7231
+ readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7232
+ readonly ApplicationOwner: "APPLICATION_OWNER";
7233
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7234
+ readonly RoleOwner: "ROLE_OWNER";
7235
+ readonly SourceOwner: "SOURCE_OWNER";
7236
+ readonly RequestedTargetOwner: "REQUESTED_TARGET_OWNER";
7237
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7238
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7239
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7240
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7241
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7242
+ readonly RequestedTargetPrimaryOwner: "REQUESTED_TARGET_PRIMARY_OWNER";
7243
+ };
7244
+ export type ApprovalConfigFallbackApproverV2025TypeV2025 = typeof ApprovalConfigFallbackApproverV2025TypeV2025[keyof typeof ApprovalConfigFallbackApproverV2025TypeV2025];
7162
7245
  /**
7163
7246
  * Configuration for reminders.
7164
7247
  * @export
@@ -7196,12 +7279,6 @@ export interface ApprovalConfigReminderConfigV2025 {
7196
7279
  * @interface ApprovalConfigSerialChainInnerV2025
7197
7280
  */
7198
7281
  export interface ApprovalConfigSerialChainInnerV2025 {
7199
- /**
7200
- * ID of the serial chain.
7201
- * @type {string}
7202
- * @memberof ApprovalConfigSerialChainInnerV2025
7203
- */
7204
- 'chainId'?: string;
7205
7282
  /**
7206
7283
  * Starting at 1 defines the order in which the identities will get assigned
7207
7284
  * @type {number}
@@ -7209,18 +7286,58 @@ export interface ApprovalConfigSerialChainInnerV2025 {
7209
7286
  */
7210
7287
  'tier'?: number;
7211
7288
  /**
7212
- * Identity ID in the serial chain.
7289
+ * Optional Identity ID of the type of identity defined in the \'identityType\' field.
7213
7290
  * @type {string}
7214
7291
  * @memberof ApprovalConfigSerialChainInnerV2025
7215
7292
  */
7216
7293
  'identityId'?: string;
7217
7294
  /**
7218
- * Type of identity in the serial chain.
7295
+ * Type of identityId in the serial chain.
7219
7296
  * @type {string}
7220
7297
  * @memberof ApprovalConfigSerialChainInnerV2025
7221
7298
  */
7222
- 'identityType'?: string;
7299
+ 'identityType'?: ApprovalConfigSerialChainInnerV2025IdentityTypeV2025;
7223
7300
  }
7301
+ export declare const ApprovalConfigSerialChainInnerV2025IdentityTypeV2025: {
7302
+ readonly Identity: "IDENTITY";
7303
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
7304
+ readonly ManagerOf: "MANAGER_OF";
7305
+ readonly AccountOwner: "ACCOUNT_OWNER";
7306
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7307
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7308
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7309
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7310
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7311
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7312
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7313
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7314
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7315
+ readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7316
+ readonly ApplicationOwner: "APPLICATION_OWNER";
7317
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7318
+ readonly RoleOwner: "ROLE_OWNER";
7319
+ readonly SourceOwner: "SOURCE_OWNER";
7320
+ readonly RequestedTargetOwner: "REQUESTED_TARGET_OWNER";
7321
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7322
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7323
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7324
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7325
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7326
+ readonly RequestedTargetPrimaryOwner: "REQUESTED_TARGET_PRIMARY_OWNER";
7327
+ readonly AccessProfileSecondaryOwnerGroup: "ACCESS_PROFILE_SECONDARY_OWNER_GROUP";
7328
+ readonly ApplicationSecondaryOwnerGroup: "APPLICATION_SECONDARY_OWNER_GROUP";
7329
+ readonly EntitlementSecondaryOwnerGroup: "ENTITLEMENT_SECONDARY_OWNER_GROUP";
7330
+ readonly RoleSecondaryOwnerGroup: "ROLE_SECONDARY_OWNER_GROUP";
7331
+ readonly SourceSecondaryOwnerGroup: "SOURCE_SECONDARY_OWNER_GROUP";
7332
+ readonly RequestedTargetSecondaryOwnerGroup: "REQUESTED_TARGET_SECONDARY_OWNER_GROUP";
7333
+ readonly AccessProfileAllOwnerGroup: "ACCESS_PROFILE_ALL_OWNER_GROUP";
7334
+ readonly ApplicationAllOwnerGroup: "APPLICATION_ALL_OWNER_GROUP";
7335
+ readonly EntitlementAllOwnerGroup: "ENTITLEMENT_ALL_OWNER_GROUP";
7336
+ readonly RoleAllOwnerGroup: "ROLE_ALL_OWNER_GROUP";
7337
+ readonly SourceAllOwnerGroup: "SOURCE_ALL_OWNER_GROUP";
7338
+ readonly RequestedTargetAllOwnerGroup: "REQUESTED_TARGET_ALL_OWNER_GROUP";
7339
+ };
7340
+ export type ApprovalConfigSerialChainInnerV2025IdentityTypeV2025 = typeof ApprovalConfigSerialChainInnerV2025IdentityTypeV2025[keyof typeof ApprovalConfigSerialChainInnerV2025IdentityTypeV2025];
7224
7341
  /**
7225
7342
  * TimeoutConfig contains configurations around when the approval request should expire.
7226
7343
  * @export
@@ -7294,11 +7411,11 @@ export interface ApprovalConfigV2025 {
7294
7411
  */
7295
7412
  'requiresComment'?: ApprovalConfigV2025RequiresCommentV2025;
7296
7413
  /**
7297
- * Configuration for fallback approver. Used if the user cannot be found for whatever reason and escalation config does not exist.
7298
- * @type {ApprovalIdentityV2025}
7414
+ *
7415
+ * @type {ApprovalConfigFallbackApproverV2025}
7299
7416
  * @memberof ApprovalConfigV2025
7300
7417
  */
7301
- 'fallbackApprover'?: ApprovalIdentityV2025;
7418
+ 'fallbackApprover'?: ApprovalConfigFallbackApproverV2025;
7302
7419
  /**
7303
7420
  * Specifies how to treat the identity type \"MANAGER_OF\" when the requestee is a machine identity.
7304
7421
  * @type {string}
@@ -7525,7 +7642,7 @@ export interface ApprovalIdentityV2025 {
7525
7642
  */
7526
7643
  'email'?: string;
7527
7644
  /**
7528
- * Identity ID.
7645
+ * Identity ID of the type of identity defined in the \'type\' field.
7529
7646
  * @type {string}
7530
7647
  * @memberof ApprovalIdentityV2025
7531
7648
  */
@@ -7555,7 +7672,7 @@ export interface ApprovalIdentityV2025 {
7555
7672
  */
7556
7673
  'serialOrder'?: number;
7557
7674
  /**
7558
- * Type of identity.
7675
+ * Type of identityID.
7559
7676
  * @type {string}
7560
7677
  * @memberof ApprovalIdentityV2025
7561
7678
  */
@@ -7563,13 +7680,42 @@ export interface ApprovalIdentityV2025 {
7563
7680
  }
7564
7681
  export declare const ApprovalIdentityV2025TypeV2025: {
7565
7682
  readonly Identity: "IDENTITY";
7566
- readonly ManagerOf: "MANAGER_OF";
7567
7683
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
7568
- readonly SourceOwner: "SOURCE_OWNER";
7569
- readonly RoleOwner: "ROLE_OWNER";
7684
+ readonly ManagerOf: "MANAGER_OF";
7685
+ readonly AccountOwner: "ACCOUNT_OWNER";
7686
+ readonly MachineAccountOwner: "MACHINE_ACCOUNT_OWNER";
7687
+ readonly MachineIdentityOwner: "MACHINE_IDENTITY_OWNER";
7688
+ readonly ManagerOfRequestedTargetOwner: "MANAGER_OF_REQUESTED_TARGET_OWNER";
7689
+ readonly ManagerOfMachineIdentityOwner: "MANAGER_OF_MACHINE_IDENTITY_OWNER";
7690
+ readonly ManagerOfAccountOwner: "MANAGER_OF_ACCOUNT_OWNER";
7691
+ readonly ManagerOfMachineAccountOwner: "MANAGER_OF_MACHINE_ACCOUNT_OWNER";
7692
+ readonly ManagerOfRequester: "MANAGER_OF_REQUESTER";
7693
+ readonly ManagerOfRequesterOwner: "MANAGER_OF_REQUESTER_OWNER";
7694
+ readonly ManagerOfOwner: "MANAGER_OF_OWNER";
7570
7695
  readonly AccessProfileOwner: "ACCESS_PROFILE_OWNER";
7571
- readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7572
7696
  readonly ApplicationOwner: "APPLICATION_OWNER";
7697
+ readonly EntitlementOwner: "ENTITLEMENT_OWNER";
7698
+ readonly RoleOwner: "ROLE_OWNER";
7699
+ readonly SourceOwner: "SOURCE_OWNER";
7700
+ readonly RequestedTargetOwner: "REQUESTED_TARGET_OWNER";
7701
+ readonly AccessProfilePrimaryOwner: "ACCESS_PROFILE_PRIMARY_OWNER";
7702
+ readonly ApplicationPrimaryOwner: "APPLICATION_PRIMARY_OWNER";
7703
+ readonly EntitlementPrimaryOwner: "ENTITLEMENT_PRIMARY_OWNER";
7704
+ readonly RolePrimaryOwner: "ROLE_PRIMARY_OWNER";
7705
+ readonly SourcePrimaryOwner: "SOURCE_PRIMARY_OWNER";
7706
+ readonly RequestedTargetPrimaryOwner: "REQUESTED_TARGET_PRIMARY_OWNER";
7707
+ readonly AccessProfileSecondaryOwnerGroup: "ACCESS_PROFILE_SECONDARY_OWNER_GROUP";
7708
+ readonly ApplicationSecondaryOwnerGroup: "APPLICATION_SECONDARY_OWNER_GROUP";
7709
+ readonly EntitlementSecondaryOwnerGroup: "ENTITLEMENT_SECONDARY_OWNER_GROUP";
7710
+ readonly RoleSecondaryOwnerGroup: "ROLE_SECONDARY_OWNER_GROUP";
7711
+ readonly SourceSecondaryOwnerGroup: "SOURCE_SECONDARY_OWNER_GROUP";
7712
+ readonly RequestedTargetSecondaryOwnerGroup: "REQUESTED_TARGET_SECONDARY_OWNER_GROUP";
7713
+ readonly AccessProfileAllOwnerGroup: "ACCESS_PROFILE_ALL_OWNER_GROUP";
7714
+ readonly ApplicationAllOwnerGroup: "APPLICATION_ALL_OWNER_GROUP";
7715
+ readonly EntitlementAllOwnerGroup: "ENTITLEMENT_ALL_OWNER_GROUP";
7716
+ readonly RoleAllOwnerGroup: "ROLE_ALL_OWNER_GROUP";
7717
+ readonly SourceAllOwnerGroup: "SOURCE_ALL_OWNER_GROUP";
7718
+ readonly RequestedTargetAllOwnerGroup: "REQUESTED_TARGET_ALL_OWNER_GROUP";
7573
7719
  };
7574
7720
  export type ApprovalIdentityV2025TypeV2025 = typeof ApprovalIdentityV2025TypeV2025[keyof typeof ApprovalIdentityV2025TypeV2025];
7575
7721
  /**
@@ -17981,31 +18127,6 @@ export interface EntityCreatedByDTOV2025 {
17981
18127
  */
17982
18128
  'displayName'?: string;
17983
18129
  }
17984
- /**
17985
- *
17986
- * @export
17987
- * @interface ErrorMessageDto1V2025
17988
- */
17989
- export interface ErrorMessageDto1V2025 {
17990
- /**
17991
- * The locale for the message text, a BCP 47 language tag.
17992
- * @type {string}
17993
- * @memberof ErrorMessageDto1V2025
17994
- */
17995
- 'locale'?: string | null;
17996
- /**
17997
- *
17998
- * @type {LocaleOriginV2025}
17999
- * @memberof ErrorMessageDto1V2025
18000
- */
18001
- 'localeOrigin'?: LocaleOriginV2025 | null;
18002
- /**
18003
- * Actual text of the error message in the indicated locale.
18004
- * @type {string}
18005
- * @memberof ErrorMessageDto1V2025
18006
- */
18007
- 'text'?: string;
18008
- }
18009
18130
  /**
18010
18131
  *
18011
18132
  * @export
@@ -18056,37 +18177,6 @@ export interface ErrorMessageV2025 {
18056
18177
  */
18057
18178
  'text'?: string;
18058
18179
  }
18059
- /**
18060
- *
18061
- * @export
18062
- * @interface ErrorResponseDto1V2025
18063
- */
18064
- export interface ErrorResponseDto1V2025 {
18065
- /**
18066
- * Fine-grained error code providing more detail of the error.
18067
- * @type {string}
18068
- * @memberof ErrorResponseDto1V2025
18069
- */
18070
- 'detailCode'?: string;
18071
- /**
18072
- * Unique tracking id for the error.
18073
- * @type {string}
18074
- * @memberof ErrorResponseDto1V2025
18075
- */
18076
- 'trackingId'?: string;
18077
- /**
18078
- * Generic localized reason for error
18079
- * @type {Array<ErrorMessageDto1V2025>}
18080
- * @memberof ErrorResponseDto1V2025
18081
- */
18082
- 'messages'?: Array<ErrorMessageDto1V2025>;
18083
- /**
18084
- * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
18085
- * @type {Array<ErrorMessageDto1V2025>}
18086
- * @memberof ErrorResponseDto1V2025
18087
- */
18088
- 'causes'?: Array<ErrorMessageDto1V2025>;
18089
- }
18090
18180
  /**
18091
18181
  *
18092
18182
  * @export
@@ -25390,6 +25480,12 @@ export interface ListIdentityAccessItems200ResponseInnerV2025 {
25390
25480
  * @memberof ListIdentityAccessItems200ResponseInnerV2025
25391
25481
  */
25392
25482
  'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
25483
+ /**
25484
+ * the date the access profile will be assigned to the specified identity, in case requested with a future start date
25485
+ * @type {string}
25486
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
25487
+ */
25488
+ 'startDate'?: string | null;
25393
25489
  /**
25394
25490
  * the date the role is no longer assigned to the specified identity
25395
25491
  * @type {string}
@@ -45789,7 +45885,7 @@ export interface SpConfigExportJobStatusV2025 {
45789
45885
  * @type {string}
45790
45886
  * @memberof SpConfigExportJobStatusV2025
45791
45887
  */
45792
- 'expiration': string;
45888
+ 'expiration'?: string;
45793
45889
  /**
45794
45890
  * The time the job was started.
45795
45891
  * @type {string}
@@ -45857,7 +45953,7 @@ export interface SpConfigExportJobV2025 {
45857
45953
  * @type {string}
45858
45954
  * @memberof SpConfigExportJobV2025
45859
45955
  */
45860
- 'expiration': string;
45956
+ 'expiration'?: string;
45861
45957
  /**
45862
45958
  * The time the job was started.
45863
45959
  * @type {string}
@@ -45962,7 +46058,7 @@ export interface SpConfigImportJobStatusV2025 {
45962
46058
  * @type {string}
45963
46059
  * @memberof SpConfigImportJobStatusV2025
45964
46060
  */
45965
- 'expiration': string;
46061
+ 'expiration'?: string;
45966
46062
  /**
45967
46063
  * The time the job was started.
45968
46064
  * @type {string}
@@ -46051,7 +46147,7 @@ export interface SpConfigJobV2025 {
46051
46147
  * @type {string}
46052
46148
  * @memberof SpConfigJobV2025
46053
46149
  */
46054
- 'expiration': string;
46150
+ 'expiration'?: string;
46055
46151
  /**
46056
46152
  * The time the job was started.
46057
46153
  * @type {string}
@@ -47604,7 +47700,7 @@ export interface TaskStatusV2025 {
47604
47700
  * @type {string}
47605
47701
  * @memberof TaskStatusV2025
47606
47702
  */
47607
- 'modified': string;
47703
+ 'modified': string | null;
47608
47704
  /**
47609
47705
  * Launch date of the task this TaskStatus represents
47610
47706
  * @type {string}
@@ -55537,9 +55633,9 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
55537
55633
  */
55538
55634
  getApproval: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55539
55635
  /**
55540
- * 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.
55636
+ * 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\"\'
55541
55637
  * @summary Get approvals
55542
- * @param {boolean} [mine] Returns the list of approvals for the current caller. Defaults to false if admin, true otherwise.
55638
+ * @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;).
55543
55639
  * @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.
55544
55640
  * @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.
55545
55641
  * @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.
@@ -55549,7 +55645,7 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
55549
55645
  * @param {boolean} [includeApprovers] If set to true in the query, the approval requests returned will include approvers.
55550
55646
  * @param {boolean} [includeReassignmentHistory] If set to true in the query, the approval requests returned will include reassignment history.
55551
55647
  * @param {boolean} [includeBatchInfo] If set to true in the query, the approval requests returned will include batch information.
55552
- * @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*
55648
+ * @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*
55553
55649
  * @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.
55554
55650
  * @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.
55555
55651
  * @param {*} [axiosOptions] Override http request option.
@@ -55675,9 +55771,9 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
55675
55771
  */
55676
55772
  getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalV2025>>;
55677
55773
  /**
55678
- * 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.
55774
+ * 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\"\'
55679
55775
  * @summary Get approvals
55680
- * @param {boolean} [mine] Returns the list of approvals for the current caller. Defaults to false if admin, true otherwise.
55776
+ * @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;).
55681
55777
  * @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.
55682
55778
  * @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.
55683
55779
  * @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.
@@ -55687,7 +55783,7 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
55687
55783
  * @param {boolean} [includeApprovers] If set to true in the query, the approval requests returned will include approvers.
55688
55784
  * @param {boolean} [includeReassignmentHistory] If set to true in the query, the approval requests returned will include reassignment history.
55689
55785
  * @param {boolean} [includeBatchInfo] If set to true in the query, the approval requests returned will include batch information.
55690
- * @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*
55786
+ * @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*
55691
55787
  * @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.
55692
55788
  * @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.
55693
55789
  * @param {*} [axiosOptions] Override http request option.
@@ -55811,7 +55907,7 @@ export declare const ApprovalsV2025ApiFactory: (configuration?: Configuration, b
55811
55907
  */
55812
55908
  getApproval(requestParameters: ApprovalsV2025ApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalV2025>;
55813
55909
  /**
55814
- * 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.
55910
+ * 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\"\'
55815
55911
  * @summary Get approvals
55816
55912
  * @param {ApprovalsV2025ApiGetApprovalsRequest} requestParameters Request parameters.
55817
55913
  * @param {*} [axiosOptions] Override http request option.
@@ -55967,7 +56063,7 @@ export interface ApprovalsV2025ApiGetApprovalRequest {
55967
56063
  */
55968
56064
  export interface ApprovalsV2025ApiGetApprovalsRequest {
55969
56065
  /**
55970
- * Returns the list of approvals for the current caller. Defaults to false if admin, true otherwise.
56066
+ * 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;).
55971
56067
  * @type {boolean}
55972
56068
  * @memberof ApprovalsV2025ApiGetApprovals
55973
56069
  */
@@ -56027,7 +56123,7 @@ export interface ApprovalsV2025ApiGetApprovalsRequest {
56027
56123
  */
56028
56124
  readonly includeBatchInfo?: boolean;
56029
56125
  /**
56030
- * 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*
56126
+ * 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*
56031
56127
  * @type {string}
56032
56128
  * @memberof ApprovalsV2025ApiGetApprovals
56033
56129
  */
@@ -56238,7 +56334,7 @@ export declare class ApprovalsV2025Api extends BaseAPI {
56238
56334
  */
56239
56335
  getApproval(requestParameters: ApprovalsV2025ApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApprovalV2025, any>>;
56240
56336
  /**
56241
- * 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.
56337
+ * 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\"\'
56242
56338
  * @summary Get approvals
56243
56339
  * @param {ApprovalsV2025ApiGetApprovalsRequest} requestParameters Request parameters.
56244
56340
  * @param {*} [axiosOptions] Override http request option.
@@ -77995,12 +78091,13 @@ export declare const MachineIdentitiesV2025ApiAxiosParamCreator: (configuration?
77995
78091
  /**
77996
78092
  * Starts a machine identity (AI Agents) aggregation on the specified source.
77997
78093
  * @summary Start machine identity aggregation
78094
+ * @param {string} sourceId Source ID.
77998
78095
  * @param {MachineIdentityAggregationRequestV2025} machineIdentityAggregationRequestV2025
77999
78096
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
78000
78097
  * @param {*} [axiosOptions] Override http request option.
78001
78098
  * @throws {RequiredError}
78002
78099
  */
78003
- startMachineIdentityAggregation: (machineIdentityAggregationRequestV2025: MachineIdentityAggregationRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78100
+ startMachineIdentityAggregation: (sourceId: string, machineIdentityAggregationRequestV2025: MachineIdentityAggregationRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78004
78101
  /**
78005
78102
  * Use this API to update machine identity details.
78006
78103
  * @summary Update machine identity details
@@ -78073,12 +78170,13 @@ export declare const MachineIdentitiesV2025ApiFp: (configuration?: Configuration
78073
78170
  /**
78074
78171
  * Starts a machine identity (AI Agents) aggregation on the specified source.
78075
78172
  * @summary Start machine identity aggregation
78173
+ * @param {string} sourceId Source ID.
78076
78174
  * @param {MachineIdentityAggregationRequestV2025} machineIdentityAggregationRequestV2025
78077
78175
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
78078
78176
  * @param {*} [axiosOptions] Override http request option.
78079
78177
  * @throws {RequiredError}
78080
78178
  */
78081
- startMachineIdentityAggregation(machineIdentityAggregationRequestV2025: MachineIdentityAggregationRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityAggregationResponseV2025>>;
78179
+ startMachineIdentityAggregation(sourceId: string, machineIdentityAggregationRequestV2025: MachineIdentityAggregationRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityAggregationResponseV2025>>;
78082
78180
  /**
78083
78181
  * Use this API to update machine identity details.
78084
78182
  * @summary Update machine identity details
@@ -78301,6 +78399,12 @@ export interface MachineIdentitiesV2025ApiListMachineIdentityUserEntitlementsReq
78301
78399
  * @interface MachineIdentitiesV2025ApiStartMachineIdentityAggregationRequest
78302
78400
  */
78303
78401
  export interface MachineIdentitiesV2025ApiStartMachineIdentityAggregationRequest {
78402
+ /**
78403
+ * Source ID.
78404
+ * @type {string}
78405
+ * @memberof MachineIdentitiesV2025ApiStartMachineIdentityAggregation
78406
+ */
78407
+ readonly sourceId: string;
78304
78408
  /**
78305
78409
  *
78306
78410
  * @type {MachineIdentityAggregationRequestV2025}
@@ -92579,11 +92683,12 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
92579
92683
  /**
92580
92684
  * 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.
92581
92685
  * @summary Get source entitlement request configuration
92686
+ * @param {string} id The Source id
92582
92687
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
92583
92688
  * @param {*} [axiosOptions] Override http request option.
92584
92689
  * @throws {RequiredError}
92585
92690
  */
92586
- getSourceEntitlementRequestConfig: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
92691
+ getSourceEntitlementRequestConfig: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
92587
92692
  /**
92588
92693
  * This endpoint fetches source health by source\'s id
92589
92694
  * @summary Fetches source health by id
@@ -92856,12 +92961,13 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
92856
92961
  /**
92857
92962
  * 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.
92858
92963
  * @summary Update source entitlement request configuration
92964
+ * @param {string} id The Source id
92859
92965
  * @param {SourceEntitlementRequestConfigV2025} sourceEntitlementRequestConfigV2025
92860
92966
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
92861
92967
  * @param {*} [axiosOptions] Override http request option.
92862
92968
  * @throws {RequiredError}
92863
92969
  */
92864
- updateSourceEntitlementRequestConfig: (sourceEntitlementRequestConfigV2025: SourceEntitlementRequestConfigV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
92970
+ updateSourceEntitlementRequestConfig: (id: string, sourceEntitlementRequestConfigV2025: SourceEntitlementRequestConfigV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
92865
92971
  /**
92866
92972
  * Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
92867
92973
  * @summary Update source schedule (partial)
@@ -93054,11 +93160,12 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
93054
93160
  /**
93055
93161
  * 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.
93056
93162
  * @summary Get source entitlement request configuration
93163
+ * @param {string} id The Source id
93057
93164
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
93058
93165
  * @param {*} [axiosOptions] Override http request option.
93059
93166
  * @throws {RequiredError}
93060
93167
  */
93061
- getSourceEntitlementRequestConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2025>>;
93168
+ getSourceEntitlementRequestConfig(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2025>>;
93062
93169
  /**
93063
93170
  * This endpoint fetches source health by source\'s id
93064
93171
  * @summary Fetches source health by id
@@ -93331,12 +93438,13 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
93331
93438
  /**
93332
93439
  * 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.
93333
93440
  * @summary Update source entitlement request configuration
93441
+ * @param {string} id The Source id
93334
93442
  * @param {SourceEntitlementRequestConfigV2025} sourceEntitlementRequestConfigV2025
93335
93443
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
93336
93444
  * @param {*} [axiosOptions] Override http request option.
93337
93445
  * @throws {RequiredError}
93338
93446
  */
93339
- updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigV2025: SourceEntitlementRequestConfigV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2025>>;
93447
+ updateSourceEntitlementRequestConfig(id: string, sourceEntitlementRequestConfigV2025: SourceEntitlementRequestConfigV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2025>>;
93340
93448
  /**
93341
93449
  * Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
93342
93450
  * @summary Update source schedule (partial)
@@ -93522,7 +93630,7 @@ export declare const SourcesV2025ApiFactory: (configuration?: Configuration, bas
93522
93630
  * @param {*} [axiosOptions] Override http request option.
93523
93631
  * @throws {RequiredError}
93524
93632
  */
93525
- getSourceEntitlementRequestConfig(requestParameters?: SourcesV2025ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceEntitlementRequestConfigV2025>;
93633
+ getSourceEntitlementRequestConfig(requestParameters: SourcesV2025ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceEntitlementRequestConfigV2025>;
93526
93634
  /**
93527
93635
  * This endpoint fetches source health by source\'s id
93528
93636
  * @summary Fetches source health by id
@@ -94099,6 +94207,12 @@ export interface SourcesV2025ApiGetSourceConnectionsRequest {
94099
94207
  * @interface SourcesV2025ApiGetSourceEntitlementRequestConfigRequest
94100
94208
  */
94101
94209
  export interface SourcesV2025ApiGetSourceEntitlementRequestConfigRequest {
94210
+ /**
94211
+ * The Source id
94212
+ * @type {string}
94213
+ * @memberof SourcesV2025ApiGetSourceEntitlementRequestConfig
94214
+ */
94215
+ readonly id: string;
94102
94216
  /**
94103
94217
  * Use this header to enable this experimental API.
94104
94218
  * @type {string}
@@ -94711,6 +94825,12 @@ export interface SourcesV2025ApiUpdateSourceRequest {
94711
94825
  * @interface SourcesV2025ApiUpdateSourceEntitlementRequestConfigRequest
94712
94826
  */
94713
94827
  export interface SourcesV2025ApiUpdateSourceEntitlementRequestConfigRequest {
94828
+ /**
94829
+ * The Source id
94830
+ * @type {string}
94831
+ * @memberof SourcesV2025ApiUpdateSourceEntitlementRequestConfig
94832
+ */
94833
+ readonly id: string;
94714
94834
  /**
94715
94835
  *
94716
94836
  * @type {SourceEntitlementRequestConfigV2025}
@@ -94960,7 +95080,7 @@ export declare class SourcesV2025Api extends BaseAPI {
94960
95080
  * @throws {RequiredError}
94961
95081
  * @memberof SourcesV2025Api
94962
95082
  */
94963
- getSourceEntitlementRequestConfig(requestParameters?: SourcesV2025ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceEntitlementRequestConfigV2025, any>>;
95083
+ getSourceEntitlementRequestConfig(requestParameters: SourcesV2025ApiGetSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceEntitlementRequestConfigV2025, any>>;
94964
95084
  /**
94965
95085
  * This endpoint fetches source health by source\'s id
94966
95086
  * @summary Fetches source health by id
@@ -96928,22 +97048,20 @@ export declare class TenantV2025Api extends BaseAPI {
96928
97048
  */
96929
97049
  export declare const TenantContextV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
96930
97050
  /**
96931
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
97051
+ * 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.
96932
97052
  * @summary Retrieve tenant context
96933
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
96934
97053
  * @param {*} [axiosOptions] Override http request option.
96935
97054
  * @throws {RequiredError}
96936
97055
  */
96937
- getTenantContext: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97056
+ getTenantContext: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
96938
97057
  /**
96939
97058
  * 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.
96940
97059
  * @summary Update tenant context
96941
97060
  * @param {JsonPatchOperationV2025} jsonPatchOperationV2025
96942
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
96943
97061
  * @param {*} [axiosOptions] Override http request option.
96944
97062
  * @throws {RequiredError}
96945
97063
  */
96946
- patchTenantContext: (jsonPatchOperationV2025: JsonPatchOperationV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
97064
+ patchTenantContext: (jsonPatchOperationV2025: JsonPatchOperationV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
96947
97065
  };
96948
97066
  /**
96949
97067
  * TenantContextV2025Api - functional programming interface
@@ -96951,22 +97069,20 @@ export declare const TenantContextV2025ApiAxiosParamCreator: (configuration?: Co
96951
97069
  */
96952
97070
  export declare const TenantContextV2025ApiFp: (configuration?: Configuration) => {
96953
97071
  /**
96954
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
97072
+ * 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.
96955
97073
  * @summary Retrieve tenant context
96956
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
96957
97074
  * @param {*} [axiosOptions] Override http request option.
96958
97075
  * @throws {RequiredError}
96959
97076
  */
96960
- getTenantContext(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetTenantContext200ResponseInnerV2025>>>;
97077
+ getTenantContext(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetTenantContext200ResponseInnerV2025>>>;
96961
97078
  /**
96962
97079
  * 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.
96963
97080
  * @summary Update tenant context
96964
97081
  * @param {JsonPatchOperationV2025} jsonPatchOperationV2025
96965
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
96966
97082
  * @param {*} [axiosOptions] Override http request option.
96967
97083
  * @throws {RequiredError}
96968
97084
  */
96969
- patchTenantContext(jsonPatchOperationV2025: JsonPatchOperationV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
97085
+ patchTenantContext(jsonPatchOperationV2025: JsonPatchOperationV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
96970
97086
  };
96971
97087
  /**
96972
97088
  * TenantContextV2025Api - factory interface
@@ -96974,13 +97090,12 @@ export declare const TenantContextV2025ApiFp: (configuration?: Configuration) =>
96974
97090
  */
96975
97091
  export declare const TenantContextV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
96976
97092
  /**
96977
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
97093
+ * 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.
96978
97094
  * @summary Retrieve tenant context
96979
- * @param {TenantContextV2025ApiGetTenantContextRequest} requestParameters Request parameters.
96980
97095
  * @param {*} [axiosOptions] Override http request option.
96981
97096
  * @throws {RequiredError}
96982
97097
  */
96983
- getTenantContext(requestParameters?: TenantContextV2025ApiGetTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetTenantContext200ResponseInnerV2025>>;
97098
+ getTenantContext(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetTenantContext200ResponseInnerV2025>>;
96984
97099
  /**
96985
97100
  * 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.
96986
97101
  * @summary Update tenant context
@@ -96990,19 +97105,6 @@ export declare const TenantContextV2025ApiFactory: (configuration?: Configuratio
96990
97105
  */
96991
97106
  patchTenantContext(requestParameters: TenantContextV2025ApiPatchTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
96992
97107
  };
96993
- /**
96994
- * Request parameters for getTenantContext operation in TenantContextV2025Api.
96995
- * @export
96996
- * @interface TenantContextV2025ApiGetTenantContextRequest
96997
- */
96998
- export interface TenantContextV2025ApiGetTenantContextRequest {
96999
- /**
97000
- * Use this header to enable this experimental API.
97001
- * @type {string}
97002
- * @memberof TenantContextV2025ApiGetTenantContext
97003
- */
97004
- readonly xSailPointExperimental?: string;
97005
- }
97006
97108
  /**
97007
97109
  * Request parameters for patchTenantContext operation in TenantContextV2025Api.
97008
97110
  * @export
@@ -97015,12 +97117,6 @@ export interface TenantContextV2025ApiPatchTenantContextRequest {
97015
97117
  * @memberof TenantContextV2025ApiPatchTenantContext
97016
97118
  */
97017
97119
  readonly jsonPatchOperationV2025: JsonPatchOperationV2025;
97018
- /**
97019
- * Use this header to enable this experimental API.
97020
- * @type {string}
97021
- * @memberof TenantContextV2025ApiPatchTenantContext
97022
- */
97023
- readonly xSailPointExperimental?: string;
97024
97120
  }
97025
97121
  /**
97026
97122
  * TenantContextV2025Api - object-oriented interface
@@ -97030,14 +97126,13 @@ export interface TenantContextV2025ApiPatchTenantContextRequest {
97030
97126
  */
97031
97127
  export declare class TenantContextV2025Api extends BaseAPI {
97032
97128
  /**
97033
- * Returns a list of key-value pairs representing the current state of the tenant\'s context.
97129
+ * 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.
97034
97130
  * @summary Retrieve tenant context
97035
- * @param {TenantContextV2025ApiGetTenantContextRequest} requestParameters Request parameters.
97036
97131
  * @param {*} [axiosOptions] Override http request option.
97037
97132
  * @throws {RequiredError}
97038
97133
  * @memberof TenantContextV2025Api
97039
97134
  */
97040
- getTenantContext(requestParameters?: TenantContextV2025ApiGetTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantContext200ResponseInnerV2025[], any>>;
97135
+ getTenantContext(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantContext200ResponseInnerV2025[], any>>;
97041
97136
  /**
97042
97137
  * 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.
97043
97138
  * @summary Update tenant context