sailpoint-api-client 2.0.12 → 2.0.14

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.
Files changed (38) hide show
  1. package/dist/machine_identities/api.d.ts +1220 -44
  2. package/dist/machine_identities/api.js +885 -44
  3. package/dist/machine_identities/api.js.map +1 -1
  4. package/dist/nerm/common.js +2 -2
  5. package/dist/nermv2025/common.js +2 -2
  6. package/dist/workflows/api.d.ts +8 -4
  7. package/dist/workflows/api.js +8 -4
  8. package/dist/workflows/api.js.map +1 -1
  9. package/machine_identities/.openapi-generator/FILES +17 -0
  10. package/machine_identities/api.ts +1659 -44
  11. package/machine_identities/docs/Examples/typescript_code_examples_overlay.yaml +146 -0
  12. package/machine_identities/docs/Methods/MachineIdentitiesApi.md +382 -0
  13. package/machine_identities/docs/Models/ArrayInner.md +18 -0
  14. package/machine_identities/docs/Models/Businessapplicationref.md +23 -0
  15. package/machine_identities/docs/Models/Correlationcondition.md +24 -0
  16. package/machine_identities/docs/Models/Correlationconfig.md +26 -0
  17. package/machine_identities/docs/Models/Correlationrule.md +24 -0
  18. package/machine_identities/docs/Models/Correlationruleaction.md +20 -0
  19. package/machine_identities/docs/Models/Jsonpatchoperation.md +21 -0
  20. package/machine_identities/docs/Models/JsonpatchoperationValue.md +18 -0
  21. package/machine_identities/docs/Models/MachineIdentityV2Risk.md +20 -0
  22. package/machine_identities/docs/Models/MachineIdentityV2Source.md +21 -0
  23. package/machine_identities/docs/Models/Machineidentityownersv2.md +20 -0
  24. package/machine_identities/docs/Models/Machineidentityownersv2Primary.md +21 -0
  25. package/machine_identities/docs/Models/Machineidentityv2.md +42 -0
  26. package/machine_identities/docs/Models/Resourcev2.md +22 -0
  27. package/machine_identities/docs/Models/Sanctionedstatus.md +23 -0
  28. package/machine_identities/docs/Models/Userentitlementv2.md +22 -0
  29. package/machine_identities/docs/Models/Userentitlementv2Source.md +21 -0
  30. package/nerm/README.md +2 -2
  31. package/nerm/common.ts +2 -2
  32. package/nerm/package.json +1 -1
  33. package/nermv2025/README.md +2 -2
  34. package/nermv2025/common.ts +2 -2
  35. package/nermv2025/package.json +1 -1
  36. package/package.json +1 -1
  37. package/workflows/api.ts +8 -4
  38. package/workflows/docs/Methods/WorkflowsApi.md +4 -1
@@ -13,6 +13,13 @@ import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ArrayInner
20
+ */
21
+ export interface ArrayInner {
22
+ }
16
23
  /**
17
24
  *
18
25
  * @export
@@ -69,6 +76,229 @@ export interface Basereferencedto {
69
76
  */
70
77
  'name'?: string;
71
78
  }
79
+ /**
80
+ * Reference to a Business Application associated with a machine identity.
81
+ * @export
82
+ * @interface Businessapplicationref
83
+ */
84
+ export interface Businessapplicationref {
85
+ /**
86
+ * Reference type.
87
+ * @type {string}
88
+ * @memberof Businessapplicationref
89
+ */
90
+ 'type'?: string;
91
+ /**
92
+ * Business Application ID.
93
+ * @type {string}
94
+ * @memberof Businessapplicationref
95
+ */
96
+ 'id'?: string;
97
+ /**
98
+ * Business Application display name.
99
+ * @type {string}
100
+ * @memberof Businessapplicationref
101
+ */
102
+ 'name'?: string | null;
103
+ /**
104
+ *
105
+ * @type {Sanctionedstatus}
106
+ * @memberof Businessapplicationref
107
+ */
108
+ 'sanctionedStatus'?: Sanctionedstatus;
109
+ /**
110
+ * Whether the Business Application reference was manually assigned or automatically correlated.
111
+ * @type {string}
112
+ * @memberof Businessapplicationref
113
+ */
114
+ 'correlationType'?: BusinessapplicationrefCorrelationTypeEnum;
115
+ }
116
+ export declare const BusinessapplicationrefCorrelationTypeEnum: {
117
+ readonly Manual: "MANUAL";
118
+ readonly Automatic: "AUTOMATIC";
119
+ };
120
+ export type BusinessapplicationrefCorrelationTypeEnum = typeof BusinessapplicationrefCorrelationTypeEnum[keyof typeof BusinessapplicationrefCorrelationTypeEnum];
121
+ /**
122
+ * A single condition expression within a correlation rule.
123
+ * @export
124
+ * @interface Correlationcondition
125
+ */
126
+ export interface Correlationcondition {
127
+ /**
128
+ * System-generated unique ID of the condition.
129
+ * @type {string}
130
+ * @memberof Correlationcondition
131
+ */
132
+ 'id'?: string;
133
+ /**
134
+ * The left-hand attribute name of the condition.
135
+ * @type {string}
136
+ * @memberof Correlationcondition
137
+ */
138
+ 'leftAttributeName': string;
139
+ /**
140
+ * The comparison operator applied between the left and right attributes.
141
+ * @type {string}
142
+ * @memberof Correlationcondition
143
+ */
144
+ 'operatorType': string;
145
+ /**
146
+ * The right-hand attribute name. Use an empty string when there is no RHS attribute.
147
+ * @type {string}
148
+ * @memberof Correlationcondition
149
+ */
150
+ 'rightAttributeName': string;
151
+ /**
152
+ * Optional transform applied before comparison.
153
+ * @type {string}
154
+ * @memberof Correlationcondition
155
+ */
156
+ 'transform'?: string | null;
157
+ /**
158
+ * The position of this condition within the rule.
159
+ * @type {number}
160
+ * @memberof Correlationcondition
161
+ */
162
+ 'ordinal': number;
163
+ }
164
+ /**
165
+ * An ownership correlation config scoped to a source resource. Configs are of type OWNER_PRIMARY or OWNER_SECONDARY and drive how machine identity owners are correlated.
166
+ * @export
167
+ * @interface Correlationconfig
168
+ */
169
+ export interface Correlationconfig {
170
+ /**
171
+ * System-generated unique ID of the correlation config.
172
+ * @type {string}
173
+ * @memberof Correlationconfig
174
+ */
175
+ 'id': string;
176
+ /**
177
+ * The source ID this config belongs to.
178
+ * @type {string}
179
+ * @memberof Correlationconfig
180
+ */
181
+ 'sourceId': string;
182
+ /**
183
+ * The source resource identifier for this config scope.
184
+ * @type {string}
185
+ * @memberof Correlationconfig
186
+ */
187
+ 'resourceId': string;
188
+ /**
189
+ * The correlation config type.
190
+ * @type {string}
191
+ * @memberof Correlationconfig
192
+ */
193
+ 'type': CorrelationconfigTypeEnum;
194
+ /**
195
+ * JSON object of config attributes. May include syncPrimaryToMachineAccounts (boolean) on OWNER_PRIMARY only.
196
+ * @type {{ [key: string]: any; }}
197
+ * @memberof Correlationconfig
198
+ */
199
+ 'attributes': {
200
+ [key: string]: any;
201
+ };
202
+ /**
203
+ * The ordered set of correlation rules for this config.
204
+ * @type {Array<Correlationrule>}
205
+ * @memberof Correlationconfig
206
+ */
207
+ 'rules': Array<Correlationrule>;
208
+ /**
209
+ * Creation date of the config.
210
+ * @type {string}
211
+ * @memberof Correlationconfig
212
+ */
213
+ 'created'?: string;
214
+ /**
215
+ * Last modification date of the config.
216
+ * @type {string}
217
+ * @memberof Correlationconfig
218
+ */
219
+ 'modified'?: string;
220
+ }
221
+ export declare const CorrelationconfigTypeEnum: {
222
+ readonly OwnerPrimary: "OWNER_PRIMARY";
223
+ readonly OwnerSecondary: "OWNER_SECONDARY";
224
+ };
225
+ export type CorrelationconfigTypeEnum = typeof CorrelationconfigTypeEnum[keyof typeof CorrelationconfigTypeEnum];
226
+ /**
227
+ * A single correlation rule within an ownership correlation config.
228
+ * @export
229
+ * @interface Correlationrule
230
+ */
231
+ export interface Correlationrule {
232
+ /**
233
+ * Omit for new rules (server mints a UUID). Send only when updating a rule that already exists on this config (merge on PATCH). Unknown ids are rejected.
234
+ * @type {string}
235
+ * @memberof Correlationrule
236
+ */
237
+ 'id'?: string;
238
+ /**
239
+ * The evaluation priority of the rule. Lower values are evaluated first.
240
+ * @type {number}
241
+ * @memberof Correlationrule
242
+ */
243
+ 'priority': number;
244
+ /**
245
+ * Whether this rule is the default rule for the config.
246
+ * @type {boolean}
247
+ * @memberof Correlationrule
248
+ */
249
+ 'defaultRule': boolean;
250
+ /**
251
+ * The rule subject type. When either ruleType or ruleAction.type is GOVERNANCE_GROUP, both must be; ruleType GOVERNANCE_GROUP is allowed only when the parent config type is OWNER_SECONDARY.
252
+ * @type {string}
253
+ * @memberof Correlationrule
254
+ */
255
+ 'ruleType': CorrelationruleRuleTypeEnum;
256
+ /**
257
+ *
258
+ * @type {Correlationruleaction}
259
+ * @memberof Correlationrule
260
+ */
261
+ 'ruleAction': Correlationruleaction;
262
+ /**
263
+ * The conditions that must match for this rule to apply.
264
+ * @type {Array<Correlationcondition>}
265
+ * @memberof Correlationrule
266
+ */
267
+ 'conditionExpressions': Array<Correlationcondition>;
268
+ }
269
+ export declare const CorrelationruleRuleTypeEnum: {
270
+ readonly Identity: "IDENTITY";
271
+ readonly Account: "ACCOUNT";
272
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
273
+ };
274
+ export type CorrelationruleRuleTypeEnum = typeof CorrelationruleRuleTypeEnum[keyof typeof CorrelationruleRuleTypeEnum];
275
+ /**
276
+ * The action applied when a correlation rule matches.
277
+ * @export
278
+ * @interface Correlationruleaction
279
+ */
280
+ export interface Correlationruleaction {
281
+ /**
282
+ * The target owner type resolved by this action.
283
+ * @type {string}
284
+ * @memberof Correlationruleaction
285
+ */
286
+ 'type': CorrelationruleactionTypeEnum;
287
+ /**
288
+ * Action-specific payload.
289
+ * @type {{ [key: string]: any; }}
290
+ * @memberof Correlationruleaction
291
+ */
292
+ 'payload'?: {
293
+ [key: string]: any;
294
+ };
295
+ }
296
+ export declare const CorrelationruleactionTypeEnum: {
297
+ readonly Identity: "IDENTITY";
298
+ readonly Account: "ACCOUNT";
299
+ readonly GovernanceGroup: "GOVERNANCE_GROUP";
300
+ };
301
+ export type CorrelationruleactionTypeEnum = typeof CorrelationruleactionTypeEnum[keyof typeof CorrelationruleactionTypeEnum];
72
302
  /**
73
303
  * An enumeration of the types of DTOs supported within the IdentityNow infrastructure.
74
304
  * @export
@@ -162,6 +392,46 @@ export interface Errorresponsedto {
162
392
  */
163
393
  'causes'?: Array<Errormessagedto>;
164
394
  }
395
+ /**
396
+ * A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
397
+ * @export
398
+ * @interface Jsonpatchoperation
399
+ */
400
+ export interface Jsonpatchoperation {
401
+ /**
402
+ * The operation to be performed
403
+ * @type {string}
404
+ * @memberof Jsonpatchoperation
405
+ */
406
+ 'op': JsonpatchoperationOpEnum;
407
+ /**
408
+ * A string JSON Pointer representing the target path to an element to be affected by the operation
409
+ * @type {string}
410
+ * @memberof Jsonpatchoperation
411
+ */
412
+ 'path': string;
413
+ /**
414
+ *
415
+ * @type {JsonpatchoperationValue}
416
+ * @memberof Jsonpatchoperation
417
+ */
418
+ 'value'?: JsonpatchoperationValue;
419
+ }
420
+ export declare const JsonpatchoperationOpEnum: {
421
+ readonly Add: "add";
422
+ readonly Remove: "remove";
423
+ readonly Replace: "replace";
424
+ readonly Move: "move";
425
+ readonly Copy: "copy";
426
+ readonly Test: "test";
427
+ };
428
+ export type JsonpatchoperationOpEnum = typeof JsonpatchoperationOpEnum[keyof typeof JsonpatchoperationOpEnum];
429
+ /**
430
+ * @type JsonpatchoperationValue
431
+ * The value to be used for the operation, required for \"add\" and \"replace\" operations
432
+ * @export
433
+ */
434
+ export type JsonpatchoperationValue = Array<ArrayInner> | boolean | number | object | string;
165
435
  /**
166
436
  *
167
437
  * @export
@@ -286,6 +556,57 @@ export interface MachineIdentityResponseUserEntitlements {
286
556
  */
287
557
  'source'?: object;
288
558
  }
559
+ /**
560
+ * Risk data for the machine identity; null when no risk data has landed yet.
561
+ * @export
562
+ * @interface MachineIdentityV2Risk
563
+ */
564
+ export interface MachineIdentityV2Risk {
565
+ /**
566
+ * Normalised risk score 0.0-100.0.
567
+ * @type {number}
568
+ * @memberof MachineIdentityV2Risk
569
+ */
570
+ 'score'?: number;
571
+ /**
572
+ * Risk severity bucket.
573
+ * @type {string}
574
+ * @memberof MachineIdentityV2Risk
575
+ */
576
+ 'severity'?: MachineIdentityV2RiskSeverityEnum;
577
+ }
578
+ export declare const MachineIdentityV2RiskSeverityEnum: {
579
+ readonly Critical: "CRITICAL";
580
+ readonly High: "HIGH";
581
+ readonly Medium: "MEDIUM";
582
+ readonly Low: "LOW";
583
+ };
584
+ export type MachineIdentityV2RiskSeverityEnum = typeof MachineIdentityV2RiskSeverityEnum[keyof typeof MachineIdentityV2RiskSeverityEnum];
585
+ /**
586
+ * The source of the machine identity.
587
+ * @export
588
+ * @interface MachineIdentityV2Source
589
+ */
590
+ export interface MachineIdentityV2Source {
591
+ /**
592
+ *
593
+ * @type {Dtotype}
594
+ * @memberof MachineIdentityV2Source
595
+ */
596
+ 'type'?: Dtotype;
597
+ /**
598
+ * ID of the object to which this reference applies
599
+ * @type {string}
600
+ * @memberof MachineIdentityV2Source
601
+ */
602
+ 'id'?: string;
603
+ /**
604
+ * Human-readable display name of the object to which this reference applies
605
+ * @type {string}
606
+ * @memberof MachineIdentityV2Source
607
+ */
608
+ 'name'?: string;
609
+ }
289
610
  /**
290
611
  *
291
612
  * @export
@@ -534,6 +855,50 @@ export interface MachineidentityaggregationresponseTarget {
534
855
  */
535
856
  'name'?: string;
536
857
  }
858
+ /**
859
+ * Owner configuration for a machine identity. A single primary (human IDENTITY) owner plus additional owners that are either up to ten human (IDENTITY) references or exactly one GOVERNANCE_GROUP reference - not both.
860
+ * @export
861
+ * @interface Machineidentityownersv2
862
+ */
863
+ export interface Machineidentityownersv2 {
864
+ /**
865
+ *
866
+ * @type {Machineidentityownersv2Primary}
867
+ * @memberof Machineidentityownersv2
868
+ */
869
+ 'primary'?: Machineidentityownersv2Primary;
870
+ /**
871
+ * Additional owners. Entries are either up to ten human (IDENTITY) references or exactly one GOVERNANCE_GROUP reference - not both. Governance-group owners appear here with type GOVERNANCE_GROUP.
872
+ * @type {Array<Basereferencedto>}
873
+ * @memberof Machineidentityownersv2
874
+ */
875
+ 'secondary'?: Array<Basereferencedto>;
876
+ }
877
+ /**
878
+ * The identity selected as the primary owner.
879
+ * @export
880
+ * @interface Machineidentityownersv2Primary
881
+ */
882
+ export interface Machineidentityownersv2Primary {
883
+ /**
884
+ *
885
+ * @type {Dtotype}
886
+ * @memberof Machineidentityownersv2Primary
887
+ */
888
+ 'type'?: Dtotype;
889
+ /**
890
+ * ID of the object to which this reference applies
891
+ * @type {string}
892
+ * @memberof Machineidentityownersv2Primary
893
+ */
894
+ 'id'?: string;
895
+ /**
896
+ * Human-readable display name of the object to which this reference applies
897
+ * @type {string}
898
+ * @memberof Machineidentityownersv2Primary
899
+ */
900
+ 'name'?: string;
901
+ }
537
902
  /**
538
903
  *
539
904
  * @export
@@ -804,72 +1169,269 @@ export interface MachineidentityuserentitlementresponseSource {
804
1169
  'name'?: string;
805
1170
  }
806
1171
  /**
807
- * Definition of a type of task, used to invoke tasks
1172
+ *
808
1173
  * @export
809
- * @interface Taskdefinitionsummary
1174
+ * @interface Machineidentityv2
810
1175
  */
811
- export interface Taskdefinitionsummary {
1176
+ export interface Machineidentityv2 {
812
1177
  /**
813
- * System-generated unique ID of the TaskDefinition
1178
+ * System-generated unique ID of the Object
814
1179
  * @type {string}
815
- * @memberof Taskdefinitionsummary
1180
+ * @memberof Machineidentityv2
816
1181
  */
817
- 'id': string;
1182
+ 'id'?: string;
818
1183
  /**
819
- * Name of the TaskDefinition
1184
+ * Name of the Object
820
1185
  * @type {string}
821
- * @memberof Taskdefinitionsummary
1186
+ * @memberof Machineidentityv2
822
1187
  */
823
- 'uniqueName': string;
1188
+ 'name': string | null;
824
1189
  /**
825
- * Description of the TaskDefinition
1190
+ * Creation date of the Object
826
1191
  * @type {string}
827
- * @memberof Taskdefinitionsummary
1192
+ * @memberof Machineidentityv2
828
1193
  */
829
- 'description': string | null;
1194
+ 'created'?: string;
830
1195
  /**
831
- * Name of the parent of the TaskDefinition
1196
+ * Last modification date of the Object
832
1197
  * @type {string}
833
- * @memberof Taskdefinitionsummary
1198
+ * @memberof Machineidentityv2
834
1199
  */
835
- 'parentName': string;
1200
+ 'modified'?: string;
836
1201
  /**
837
- * Executor of the TaskDefinition
1202
+ * Description of the machine identity.
838
1203
  * @type {string}
839
- * @memberof Taskdefinitionsummary
1204
+ * @memberof Machineidentityv2
840
1205
  */
841
- 'executor': string | null;
1206
+ 'description'?: string;
842
1207
  /**
843
- * Formal parameters of the TaskDefinition, without values
1208
+ * A map of custom machine identity attributes.
844
1209
  * @type {{ [key: string]: any; }}
845
- * @memberof Taskdefinitionsummary
1210
+ * @memberof Machineidentityv2
846
1211
  */
847
- 'arguments': {
1212
+ 'attributes'?: {
848
1213
  [key: string]: any;
849
1214
  };
850
- }
851
- /**
852
- * Task return details
853
- * @export
854
- * @interface Taskreturndetails
855
- */
856
- export interface Taskreturndetails {
857
1215
  /**
858
- * Display name of the TaskReturnDetails
859
- * @type {string}
860
- * @memberof Taskreturndetails
1216
+ * A map of attributes sourced from the connector during aggregation.
1217
+ * @type {{ [key: string]: any; }}
1218
+ * @memberof Machineidentityv2
861
1219
  */
862
- 'name': string;
1220
+ 'connectorAttributes'?: {
1221
+ [key: string]: any;
1222
+ };
863
1223
  /**
864
- * Attribute the TaskReturnDetails is for
865
- * @type {string}
866
- * @memberof Taskreturndetails
1224
+ * Indicates if the machine identity has been manually edited.
1225
+ * @type {boolean}
1226
+ * @memberof Machineidentityv2
867
1227
  */
868
- 'attributeName': string;
869
- }
870
- /**
871
- * TaskStatus Message
872
- * @export
1228
+ 'manuallyEdited'?: boolean;
1229
+ /**
1230
+ * Indicates if the machine identity has been manually created.
1231
+ * @type {boolean}
1232
+ * @memberof Machineidentityv2
1233
+ */
1234
+ 'manuallyCreated'?: boolean;
1235
+ /**
1236
+ *
1237
+ * @type {Machineidentityownersv2}
1238
+ * @memberof Machineidentityv2
1239
+ */
1240
+ 'owners'?: Machineidentityownersv2;
1241
+ /**
1242
+ * The subtype value associated to the machine identity.
1243
+ * @type {string}
1244
+ * @memberof Machineidentityv2
1245
+ */
1246
+ 'subtype'?: string;
1247
+ /**
1248
+ * The source id associated to the machine identity.
1249
+ * @type {string}
1250
+ * @memberof Machineidentityv2
1251
+ */
1252
+ 'sourceId'?: string;
1253
+ /**
1254
+ * The UUID associated to the machine identity directly aggregated from a source.
1255
+ * @type {string}
1256
+ * @memberof Machineidentityv2
1257
+ */
1258
+ 'uuid'?: string;
1259
+ /**
1260
+ * The native identity associated to the machine identity directly aggregated from a source.
1261
+ * @type {string}
1262
+ * @memberof Machineidentityv2
1263
+ */
1264
+ 'nativeIdentity'?: string;
1265
+ /**
1266
+ * The dataset id associated to the source from which the identity was retrieved.
1267
+ * @type {string}
1268
+ * @memberof Machineidentityv2
1269
+ */
1270
+ 'datasetId'?: string;
1271
+ /**
1272
+ * The environment the machine identity belongs to.
1273
+ * @type {string}
1274
+ * @memberof Machineidentityv2
1275
+ */
1276
+ 'environment'?: string;
1277
+ /**
1278
+ * Indicates whether the machine identity still exists on the source.
1279
+ * @type {string}
1280
+ * @memberof Machineidentityv2
1281
+ */
1282
+ 'existsOnSource'?: string;
1283
+ /**
1284
+ * Operational status read from stored attributes.status; null when absent.
1285
+ * @type {string}
1286
+ * @memberof Machineidentityv2
1287
+ */
1288
+ 'status'?: string | null;
1289
+ /**
1290
+ *
1291
+ * @type {Resourcev2}
1292
+ * @memberof Machineidentityv2
1293
+ */
1294
+ 'resource'?: Resourcev2;
1295
+ /**
1296
+ *
1297
+ * @type {MachineIdentityV2Source}
1298
+ * @memberof Machineidentityv2
1299
+ */
1300
+ 'source'?: MachineIdentityV2Source;
1301
+ /**
1302
+ * The user entitlements associated to the machine identity.
1303
+ * @type {Array<Userentitlementv2>}
1304
+ * @memberof Machineidentityv2
1305
+ */
1306
+ 'userEntitlements'?: Array<Userentitlementv2>;
1307
+ /**
1308
+ * Optional Business Application references associated with this machine identity.
1309
+ * @type {Array<Businessapplicationref>}
1310
+ * @memberof Machineidentityv2
1311
+ */
1312
+ 'businessApplicationRefs'?: Array<Businessapplicationref> | null;
1313
+ /**
1314
+ *
1315
+ * @type {Sanctionedstatus}
1316
+ * @memberof Machineidentityv2
1317
+ */
1318
+ 'effectiveSanctionedStatus'?: Sanctionedstatus;
1319
+ /**
1320
+ *
1321
+ * @type {MachineIdentityV2Risk}
1322
+ * @memberof Machineidentityv2
1323
+ */
1324
+ 'risk'?: MachineIdentityV2Risk;
1325
+ }
1326
+ /**
1327
+ * The source resource a machine identity is derived from.
1328
+ * @export
1329
+ * @interface Resourcev2
1330
+ */
1331
+ export interface Resourcev2 {
1332
+ /**
1333
+ * The source resource identifier.
1334
+ * @type {string}
1335
+ * @memberof Resourcev2
1336
+ */
1337
+ 'id'?: string;
1338
+ /**
1339
+ * The type of the source resource.
1340
+ * @type {string}
1341
+ * @memberof Resourcev2
1342
+ */
1343
+ 'type'?: string;
1344
+ /**
1345
+ * The display name of the source resource.
1346
+ * @type {string}
1347
+ * @memberof Resourcev2
1348
+ */
1349
+ 'name'?: string;
1350
+ /**
1351
+ * The set of features supported by the source resource.
1352
+ * @type {Array<string>}
1353
+ * @memberof Resourcev2
1354
+ */
1355
+ 'features'?: Array<string>;
1356
+ }
1357
+ /**
1358
+ * Sanctioned status for a Business Application or derived machine identity effective status.
1359
+ * @export
1360
+ * @enum {string}
1361
+ */
1362
+ export declare const Sanctionedstatus: {
1363
+ readonly Sanctioned: "SANCTIONED";
1364
+ readonly Unsanctioned: "UNSANCTIONED";
1365
+ readonly Unknown: "UNKNOWN";
1366
+ };
1367
+ export type Sanctionedstatus = typeof Sanctionedstatus[keyof typeof Sanctionedstatus];
1368
+ /**
1369
+ * Definition of a type of task, used to invoke tasks
1370
+ * @export
1371
+ * @interface Taskdefinitionsummary
1372
+ */
1373
+ export interface Taskdefinitionsummary {
1374
+ /**
1375
+ * System-generated unique ID of the TaskDefinition
1376
+ * @type {string}
1377
+ * @memberof Taskdefinitionsummary
1378
+ */
1379
+ 'id': string;
1380
+ /**
1381
+ * Name of the TaskDefinition
1382
+ * @type {string}
1383
+ * @memberof Taskdefinitionsummary
1384
+ */
1385
+ 'uniqueName': string;
1386
+ /**
1387
+ * Description of the TaskDefinition
1388
+ * @type {string}
1389
+ * @memberof Taskdefinitionsummary
1390
+ */
1391
+ 'description': string | null;
1392
+ /**
1393
+ * Name of the parent of the TaskDefinition
1394
+ * @type {string}
1395
+ * @memberof Taskdefinitionsummary
1396
+ */
1397
+ 'parentName': string;
1398
+ /**
1399
+ * Executor of the TaskDefinition
1400
+ * @type {string}
1401
+ * @memberof Taskdefinitionsummary
1402
+ */
1403
+ 'executor': string | null;
1404
+ /**
1405
+ * Formal parameters of the TaskDefinition, without values
1406
+ * @type {{ [key: string]: any; }}
1407
+ * @memberof Taskdefinitionsummary
1408
+ */
1409
+ 'arguments': {
1410
+ [key: string]: any;
1411
+ };
1412
+ }
1413
+ /**
1414
+ * Task return details
1415
+ * @export
1416
+ * @interface Taskreturndetails
1417
+ */
1418
+ export interface Taskreturndetails {
1419
+ /**
1420
+ * Display name of the TaskReturnDetails
1421
+ * @type {string}
1422
+ * @memberof Taskreturndetails
1423
+ */
1424
+ 'name': string;
1425
+ /**
1426
+ * Attribute the TaskReturnDetails is for
1427
+ * @type {string}
1428
+ * @memberof Taskreturndetails
1429
+ */
1430
+ 'attributeName': string;
1431
+ }
1432
+ /**
1433
+ * TaskStatus Message
1434
+ * @export
873
1435
  * @interface Taskstatusmessage
874
1436
  */
875
1437
  export interface Taskstatusmessage {
@@ -911,6 +1473,62 @@ export type TaskstatusmessageTypeEnum = typeof TaskstatusmessageTypeEnum[keyof t
911
1473
  */
912
1474
  export interface TaskstatusmessageParametersInner {
913
1475
  }
1476
+ /**
1477
+ * A user entitlement associated to a machine identity.
1478
+ * @export
1479
+ * @interface Userentitlementv2
1480
+ */
1481
+ export interface Userentitlementv2 {
1482
+ /**
1483
+ * The source ID of the entitlement.
1484
+ * @type {string}
1485
+ * @memberof Userentitlementv2
1486
+ */
1487
+ 'sourceId'?: string;
1488
+ /**
1489
+ * The ID of the entitlement.
1490
+ * @type {string}
1491
+ * @memberof Userentitlementv2
1492
+ */
1493
+ 'entitlementId'?: string;
1494
+ /**
1495
+ * The display name of the entitlement.
1496
+ * @type {string}
1497
+ * @memberof Userentitlementv2
1498
+ */
1499
+ 'displayName'?: string;
1500
+ /**
1501
+ *
1502
+ * @type {Userentitlementv2Source}
1503
+ * @memberof Userentitlementv2
1504
+ */
1505
+ 'source'?: Userentitlementv2Source;
1506
+ }
1507
+ /**
1508
+ * The source of the entitlement.
1509
+ * @export
1510
+ * @interface Userentitlementv2Source
1511
+ */
1512
+ export interface Userentitlementv2Source {
1513
+ /**
1514
+ *
1515
+ * @type {Dtotype}
1516
+ * @memberof Userentitlementv2Source
1517
+ */
1518
+ 'type'?: Dtotype;
1519
+ /**
1520
+ * ID of the object to which this reference applies
1521
+ * @type {string}
1522
+ * @memberof Userentitlementv2Source
1523
+ */
1524
+ 'id'?: string;
1525
+ /**
1526
+ * Human-readable display name of the object to which this reference applies
1527
+ * @type {string}
1528
+ * @memberof Userentitlementv2Source
1529
+ */
1530
+ 'name'?: string;
1531
+ }
914
1532
  /**
915
1533
  * MachineIdentitiesApi - axios parameter creator
916
1534
  * @export
@@ -925,6 +1543,14 @@ export declare const MachineIdentitiesApiAxiosParamCreator: (configuration?: Con
925
1543
  * @throws {RequiredError}
926
1544
  */
927
1545
  createMachineIdentityV1: (machineidentityrequest: Machineidentityrequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1546
+ /**
1547
+ * Use this API to create a machine identity. Additional owners may be either up to ten human (IDENTITY) references or exactly one GOVERNANCE_GROUP reference - not both. The maximum supported length for the description field is 2000 characters.
1548
+ * @summary Create machine identity
1549
+ * @param {Machineidentityv2} machineidentityv2
1550
+ * @param {*} [axiosOptions] Override http request option.
1551
+ * @throws {RequiredError}
1552
+ */
1553
+ createMachineIdentityV2: (machineidentityv2: Machineidentityv2, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
928
1554
  /**
929
1555
  * The API returns successful response if the requested machine identity was deleted.
930
1556
  * @summary Delete machine identity
@@ -934,6 +1560,24 @@ export declare const MachineIdentitiesApiAxiosParamCreator: (configuration?: Con
934
1560
  * @throws {RequiredError}
935
1561
  */
936
1562
  deleteMachineIdentityV1: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1563
+ /**
1564
+ * The API returns a successful response if the requested machine identity was deleted.
1565
+ * @summary Delete machine identity
1566
+ * @param {string} id Machine Identity ID.
1567
+ * @param {*} [axiosOptions] Override http request option.
1568
+ * @throws {RequiredError}
1569
+ */
1570
+ deleteMachineIdentityV2: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1571
+ /**
1572
+ * Deletes the ownership correlation config with the specified ID for the given source resource.
1573
+ * @summary Delete ownership correlation config
1574
+ * @param {string} sourceId The Source ID.
1575
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1576
+ * @param {string} configId The correlation config ID.
1577
+ * @param {*} [axiosOptions] Override http request option.
1578
+ * @throws {RequiredError}
1579
+ */
1580
+ deleteOwnershipCorrelationConfigV1: (sourceId: string, resourceId: string, configId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
937
1581
  /**
938
1582
  * This API returns a single machine identity using the Machine Identity ID.
939
1583
  * @summary Get machine identity details
@@ -943,6 +1587,24 @@ export declare const MachineIdentitiesApiAxiosParamCreator: (configuration?: Con
943
1587
  * @throws {RequiredError}
944
1588
  */
945
1589
  getMachineIdentityV1: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1590
+ /**
1591
+ * This API returns a single machine identity using the Machine Identity ID.
1592
+ * @summary Get machine identity details
1593
+ * @param {string} id Machine Identity ID.
1594
+ * @param {*} [axiosOptions] Override http request option.
1595
+ * @throws {RequiredError}
1596
+ */
1597
+ getMachineIdentityV2: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1598
+ /**
1599
+ * This end-point retrieves a single ownership correlation config by ID for the specified source resource.
1600
+ * @summary Get ownership correlation config
1601
+ * @param {string} sourceId The Source ID.
1602
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1603
+ * @param {string} configId The correlation config ID.
1604
+ * @param {*} [axiosOptions] Override http request option.
1605
+ * @throws {RequiredError}
1606
+ */
1607
+ getOwnershipCorrelationConfigV1: (sourceId: string, resourceId: string, configId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
946
1608
  /**
947
1609
  * This API returns a list of machine identities.
948
1610
  * @summary List machine identities
@@ -956,6 +1618,18 @@ export declare const MachineIdentitiesApiAxiosParamCreator: (configuration?: Con
956
1618
  * @throws {RequiredError}
957
1619
  */
958
1620
  listMachineIdentitiesV1: (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1621
+ /**
1622
+ * This API returns a list of machine identities.
1623
+ * @summary List machine identities
1624
+ * @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, in, sw* **displayName**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryGovernanceGroup.id**: *eq, in* **owners.secondaryGovernanceGroup.name**: *eq, in, isnull, pr* **source.id**: *eq, in* **source.name**: *eq, in, sw* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw* **risk.severity**: *eq, in*
1625
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
1626
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1627
+ * @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.
1628
+ * @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.
1629
+ * @param {*} [axiosOptions] Override http request option.
1630
+ * @throws {RequiredError}
1631
+ */
1632
+ listMachineIdentitiesV2: (filters?: string, sorters?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
959
1633
  /**
960
1634
  * This API returns a list of user entitlements associated with machine identities.
961
1635
  * @summary List machine identity\'s user entitlements
@@ -969,6 +1643,30 @@ export declare const MachineIdentitiesApiAxiosParamCreator: (configuration?: Con
969
1643
  * @throws {RequiredError}
970
1644
  */
971
1645
  listMachineIdentityUserEntitlementsV1: (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1646
+ /**
1647
+ * Returns the OWNER_PRIMARY and OWNER_SECONDARY correlation configs for the specified source resource, creating default rows if they are missing. Use the optional type query parameter to return a single matching config.
1648
+ * @summary List ownership correlation configs
1649
+ * @param {string} sourceId The Source ID.
1650
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1651
+ * @param {ListOwnershipCorrelationConfigsV1TypeEnum} [type] When set, filters to the given config type.
1652
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1653
+ * @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.
1654
+ * @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.
1655
+ * @param {*} [axiosOptions] Override http request option.
1656
+ * @throws {RequiredError}
1657
+ */
1658
+ listOwnershipCorrelationConfigsV1: (sourceId: string, resourceId: string, type?: ListOwnershipCorrelationConfigsV1TypeEnum, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1659
+ /**
1660
+ * Selectively updates an ownership correlation config using an RFC 6902 JSONPatch payload. Only replace on /attributes (full object) and replace on /rules (full array; merge by stable rule id, remove rules omitted from the array) are allowed.
1661
+ * @summary Patch ownership correlation config
1662
+ * @param {string} sourceId The Source ID.
1663
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1664
+ * @param {string} configId The correlation config ID.
1665
+ * @param {Array<Jsonpatchoperation>} jsonpatchoperation The JSONPatch payload used to update the correlation config.
1666
+ * @param {*} [axiosOptions] Override http request option.
1667
+ * @throws {RequiredError}
1668
+ */
1669
+ patchOwnershipCorrelationConfigV1: (sourceId: string, resourceId: string, configId: string, jsonpatchoperation: Array<Jsonpatchoperation>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
972
1670
  /**
973
1671
  * Starts a machine identity (AI Agents) aggregation on the specified source.
974
1672
  * @summary Start machine identity aggregation
@@ -989,6 +1687,15 @@ export declare const MachineIdentitiesApiAxiosParamCreator: (configuration?: Con
989
1687
  * @throws {RequiredError}
990
1688
  */
991
1689
  updateMachineIdentityV1: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1690
+ /**
1691
+ * Use this API to selectively update machine identity details using a JSONPatch payload. Patchable fields include **name**, **description**, **nativeIdentity**, **subtype**, **environment**, **attributes**, **owners**, **userEntitlements**, and **manuallyEdited** only.
1692
+ * @summary Partial update of machine identity
1693
+ * @param {string} id Machine Identity ID.
1694
+ * @param {Array<Jsonpatchoperation>} jsonpatchoperation A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
1695
+ * @param {*} [axiosOptions] Override http request option.
1696
+ * @throws {RequiredError}
1697
+ */
1698
+ updateMachineIdentityV2: (id: string, jsonpatchoperation: Array<Jsonpatchoperation>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
992
1699
  };
993
1700
  /**
994
1701
  * MachineIdentitiesApi - functional programming interface
@@ -1004,6 +1711,14 @@ export declare const MachineIdentitiesApiFp: (configuration?: Configuration) =>
1004
1711
  * @throws {RequiredError}
1005
1712
  */
1006
1713
  createMachineIdentityV1(machineidentityrequest: Machineidentityrequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityresponse>>;
1714
+ /**
1715
+ * Use this API to create a machine identity. Additional owners may be either up to ten human (IDENTITY) references or exactly one GOVERNANCE_GROUP reference - not both. The maximum supported length for the description field is 2000 characters.
1716
+ * @summary Create machine identity
1717
+ * @param {Machineidentityv2} machineidentityv2
1718
+ * @param {*} [axiosOptions] Override http request option.
1719
+ * @throws {RequiredError}
1720
+ */
1721
+ createMachineIdentityV2(machineidentityv2: Machineidentityv2, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityv2>>;
1007
1722
  /**
1008
1723
  * The API returns successful response if the requested machine identity was deleted.
1009
1724
  * @summary Delete machine identity
@@ -1013,6 +1728,24 @@ export declare const MachineIdentitiesApiFp: (configuration?: Configuration) =>
1013
1728
  * @throws {RequiredError}
1014
1729
  */
1015
1730
  deleteMachineIdentityV1(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1731
+ /**
1732
+ * The API returns a successful response if the requested machine identity was deleted.
1733
+ * @summary Delete machine identity
1734
+ * @param {string} id Machine Identity ID.
1735
+ * @param {*} [axiosOptions] Override http request option.
1736
+ * @throws {RequiredError}
1737
+ */
1738
+ deleteMachineIdentityV2(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1739
+ /**
1740
+ * Deletes the ownership correlation config with the specified ID for the given source resource.
1741
+ * @summary Delete ownership correlation config
1742
+ * @param {string} sourceId The Source ID.
1743
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1744
+ * @param {string} configId The correlation config ID.
1745
+ * @param {*} [axiosOptions] Override http request option.
1746
+ * @throws {RequiredError}
1747
+ */
1748
+ deleteOwnershipCorrelationConfigV1(sourceId: string, resourceId: string, configId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1016
1749
  /**
1017
1750
  * This API returns a single machine identity using the Machine Identity ID.
1018
1751
  * @summary Get machine identity details
@@ -1021,20 +1754,50 @@ export declare const MachineIdentitiesApiFp: (configuration?: Configuration) =>
1021
1754
  * @param {*} [axiosOptions] Override http request option.
1022
1755
  * @throws {RequiredError}
1023
1756
  */
1024
- getMachineIdentityV1(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityresponse>>;
1757
+ getMachineIdentityV1(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityresponse>>;
1758
+ /**
1759
+ * This API returns a single machine identity using the Machine Identity ID.
1760
+ * @summary Get machine identity details
1761
+ * @param {string} id Machine Identity ID.
1762
+ * @param {*} [axiosOptions] Override http request option.
1763
+ * @throws {RequiredError}
1764
+ */
1765
+ getMachineIdentityV2(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityv2>>;
1766
+ /**
1767
+ * This end-point retrieves a single ownership correlation config by ID for the specified source resource.
1768
+ * @summary Get ownership correlation config
1769
+ * @param {string} sourceId The Source ID.
1770
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1771
+ * @param {string} configId The correlation config ID.
1772
+ * @param {*} [axiosOptions] Override http request option.
1773
+ * @throws {RequiredError}
1774
+ */
1775
+ getOwnershipCorrelationConfigV1(sourceId: string, resourceId: string, configId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Correlationconfig>>;
1776
+ /**
1777
+ * This API returns a list of machine identities.
1778
+ * @summary List machine identities
1779
+ * @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, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **source.name**: *eq, in, sw* **source.id**: *eq, in* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw*
1780
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
1781
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
1782
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1783
+ * @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.
1784
+ * @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.
1785
+ * @param {*} [axiosOptions] Override http request option.
1786
+ * @throws {RequiredError}
1787
+ */
1788
+ listMachineIdentitiesV1(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Machineidentityresponse>>>;
1025
1789
  /**
1026
1790
  * This API returns a list of machine identities.
1027
1791
  * @summary List machine identities
1028
- * @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, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **source.name**: *eq, in, sw* **source.id**: *eq, in* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw*
1792
+ * @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, in, sw* **displayName**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryGovernanceGroup.id**: *eq, in* **owners.secondaryGovernanceGroup.name**: *eq, in, isnull, pr* **source.id**: *eq, in* **source.name**: *eq, in, sw* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw* **risk.severity**: *eq, in*
1029
1793
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
1030
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
1031
1794
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1032
1795
  * @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.
1033
1796
  * @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.
1034
1797
  * @param {*} [axiosOptions] Override http request option.
1035
1798
  * @throws {RequiredError}
1036
1799
  */
1037
- listMachineIdentitiesV1(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Machineidentityresponse>>>;
1800
+ listMachineIdentitiesV2(filters?: string, sorters?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Machineidentityv2>>>;
1038
1801
  /**
1039
1802
  * This API returns a list of user entitlements associated with machine identities.
1040
1803
  * @summary List machine identity\'s user entitlements
@@ -1048,6 +1811,30 @@ export declare const MachineIdentitiesApiFp: (configuration?: Configuration) =>
1048
1811
  * @throws {RequiredError}
1049
1812
  */
1050
1813
  listMachineIdentityUserEntitlementsV1(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Machineidentityuserentitlementresponse>>>;
1814
+ /**
1815
+ * Returns the OWNER_PRIMARY and OWNER_SECONDARY correlation configs for the specified source resource, creating default rows if they are missing. Use the optional type query parameter to return a single matching config.
1816
+ * @summary List ownership correlation configs
1817
+ * @param {string} sourceId The Source ID.
1818
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1819
+ * @param {ListOwnershipCorrelationConfigsV1TypeEnum} [type] When set, filters to the given config type.
1820
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
1821
+ * @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.
1822
+ * @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.
1823
+ * @param {*} [axiosOptions] Override http request option.
1824
+ * @throws {RequiredError}
1825
+ */
1826
+ listOwnershipCorrelationConfigsV1(sourceId: string, resourceId: string, type?: ListOwnershipCorrelationConfigsV1TypeEnum, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Correlationconfig>>>;
1827
+ /**
1828
+ * Selectively updates an ownership correlation config using an RFC 6902 JSONPatch payload. Only replace on /attributes (full object) and replace on /rules (full array; merge by stable rule id, remove rules omitted from the array) are allowed.
1829
+ * @summary Patch ownership correlation config
1830
+ * @param {string} sourceId The Source ID.
1831
+ * @param {string} resourceId The source resource ID (for example, account or aws:iam-role).
1832
+ * @param {string} configId The correlation config ID.
1833
+ * @param {Array<Jsonpatchoperation>} jsonpatchoperation The JSONPatch payload used to update the correlation config.
1834
+ * @param {*} [axiosOptions] Override http request option.
1835
+ * @throws {RequiredError}
1836
+ */
1837
+ patchOwnershipCorrelationConfigV1(sourceId: string, resourceId: string, configId: string, jsonpatchoperation: Array<Jsonpatchoperation>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Correlationconfig>>;
1051
1838
  /**
1052
1839
  * Starts a machine identity (AI Agents) aggregation on the specified source.
1053
1840
  * @summary Start machine identity aggregation
@@ -1068,6 +1855,15 @@ export declare const MachineIdentitiesApiFp: (configuration?: Configuration) =>
1068
1855
  * @throws {RequiredError}
1069
1856
  */
1070
1857
  updateMachineIdentityV1(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityresponse>>;
1858
+ /**
1859
+ * Use this API to selectively update machine identity details using a JSONPatch payload. Patchable fields include **name**, **description**, **nativeIdentity**, **subtype**, **environment**, **attributes**, **owners**, **userEntitlements**, and **manuallyEdited** only.
1860
+ * @summary Partial update of machine identity
1861
+ * @param {string} id Machine Identity ID.
1862
+ * @param {Array<Jsonpatchoperation>} jsonpatchoperation A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
1863
+ * @param {*} [axiosOptions] Override http request option.
1864
+ * @throws {RequiredError}
1865
+ */
1866
+ updateMachineIdentityV2(id: string, jsonpatchoperation: Array<Jsonpatchoperation>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Machineidentityv2>>;
1071
1867
  };
1072
1868
  /**
1073
1869
  * MachineIdentitiesApi - factory interface
@@ -1082,6 +1878,14 @@ export declare const MachineIdentitiesApiFactory: (configuration?: Configuration
1082
1878
  * @throws {RequiredError}
1083
1879
  */
1084
1880
  createMachineIdentityV1(requestParameters: MachineIdentitiesApiCreateMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Machineidentityresponse>;
1881
+ /**
1882
+ * Use this API to create a machine identity. Additional owners may be either up to ten human (IDENTITY) references or exactly one GOVERNANCE_GROUP reference - not both. The maximum supported length for the description field is 2000 characters.
1883
+ * @summary Create machine identity
1884
+ * @param {MachineIdentitiesApiCreateMachineIdentityV2Request} requestParameters Request parameters.
1885
+ * @param {*} [axiosOptions] Override http request option.
1886
+ * @throws {RequiredError}
1887
+ */
1888
+ createMachineIdentityV2(requestParameters: MachineIdentitiesApiCreateMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Machineidentityv2>;
1085
1889
  /**
1086
1890
  * The API returns successful response if the requested machine identity was deleted.
1087
1891
  * @summary Delete machine identity
@@ -1090,6 +1894,22 @@ export declare const MachineIdentitiesApiFactory: (configuration?: Configuration
1090
1894
  * @throws {RequiredError}
1091
1895
  */
1092
1896
  deleteMachineIdentityV1(requestParameters: MachineIdentitiesApiDeleteMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
1897
+ /**
1898
+ * The API returns a successful response if the requested machine identity was deleted.
1899
+ * @summary Delete machine identity
1900
+ * @param {MachineIdentitiesApiDeleteMachineIdentityV2Request} requestParameters Request parameters.
1901
+ * @param {*} [axiosOptions] Override http request option.
1902
+ * @throws {RequiredError}
1903
+ */
1904
+ deleteMachineIdentityV2(requestParameters: MachineIdentitiesApiDeleteMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
1905
+ /**
1906
+ * Deletes the ownership correlation config with the specified ID for the given source resource.
1907
+ * @summary Delete ownership correlation config
1908
+ * @param {MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1Request} requestParameters Request parameters.
1909
+ * @param {*} [axiosOptions] Override http request option.
1910
+ * @throws {RequiredError}
1911
+ */
1912
+ deleteOwnershipCorrelationConfigV1(requestParameters: MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
1093
1913
  /**
1094
1914
  * This API returns a single machine identity using the Machine Identity ID.
1095
1915
  * @summary Get machine identity details
@@ -1098,6 +1918,22 @@ export declare const MachineIdentitiesApiFactory: (configuration?: Configuration
1098
1918
  * @throws {RequiredError}
1099
1919
  */
1100
1920
  getMachineIdentityV1(requestParameters: MachineIdentitiesApiGetMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Machineidentityresponse>;
1921
+ /**
1922
+ * This API returns a single machine identity using the Machine Identity ID.
1923
+ * @summary Get machine identity details
1924
+ * @param {MachineIdentitiesApiGetMachineIdentityV2Request} requestParameters Request parameters.
1925
+ * @param {*} [axiosOptions] Override http request option.
1926
+ * @throws {RequiredError}
1927
+ */
1928
+ getMachineIdentityV2(requestParameters: MachineIdentitiesApiGetMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Machineidentityv2>;
1929
+ /**
1930
+ * This end-point retrieves a single ownership correlation config by ID for the specified source resource.
1931
+ * @summary Get ownership correlation config
1932
+ * @param {MachineIdentitiesApiGetOwnershipCorrelationConfigV1Request} requestParameters Request parameters.
1933
+ * @param {*} [axiosOptions] Override http request option.
1934
+ * @throws {RequiredError}
1935
+ */
1936
+ getOwnershipCorrelationConfigV1(requestParameters: MachineIdentitiesApiGetOwnershipCorrelationConfigV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Correlationconfig>;
1101
1937
  /**
1102
1938
  * This API returns a list of machine identities.
1103
1939
  * @summary List machine identities
@@ -1106,6 +1942,14 @@ export declare const MachineIdentitiesApiFactory: (configuration?: Configuration
1106
1942
  * @throws {RequiredError}
1107
1943
  */
1108
1944
  listMachineIdentitiesV1(requestParameters?: MachineIdentitiesApiListMachineIdentitiesV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Machineidentityresponse>>;
1945
+ /**
1946
+ * This API returns a list of machine identities.
1947
+ * @summary List machine identities
1948
+ * @param {MachineIdentitiesApiListMachineIdentitiesV2Request} requestParameters Request parameters.
1949
+ * @param {*} [axiosOptions] Override http request option.
1950
+ * @throws {RequiredError}
1951
+ */
1952
+ listMachineIdentitiesV2(requestParameters?: MachineIdentitiesApiListMachineIdentitiesV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Machineidentityv2>>;
1109
1953
  /**
1110
1954
  * This API returns a list of user entitlements associated with machine identities.
1111
1955
  * @summary List machine identity\'s user entitlements
@@ -1114,6 +1958,22 @@ export declare const MachineIdentitiesApiFactory: (configuration?: Configuration
1114
1958
  * @throws {RequiredError}
1115
1959
  */
1116
1960
  listMachineIdentityUserEntitlementsV1(requestParameters?: MachineIdentitiesApiListMachineIdentityUserEntitlementsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Machineidentityuserentitlementresponse>>;
1961
+ /**
1962
+ * Returns the OWNER_PRIMARY and OWNER_SECONDARY correlation configs for the specified source resource, creating default rows if they are missing. Use the optional type query parameter to return a single matching config.
1963
+ * @summary List ownership correlation configs
1964
+ * @param {MachineIdentitiesApiListOwnershipCorrelationConfigsV1Request} requestParameters Request parameters.
1965
+ * @param {*} [axiosOptions] Override http request option.
1966
+ * @throws {RequiredError}
1967
+ */
1968
+ listOwnershipCorrelationConfigsV1(requestParameters: MachineIdentitiesApiListOwnershipCorrelationConfigsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Correlationconfig>>;
1969
+ /**
1970
+ * Selectively updates an ownership correlation config using an RFC 6902 JSONPatch payload. Only replace on /attributes (full object) and replace on /rules (full array; merge by stable rule id, remove rules omitted from the array) are allowed.
1971
+ * @summary Patch ownership correlation config
1972
+ * @param {MachineIdentitiesApiPatchOwnershipCorrelationConfigV1Request} requestParameters Request parameters.
1973
+ * @param {*} [axiosOptions] Override http request option.
1974
+ * @throws {RequiredError}
1975
+ */
1976
+ patchOwnershipCorrelationConfigV1(requestParameters: MachineIdentitiesApiPatchOwnershipCorrelationConfigV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Correlationconfig>;
1117
1977
  /**
1118
1978
  * Starts a machine identity (AI Agents) aggregation on the specified source.
1119
1979
  * @summary Start machine identity aggregation
@@ -1130,6 +1990,14 @@ export declare const MachineIdentitiesApiFactory: (configuration?: Configuration
1130
1990
  * @throws {RequiredError}
1131
1991
  */
1132
1992
  updateMachineIdentityV1(requestParameters: MachineIdentitiesApiUpdateMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Machineidentityresponse>;
1993
+ /**
1994
+ * Use this API to selectively update machine identity details using a JSONPatch payload. Patchable fields include **name**, **description**, **nativeIdentity**, **subtype**, **environment**, **attributes**, **owners**, **userEntitlements**, and **manuallyEdited** only.
1995
+ * @summary Partial update of machine identity
1996
+ * @param {MachineIdentitiesApiUpdateMachineIdentityV2Request} requestParameters Request parameters.
1997
+ * @param {*} [axiosOptions] Override http request option.
1998
+ * @throws {RequiredError}
1999
+ */
2000
+ updateMachineIdentityV2(requestParameters: MachineIdentitiesApiUpdateMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Machineidentityv2>;
1133
2001
  };
1134
2002
  /**
1135
2003
  * Request parameters for createMachineIdentityV1 operation in MachineIdentitiesApi.
@@ -1150,6 +2018,19 @@ export interface MachineIdentitiesApiCreateMachineIdentityV1Request {
1150
2018
  */
1151
2019
  readonly xSailPointExperimental?: string;
1152
2020
  }
2021
+ /**
2022
+ * Request parameters for createMachineIdentityV2 operation in MachineIdentitiesApi.
2023
+ * @export
2024
+ * @interface MachineIdentitiesApiCreateMachineIdentityV2Request
2025
+ */
2026
+ export interface MachineIdentitiesApiCreateMachineIdentityV2Request {
2027
+ /**
2028
+ *
2029
+ * @type {Machineidentityv2}
2030
+ * @memberof MachineIdentitiesApiCreateMachineIdentityV2
2031
+ */
2032
+ readonly machineidentityv2: Machineidentityv2;
2033
+ }
1153
2034
  /**
1154
2035
  * Request parameters for deleteMachineIdentityV1 operation in MachineIdentitiesApi.
1155
2036
  * @export
@@ -1169,6 +2050,44 @@ export interface MachineIdentitiesApiDeleteMachineIdentityV1Request {
1169
2050
  */
1170
2051
  readonly xSailPointExperimental?: string;
1171
2052
  }
2053
+ /**
2054
+ * Request parameters for deleteMachineIdentityV2 operation in MachineIdentitiesApi.
2055
+ * @export
2056
+ * @interface MachineIdentitiesApiDeleteMachineIdentityV2Request
2057
+ */
2058
+ export interface MachineIdentitiesApiDeleteMachineIdentityV2Request {
2059
+ /**
2060
+ * Machine Identity ID.
2061
+ * @type {string}
2062
+ * @memberof MachineIdentitiesApiDeleteMachineIdentityV2
2063
+ */
2064
+ readonly id: string;
2065
+ }
2066
+ /**
2067
+ * Request parameters for deleteOwnershipCorrelationConfigV1 operation in MachineIdentitiesApi.
2068
+ * @export
2069
+ * @interface MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1Request
2070
+ */
2071
+ export interface MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1Request {
2072
+ /**
2073
+ * The Source ID.
2074
+ * @type {string}
2075
+ * @memberof MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1
2076
+ */
2077
+ readonly sourceId: string;
2078
+ /**
2079
+ * The source resource ID (for example, account or aws:iam-role).
2080
+ * @type {string}
2081
+ * @memberof MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1
2082
+ */
2083
+ readonly resourceId: string;
2084
+ /**
2085
+ * The correlation config ID.
2086
+ * @type {string}
2087
+ * @memberof MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1
2088
+ */
2089
+ readonly configId: string;
2090
+ }
1172
2091
  /**
1173
2092
  * Request parameters for getMachineIdentityV1 operation in MachineIdentitiesApi.
1174
2093
  * @export
@@ -1188,6 +2107,44 @@ export interface MachineIdentitiesApiGetMachineIdentityV1Request {
1188
2107
  */
1189
2108
  readonly xSailPointExperimental?: string;
1190
2109
  }
2110
+ /**
2111
+ * Request parameters for getMachineIdentityV2 operation in MachineIdentitiesApi.
2112
+ * @export
2113
+ * @interface MachineIdentitiesApiGetMachineIdentityV2Request
2114
+ */
2115
+ export interface MachineIdentitiesApiGetMachineIdentityV2Request {
2116
+ /**
2117
+ * Machine Identity ID.
2118
+ * @type {string}
2119
+ * @memberof MachineIdentitiesApiGetMachineIdentityV2
2120
+ */
2121
+ readonly id: string;
2122
+ }
2123
+ /**
2124
+ * Request parameters for getOwnershipCorrelationConfigV1 operation in MachineIdentitiesApi.
2125
+ * @export
2126
+ * @interface MachineIdentitiesApiGetOwnershipCorrelationConfigV1Request
2127
+ */
2128
+ export interface MachineIdentitiesApiGetOwnershipCorrelationConfigV1Request {
2129
+ /**
2130
+ * The Source ID.
2131
+ * @type {string}
2132
+ * @memberof MachineIdentitiesApiGetOwnershipCorrelationConfigV1
2133
+ */
2134
+ readonly sourceId: string;
2135
+ /**
2136
+ * The source resource ID (for example, account or aws:iam-role).
2137
+ * @type {string}
2138
+ * @memberof MachineIdentitiesApiGetOwnershipCorrelationConfigV1
2139
+ */
2140
+ readonly resourceId: string;
2141
+ /**
2142
+ * The correlation config ID.
2143
+ * @type {string}
2144
+ * @memberof MachineIdentitiesApiGetOwnershipCorrelationConfigV1
2145
+ */
2146
+ readonly configId: string;
2147
+ }
1191
2148
  /**
1192
2149
  * Request parameters for listMachineIdentitiesV1 operation in MachineIdentitiesApi.
1193
2150
  * @export
@@ -1231,6 +2188,43 @@ export interface MachineIdentitiesApiListMachineIdentitiesV1Request {
1231
2188
  */
1232
2189
  readonly offset?: number;
1233
2190
  }
2191
+ /**
2192
+ * Request parameters for listMachineIdentitiesV2 operation in MachineIdentitiesApi.
2193
+ * @export
2194
+ * @interface MachineIdentitiesApiListMachineIdentitiesV2Request
2195
+ */
2196
+ export interface MachineIdentitiesApiListMachineIdentitiesV2Request {
2197
+ /**
2198
+ * 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, in, sw* **displayName**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryGovernanceGroup.id**: *eq, in* **owners.secondaryGovernanceGroup.name**: *eq, in, isnull, pr* **source.id**: *eq, in* **source.name**: *eq, in, sw* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw* **risk.severity**: *eq, in*
2199
+ * @type {string}
2200
+ * @memberof MachineIdentitiesApiListMachineIdentitiesV2
2201
+ */
2202
+ readonly filters?: string;
2203
+ /**
2204
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
2205
+ * @type {string}
2206
+ * @memberof MachineIdentitiesApiListMachineIdentitiesV2
2207
+ */
2208
+ readonly sorters?: string;
2209
+ /**
2210
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
2211
+ * @type {boolean}
2212
+ * @memberof MachineIdentitiesApiListMachineIdentitiesV2
2213
+ */
2214
+ readonly count?: boolean;
2215
+ /**
2216
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
2217
+ * @type {number}
2218
+ * @memberof MachineIdentitiesApiListMachineIdentitiesV2
2219
+ */
2220
+ readonly limit?: number;
2221
+ /**
2222
+ * 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.
2223
+ * @type {number}
2224
+ * @memberof MachineIdentitiesApiListMachineIdentitiesV2
2225
+ */
2226
+ readonly offset?: number;
2227
+ }
1234
2228
  /**
1235
2229
  * Request parameters for listMachineIdentityUserEntitlementsV1 operation in MachineIdentitiesApi.
1236
2230
  * @export
@@ -1274,6 +2268,80 @@ export interface MachineIdentitiesApiListMachineIdentityUserEntitlementsV1Reques
1274
2268
  */
1275
2269
  readonly offset?: number;
1276
2270
  }
2271
+ /**
2272
+ * Request parameters for listOwnershipCorrelationConfigsV1 operation in MachineIdentitiesApi.
2273
+ * @export
2274
+ * @interface MachineIdentitiesApiListOwnershipCorrelationConfigsV1Request
2275
+ */
2276
+ export interface MachineIdentitiesApiListOwnershipCorrelationConfigsV1Request {
2277
+ /**
2278
+ * The Source ID.
2279
+ * @type {string}
2280
+ * @memberof MachineIdentitiesApiListOwnershipCorrelationConfigsV1
2281
+ */
2282
+ readonly sourceId: string;
2283
+ /**
2284
+ * The source resource ID (for example, account or aws:iam-role).
2285
+ * @type {string}
2286
+ * @memberof MachineIdentitiesApiListOwnershipCorrelationConfigsV1
2287
+ */
2288
+ readonly resourceId: string;
2289
+ /**
2290
+ * When set, filters to the given config type.
2291
+ * @type {'OWNER_PRIMARY' | 'OWNER_SECONDARY'}
2292
+ * @memberof MachineIdentitiesApiListOwnershipCorrelationConfigsV1
2293
+ */
2294
+ readonly type?: ListOwnershipCorrelationConfigsV1TypeEnum;
2295
+ /**
2296
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
2297
+ * @type {boolean}
2298
+ * @memberof MachineIdentitiesApiListOwnershipCorrelationConfigsV1
2299
+ */
2300
+ readonly count?: boolean;
2301
+ /**
2302
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
2303
+ * @type {number}
2304
+ * @memberof MachineIdentitiesApiListOwnershipCorrelationConfigsV1
2305
+ */
2306
+ readonly limit?: number;
2307
+ /**
2308
+ * 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.
2309
+ * @type {number}
2310
+ * @memberof MachineIdentitiesApiListOwnershipCorrelationConfigsV1
2311
+ */
2312
+ readonly offset?: number;
2313
+ }
2314
+ /**
2315
+ * Request parameters for patchOwnershipCorrelationConfigV1 operation in MachineIdentitiesApi.
2316
+ * @export
2317
+ * @interface MachineIdentitiesApiPatchOwnershipCorrelationConfigV1Request
2318
+ */
2319
+ export interface MachineIdentitiesApiPatchOwnershipCorrelationConfigV1Request {
2320
+ /**
2321
+ * The Source ID.
2322
+ * @type {string}
2323
+ * @memberof MachineIdentitiesApiPatchOwnershipCorrelationConfigV1
2324
+ */
2325
+ readonly sourceId: string;
2326
+ /**
2327
+ * The source resource ID (for example, account or aws:iam-role).
2328
+ * @type {string}
2329
+ * @memberof MachineIdentitiesApiPatchOwnershipCorrelationConfigV1
2330
+ */
2331
+ readonly resourceId: string;
2332
+ /**
2333
+ * The correlation config ID.
2334
+ * @type {string}
2335
+ * @memberof MachineIdentitiesApiPatchOwnershipCorrelationConfigV1
2336
+ */
2337
+ readonly configId: string;
2338
+ /**
2339
+ * The JSONPatch payload used to update the correlation config.
2340
+ * @type {Array<Jsonpatchoperation>}
2341
+ * @memberof MachineIdentitiesApiPatchOwnershipCorrelationConfigV1
2342
+ */
2343
+ readonly jsonpatchoperation: Array<Jsonpatchoperation>;
2344
+ }
1277
2345
  /**
1278
2346
  * Request parameters for startMachineIdentityAggregationV1 operation in MachineIdentitiesApi.
1279
2347
  * @export
@@ -1324,6 +2392,25 @@ export interface MachineIdentitiesApiUpdateMachineIdentityV1Request {
1324
2392
  */
1325
2393
  readonly xSailPointExperimental?: string;
1326
2394
  }
2395
+ /**
2396
+ * Request parameters for updateMachineIdentityV2 operation in MachineIdentitiesApi.
2397
+ * @export
2398
+ * @interface MachineIdentitiesApiUpdateMachineIdentityV2Request
2399
+ */
2400
+ export interface MachineIdentitiesApiUpdateMachineIdentityV2Request {
2401
+ /**
2402
+ * Machine Identity ID.
2403
+ * @type {string}
2404
+ * @memberof MachineIdentitiesApiUpdateMachineIdentityV2
2405
+ */
2406
+ readonly id: string;
2407
+ /**
2408
+ * A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
2409
+ * @type {Array<Jsonpatchoperation>}
2410
+ * @memberof MachineIdentitiesApiUpdateMachineIdentityV2
2411
+ */
2412
+ readonly jsonpatchoperation: Array<Jsonpatchoperation>;
2413
+ }
1327
2414
  /**
1328
2415
  * MachineIdentitiesApi - object-oriented interface
1329
2416
  * @export
@@ -1340,6 +2427,15 @@ export declare class MachineIdentitiesApi extends BaseAPI {
1340
2427
  * @memberof MachineIdentitiesApi
1341
2428
  */
1342
2429
  createMachineIdentityV1(requestParameters: MachineIdentitiesApiCreateMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityresponse, any>>;
2430
+ /**
2431
+ * Use this API to create a machine identity. Additional owners may be either up to ten human (IDENTITY) references or exactly one GOVERNANCE_GROUP reference - not both. The maximum supported length for the description field is 2000 characters.
2432
+ * @summary Create machine identity
2433
+ * @param {MachineIdentitiesApiCreateMachineIdentityV2Request} requestParameters Request parameters.
2434
+ * @param {*} [axiosOptions] Override http request option.
2435
+ * @throws {RequiredError}
2436
+ * @memberof MachineIdentitiesApi
2437
+ */
2438
+ createMachineIdentityV2(requestParameters: MachineIdentitiesApiCreateMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityv2, any>>;
1343
2439
  /**
1344
2440
  * The API returns successful response if the requested machine identity was deleted.
1345
2441
  * @summary Delete machine identity
@@ -1349,6 +2445,24 @@ export declare class MachineIdentitiesApi extends BaseAPI {
1349
2445
  * @memberof MachineIdentitiesApi
1350
2446
  */
1351
2447
  deleteMachineIdentityV1(requestParameters: MachineIdentitiesApiDeleteMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2448
+ /**
2449
+ * The API returns a successful response if the requested machine identity was deleted.
2450
+ * @summary Delete machine identity
2451
+ * @param {MachineIdentitiesApiDeleteMachineIdentityV2Request} requestParameters Request parameters.
2452
+ * @param {*} [axiosOptions] Override http request option.
2453
+ * @throws {RequiredError}
2454
+ * @memberof MachineIdentitiesApi
2455
+ */
2456
+ deleteMachineIdentityV2(requestParameters: MachineIdentitiesApiDeleteMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2457
+ /**
2458
+ * Deletes the ownership correlation config with the specified ID for the given source resource.
2459
+ * @summary Delete ownership correlation config
2460
+ * @param {MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1Request} requestParameters Request parameters.
2461
+ * @param {*} [axiosOptions] Override http request option.
2462
+ * @throws {RequiredError}
2463
+ * @memberof MachineIdentitiesApi
2464
+ */
2465
+ deleteOwnershipCorrelationConfigV1(requestParameters: MachineIdentitiesApiDeleteOwnershipCorrelationConfigV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1352
2466
  /**
1353
2467
  * This API returns a single machine identity using the Machine Identity ID.
1354
2468
  * @summary Get machine identity details
@@ -1358,6 +2472,24 @@ export declare class MachineIdentitiesApi extends BaseAPI {
1358
2472
  * @memberof MachineIdentitiesApi
1359
2473
  */
1360
2474
  getMachineIdentityV1(requestParameters: MachineIdentitiesApiGetMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityresponse, any>>;
2475
+ /**
2476
+ * This API returns a single machine identity using the Machine Identity ID.
2477
+ * @summary Get machine identity details
2478
+ * @param {MachineIdentitiesApiGetMachineIdentityV2Request} requestParameters Request parameters.
2479
+ * @param {*} [axiosOptions] Override http request option.
2480
+ * @throws {RequiredError}
2481
+ * @memberof MachineIdentitiesApi
2482
+ */
2483
+ getMachineIdentityV2(requestParameters: MachineIdentitiesApiGetMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityv2, any>>;
2484
+ /**
2485
+ * This end-point retrieves a single ownership correlation config by ID for the specified source resource.
2486
+ * @summary Get ownership correlation config
2487
+ * @param {MachineIdentitiesApiGetOwnershipCorrelationConfigV1Request} requestParameters Request parameters.
2488
+ * @param {*} [axiosOptions] Override http request option.
2489
+ * @throws {RequiredError}
2490
+ * @memberof MachineIdentitiesApi
2491
+ */
2492
+ getOwnershipCorrelationConfigV1(requestParameters: MachineIdentitiesApiGetOwnershipCorrelationConfigV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Correlationconfig, any>>;
1361
2493
  /**
1362
2494
  * This API returns a list of machine identities.
1363
2495
  * @summary List machine identities
@@ -1367,6 +2499,15 @@ export declare class MachineIdentitiesApi extends BaseAPI {
1367
2499
  * @memberof MachineIdentitiesApi
1368
2500
  */
1369
2501
  listMachineIdentitiesV1(requestParameters?: MachineIdentitiesApiListMachineIdentitiesV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityresponse[], any>>;
2502
+ /**
2503
+ * This API returns a list of machine identities.
2504
+ * @summary List machine identities
2505
+ * @param {MachineIdentitiesApiListMachineIdentitiesV2Request} requestParameters Request parameters.
2506
+ * @param {*} [axiosOptions] Override http request option.
2507
+ * @throws {RequiredError}
2508
+ * @memberof MachineIdentitiesApi
2509
+ */
2510
+ listMachineIdentitiesV2(requestParameters?: MachineIdentitiesApiListMachineIdentitiesV2Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityv2[], any>>;
1370
2511
  /**
1371
2512
  * This API returns a list of user entitlements associated with machine identities.
1372
2513
  * @summary List machine identity\'s user entitlements
@@ -1376,6 +2517,24 @@ export declare class MachineIdentitiesApi extends BaseAPI {
1376
2517
  * @memberof MachineIdentitiesApi
1377
2518
  */
1378
2519
  listMachineIdentityUserEntitlementsV1(requestParameters?: MachineIdentitiesApiListMachineIdentityUserEntitlementsV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityuserentitlementresponse[], any>>;
2520
+ /**
2521
+ * Returns the OWNER_PRIMARY and OWNER_SECONDARY correlation configs for the specified source resource, creating default rows if they are missing. Use the optional type query parameter to return a single matching config.
2522
+ * @summary List ownership correlation configs
2523
+ * @param {MachineIdentitiesApiListOwnershipCorrelationConfigsV1Request} requestParameters Request parameters.
2524
+ * @param {*} [axiosOptions] Override http request option.
2525
+ * @throws {RequiredError}
2526
+ * @memberof MachineIdentitiesApi
2527
+ */
2528
+ listOwnershipCorrelationConfigsV1(requestParameters: MachineIdentitiesApiListOwnershipCorrelationConfigsV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Correlationconfig[], any>>;
2529
+ /**
2530
+ * Selectively updates an ownership correlation config using an RFC 6902 JSONPatch payload. Only replace on /attributes (full object) and replace on /rules (full array; merge by stable rule id, remove rules omitted from the array) are allowed.
2531
+ * @summary Patch ownership correlation config
2532
+ * @param {MachineIdentitiesApiPatchOwnershipCorrelationConfigV1Request} requestParameters Request parameters.
2533
+ * @param {*} [axiosOptions] Override http request option.
2534
+ * @throws {RequiredError}
2535
+ * @memberof MachineIdentitiesApi
2536
+ */
2537
+ patchOwnershipCorrelationConfigV1(requestParameters: MachineIdentitiesApiPatchOwnershipCorrelationConfigV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Correlationconfig, any>>;
1379
2538
  /**
1380
2539
  * Starts a machine identity (AI Agents) aggregation on the specified source.
1381
2540
  * @summary Start machine identity aggregation
@@ -1394,4 +2553,21 @@ export declare class MachineIdentitiesApi extends BaseAPI {
1394
2553
  * @memberof MachineIdentitiesApi
1395
2554
  */
1396
2555
  updateMachineIdentityV1(requestParameters: MachineIdentitiesApiUpdateMachineIdentityV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityresponse, any>>;
2556
+ /**
2557
+ * Use this API to selectively update machine identity details using a JSONPatch payload. Patchable fields include **name**, **description**, **nativeIdentity**, **subtype**, **environment**, **attributes**, **owners**, **userEntitlements**, and **manuallyEdited** only.
2558
+ * @summary Partial update of machine identity
2559
+ * @param {MachineIdentitiesApiUpdateMachineIdentityV2Request} requestParameters Request parameters.
2560
+ * @param {*} [axiosOptions] Override http request option.
2561
+ * @throws {RequiredError}
2562
+ * @memberof MachineIdentitiesApi
2563
+ */
2564
+ updateMachineIdentityV2(requestParameters: MachineIdentitiesApiUpdateMachineIdentityV2Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Machineidentityv2, any>>;
1397
2565
  }
2566
+ /**
2567
+ * @export
2568
+ */
2569
+ export declare const ListOwnershipCorrelationConfigsV1TypeEnum: {
2570
+ readonly OwnerPrimary: "OWNER_PRIMARY";
2571
+ readonly OwnerSecondary: "OWNER_SECONDARY";
2572
+ };
2573
+ export type ListOwnershipCorrelationConfigsV1TypeEnum = typeof ListOwnershipCorrelationConfigsV1TypeEnum[keyof typeof ListOwnershipCorrelationConfigsV1TypeEnum];