sailpoint-api-client 1.8.53 → 1.8.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +51 -10
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +49 -8
- package/dist/beta/api.js +13 -2
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +50 -9
- package/dist/v2024/api.js +13 -2
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +49 -8
- package/dist/v2025/api.js +13 -2
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +245 -9
- package/dist/v2026/api.js +239 -2
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +31 -8
- package/dist/v3/api.js +13 -2
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +52 -11
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +51 -10
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +355 -11
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +33 -10
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2026/api.ts
CHANGED
|
@@ -1165,13 +1165,13 @@ export interface AccessModelMetadataValuesInnerV2026 {
|
|
|
1165
1165
|
*/
|
|
1166
1166
|
export interface AccessProfileApprovalSchemeV2026 {
|
|
1167
1167
|
/**
|
|
1168
|
-
* Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
|
|
1168
|
+
* Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required. **ALL_OWNERS**: All owners of the Access Profile, including the primary owner and any secondary owners **ADDITIONAL_OWNER**: An additional owner of the Access Profile, the ID of which is specified by the **approverId** field **ADDITIONAL_GOVERNANCE_GROUP**: An additional Governance Group, the ID of which is specified by the **approverId** field
|
|
1169
1169
|
* @type {string}
|
|
1170
1170
|
* @memberof AccessProfileApprovalSchemeV2026
|
|
1171
1171
|
*/
|
|
1172
1172
|
'approverType'?: AccessProfileApprovalSchemeV2026ApproverTypeV2026;
|
|
1173
1173
|
/**
|
|
1174
|
-
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or
|
|
1174
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
|
|
1175
1175
|
* @type {string}
|
|
1176
1176
|
* @memberof AccessProfileApprovalSchemeV2026
|
|
1177
1177
|
*/
|
|
@@ -1184,7 +1184,10 @@ export const AccessProfileApprovalSchemeV2026ApproverTypeV2026 = {
|
|
|
1184
1184
|
SourceOwner: 'SOURCE_OWNER',
|
|
1185
1185
|
Manager: 'MANAGER',
|
|
1186
1186
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
1187
|
-
Workflow: 'WORKFLOW'
|
|
1187
|
+
Workflow: 'WORKFLOW',
|
|
1188
|
+
AllOwners: 'ALL_OWNERS',
|
|
1189
|
+
AdditionalOwner: 'ADDITIONAL_OWNER',
|
|
1190
|
+
AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
|
|
1188
1191
|
} as const;
|
|
1189
1192
|
|
|
1190
1193
|
export type AccessProfileApprovalSchemeV2026ApproverTypeV2026 = typeof AccessProfileApprovalSchemeV2026ApproverTypeV2026[keyof typeof AccessProfileApprovalSchemeV2026ApproverTypeV2026];
|
|
@@ -9068,13 +9071,13 @@ export interface ApprovalRequestedTargetV2026 {
|
|
|
9068
9071
|
*/
|
|
9069
9072
|
export interface ApprovalSchemeForRoleV2026 {
|
|
9070
9073
|
/**
|
|
9071
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
|
|
9074
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required. **ALL_OWNERS**: All owners of the Role, including the primary owner and any secondary owners **ADDITIONAL_OWNER**: An additional owner of the Role, the ID of which is specified by the **approverId** field **ADDITIONAL_GOVERNANCE_GROUP**: An additional Governance Group, the ID of which is specified by the **approverId** field
|
|
9072
9075
|
* @type {string}
|
|
9073
9076
|
* @memberof ApprovalSchemeForRoleV2026
|
|
9074
9077
|
*/
|
|
9075
9078
|
'approverType'?: ApprovalSchemeForRoleV2026ApproverTypeV2026;
|
|
9076
9079
|
/**
|
|
9077
|
-
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or
|
|
9080
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP, WORKFLOW, or ADDITIONAL_GOVERNANCE_GROUP.
|
|
9078
9081
|
* @type {string}
|
|
9079
9082
|
* @memberof ApprovalSchemeForRoleV2026
|
|
9080
9083
|
*/
|
|
@@ -9085,7 +9088,10 @@ export const ApprovalSchemeForRoleV2026ApproverTypeV2026 = {
|
|
|
9085
9088
|
Owner: 'OWNER',
|
|
9086
9089
|
Manager: 'MANAGER',
|
|
9087
9090
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
9088
|
-
Workflow: 'WORKFLOW'
|
|
9091
|
+
Workflow: 'WORKFLOW',
|
|
9092
|
+
AllOwners: 'ALL_OWNERS',
|
|
9093
|
+
AdditionalOwner: 'ADDITIONAL_OWNER',
|
|
9094
|
+
AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
|
|
9089
9095
|
} as const;
|
|
9090
9096
|
|
|
9091
9097
|
export type ApprovalSchemeForRoleV2026ApproverTypeV2026 = typeof ApprovalSchemeForRoleV2026ApproverTypeV2026[keyof typeof ApprovalSchemeForRoleV2026ApproverTypeV2026];
|
|
@@ -23440,6 +23446,12 @@ export interface GetRoleAssignments200ResponseInnerV2026 {
|
|
|
23440
23446
|
* @memberof GetRoleAssignments200ResponseInnerV2026
|
|
23441
23447
|
*/
|
|
23442
23448
|
'addedDate'?: string;
|
|
23449
|
+
/**
|
|
23450
|
+
* Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
|
|
23451
|
+
* @type {string}
|
|
23452
|
+
* @memberof GetRoleAssignments200ResponseInnerV2026
|
|
23453
|
+
*/
|
|
23454
|
+
'startDate'?: string | null;
|
|
23443
23455
|
/**
|
|
23444
23456
|
* Date that the assignment will be removed
|
|
23445
23457
|
* @type {string}
|
|
@@ -26902,6 +26914,12 @@ export interface IntelIdentityLinksV2026 {
|
|
|
26902
26914
|
* @memberof IntelIdentityLinksV2026
|
|
26903
26915
|
*/
|
|
26904
26916
|
'access': IntelHrefV2026;
|
|
26917
|
+
/**
|
|
26918
|
+
* Hyperlink to the Intelligence Package risk document for this identity.
|
|
26919
|
+
* @type {IntelHrefV2026}
|
|
26920
|
+
* @memberof IntelIdentityLinksV2026
|
|
26921
|
+
*/
|
|
26922
|
+
'risk': IntelHrefV2026;
|
|
26905
26923
|
/**
|
|
26906
26924
|
* Hyperlink to the Intelligence Package access history document for this identity.
|
|
26907
26925
|
* @type {IntelHrefV2026}
|
|
@@ -26936,7 +26954,7 @@ export const IntelIdentityNotFoundBodyV2026DetailCodeV2026 = {
|
|
|
26936
26954
|
export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
|
|
26937
26955
|
|
|
26938
26956
|
/**
|
|
26939
|
-
* HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access and accessHistory
|
|
26957
|
+
* HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access, risk, and accessHistory). MACHINE responses include machine and top-level subtype (connector subtype string); _links is omitted.
|
|
26940
26958
|
* @export
|
|
26941
26959
|
* @interface IntelIdentityResponseV2026
|
|
26942
26960
|
*/
|
|
@@ -27016,6 +27034,31 @@ export const IntelIdentityResponseV2026TypeV2026 = {
|
|
|
27016
27034
|
|
|
27017
27035
|
export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
|
|
27018
27036
|
|
|
27037
|
+
/**
|
|
27038
|
+
* Shared response envelope for risk endpoints.
|
|
27039
|
+
* @export
|
|
27040
|
+
* @interface IntelIdentityRiskBodyV2026
|
|
27041
|
+
*/
|
|
27042
|
+
export interface IntelIdentityRiskBodyV2026 {
|
|
27043
|
+
/**
|
|
27044
|
+
* Page of outlier access-items associated with the resolved identity outlier.
|
|
27045
|
+
* @type {Array<IntelOutlierAccessItemV2026>}
|
|
27046
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27047
|
+
*/
|
|
27048
|
+
'outliers': Array<IntelOutlierAccessItemV2026>;
|
|
27049
|
+
/**
|
|
27050
|
+
* Total available outlier access-item count from upstream.
|
|
27051
|
+
* @type {number}
|
|
27052
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27053
|
+
*/
|
|
27054
|
+
'outliersTotal': number | null;
|
|
27055
|
+
/**
|
|
27056
|
+
* Continuation links map; omitted when no additional page exists.
|
|
27057
|
+
* @type {IntelRiskLinksV2026}
|
|
27058
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27059
|
+
*/
|
|
27060
|
+
'_links'?: IntelRiskLinksV2026 | null;
|
|
27061
|
+
}
|
|
27019
27062
|
/**
|
|
27020
27063
|
*
|
|
27021
27064
|
* @export
|
|
@@ -27133,6 +27176,49 @@ export interface IntelMachineV2026 {
|
|
|
27133
27176
|
*/
|
|
27134
27177
|
'userEntitlements'?: Array<object>;
|
|
27135
27178
|
}
|
|
27179
|
+
/**
|
|
27180
|
+
* One outlier access-item row.
|
|
27181
|
+
* @export
|
|
27182
|
+
* @interface IntelOutlierAccessItemV2026
|
|
27183
|
+
*/
|
|
27184
|
+
export interface IntelOutlierAccessItemV2026 {
|
|
27185
|
+
/**
|
|
27186
|
+
* Stable identifier of the outlier access-item row.
|
|
27187
|
+
* @type {string}
|
|
27188
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27189
|
+
*/
|
|
27190
|
+
'id': string;
|
|
27191
|
+
/**
|
|
27192
|
+
* Display label of the risky access item.
|
|
27193
|
+
* @type {string}
|
|
27194
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27195
|
+
*/
|
|
27196
|
+
'displayName': string;
|
|
27197
|
+
/**
|
|
27198
|
+
* Optional descriptive text for the risky access item.
|
|
27199
|
+
* @type {string}
|
|
27200
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27201
|
+
*/
|
|
27202
|
+
'description'?: string | null;
|
|
27203
|
+
/**
|
|
27204
|
+
* Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
|
|
27205
|
+
* @type {string}
|
|
27206
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27207
|
+
*/
|
|
27208
|
+
'accessType': string;
|
|
27209
|
+
/**
|
|
27210
|
+
* Source name where the risky access item exists.
|
|
27211
|
+
* @type {string}
|
|
27212
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27213
|
+
*/
|
|
27214
|
+
'sourceName': string;
|
|
27215
|
+
/**
|
|
27216
|
+
* Indicates whether analytics marked this item as extremely rare.
|
|
27217
|
+
* @type {boolean}
|
|
27218
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27219
|
+
*/
|
|
27220
|
+
'extremelyRare': boolean;
|
|
27221
|
+
}
|
|
27136
27222
|
/**
|
|
27137
27223
|
* Source metadata associated with the privileged access item when present.
|
|
27138
27224
|
* @export
|
|
@@ -27213,6 +27299,19 @@ export interface IntelPrivilegedAccessItemWireV2026 {
|
|
|
27213
27299
|
*/
|
|
27214
27300
|
'value'?: string;
|
|
27215
27301
|
}
|
|
27302
|
+
/**
|
|
27303
|
+
* Continuation links for risk responses.
|
|
27304
|
+
* @export
|
|
27305
|
+
* @interface IntelRiskLinksV2026
|
|
27306
|
+
*/
|
|
27307
|
+
export interface IntelRiskLinksV2026 {
|
|
27308
|
+
/**
|
|
27309
|
+
* Link to fetch the next outlier page for the same identity.
|
|
27310
|
+
* @type {IntelHrefV2026}
|
|
27311
|
+
* @memberof IntelRiskLinksV2026
|
|
27312
|
+
*/
|
|
27313
|
+
'outliers'?: IntelHrefV2026;
|
|
27314
|
+
}
|
|
27216
27315
|
/**
|
|
27217
27316
|
*
|
|
27218
27317
|
* @export
|
|
@@ -39593,6 +39692,12 @@ export interface RequestabilityForRoleV2026 {
|
|
|
39593
39692
|
* @memberof RequestabilityForRoleV2026
|
|
39594
39693
|
*/
|
|
39595
39694
|
'dimensionSchema'?: DimensionSchemaV2026;
|
|
39695
|
+
/**
|
|
39696
|
+
* The ID of the form definition used for the access request. If specified, the form is presented to the requester during the access request process.
|
|
39697
|
+
* @type {string}
|
|
39698
|
+
* @memberof RequestabilityForRoleV2026
|
|
39699
|
+
*/
|
|
39700
|
+
'formDefinitionId'?: string | null;
|
|
39596
39701
|
}
|
|
39597
39702
|
/**
|
|
39598
39703
|
*
|
|
@@ -41287,6 +41392,12 @@ export interface RoleAssignmentDtoV2026 {
|
|
|
41287
41392
|
* @memberof RoleAssignmentDtoV2026
|
|
41288
41393
|
*/
|
|
41289
41394
|
'accountTargets'?: Array<RoleTargetDtoV2026>;
|
|
41395
|
+
/**
|
|
41396
|
+
* Date when assignment will be active, if access was requested with a future start date. If null, assignment is active immediately
|
|
41397
|
+
* @type {string}
|
|
41398
|
+
* @memberof RoleAssignmentDtoV2026
|
|
41399
|
+
*/
|
|
41400
|
+
'startDate'?: string | null;
|
|
41290
41401
|
/**
|
|
41291
41402
|
* Date that the assignment will be removed
|
|
41292
41403
|
* @type {string}
|
|
@@ -41324,6 +41435,12 @@ export interface RoleAssignmentRefV2026 {
|
|
|
41324
41435
|
* @memberof RoleAssignmentRefV2026
|
|
41325
41436
|
*/
|
|
41326
41437
|
'addedDate'?: string;
|
|
41438
|
+
/**
|
|
41439
|
+
* Date when assignment will be active, if requested with a future date. If null, assignment is active immediately
|
|
41440
|
+
* @type {string}
|
|
41441
|
+
* @memberof RoleAssignmentRefV2026
|
|
41442
|
+
*/
|
|
41443
|
+
'startDate'?: string | null;
|
|
41327
41444
|
/**
|
|
41328
41445
|
* Date that the assignment will be removed
|
|
41329
41446
|
* @type {string}
|
|
@@ -41463,7 +41580,7 @@ export interface RoleCriteriaLevel1V2026 {
|
|
|
41463
41580
|
*/
|
|
41464
41581
|
'key'?: RoleCriteriaKeyV2026 | null;
|
|
41465
41582
|
/**
|
|
41466
|
-
* String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
|
|
41583
|
+
* String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
|
|
41467
41584
|
* @type {string}
|
|
41468
41585
|
* @memberof RoleCriteriaLevel1V2026
|
|
41469
41586
|
*/
|
|
@@ -41496,7 +41613,7 @@ export interface RoleCriteriaLevel2V2026 {
|
|
|
41496
41613
|
*/
|
|
41497
41614
|
'key'?: RoleCriteriaKeyV2026 | null;
|
|
41498
41615
|
/**
|
|
41499
|
-
* String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
|
|
41616
|
+
* String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
|
|
41500
41617
|
* @type {string}
|
|
41501
41618
|
* @memberof RoleCriteriaLevel2V2026
|
|
41502
41619
|
*/
|
|
@@ -41529,11 +41646,11 @@ export interface RoleCriteriaLevel3V2026 {
|
|
|
41529
41646
|
*/
|
|
41530
41647
|
'key'?: RoleCriteriaKeyV2026 | null;
|
|
41531
41648
|
/**
|
|
41532
|
-
* String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
|
|
41649
|
+
* String value to test the Identity attribute, Account attribute, or Entitlement specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, NOT_EQUALS, CONTAINS, DOES_NOT_CONTAIN, STARTS_WITH, or ENDS_WITH, this field is required. Otherwise, specifying it is an error.
|
|
41533
41650
|
* @type {string}
|
|
41534
41651
|
* @memberof RoleCriteriaLevel3V2026
|
|
41535
41652
|
*/
|
|
41536
|
-
'stringValue'?: string;
|
|
41653
|
+
'stringValue'?: string | null;
|
|
41537
41654
|
}
|
|
41538
41655
|
|
|
41539
41656
|
|
|
@@ -41547,8 +41664,13 @@ export const RoleCriteriaOperationV2026 = {
|
|
|
41547
41664
|
Equals: 'EQUALS',
|
|
41548
41665
|
NotEquals: 'NOT_EQUALS',
|
|
41549
41666
|
Contains: 'CONTAINS',
|
|
41667
|
+
DoesNotContain: 'DOES_NOT_CONTAIN',
|
|
41550
41668
|
StartsWith: 'STARTS_WITH',
|
|
41551
41669
|
EndsWith: 'ENDS_WITH',
|
|
41670
|
+
GreaterThan: 'GREATER_THAN',
|
|
41671
|
+
LessThan: 'LESS_THAN',
|
|
41672
|
+
GreaterThanEquals: 'GREATER_THAN_EQUALS',
|
|
41673
|
+
LessThanEquals: 'LESS_THAN_EQUALS',
|
|
41552
41674
|
And: 'AND',
|
|
41553
41675
|
Or: 'OR'
|
|
41554
41676
|
} as const;
|
|
@@ -44357,6 +44479,12 @@ export interface RoleV2026 {
|
|
|
44357
44479
|
* @memberof RoleV2026
|
|
44358
44480
|
*/
|
|
44359
44481
|
'accessModelMetadata'?: AttributeDTOListV2026;
|
|
44482
|
+
/**
|
|
44483
|
+
* The privilege level of the role, if applicable.
|
|
44484
|
+
* @type {string}
|
|
44485
|
+
* @memberof RoleV2026
|
|
44486
|
+
*/
|
|
44487
|
+
'privilegeLevel'?: string | null;
|
|
44360
44488
|
}
|
|
44361
44489
|
/**
|
|
44362
44490
|
* @type RuleV2026
|
|
@@ -103463,6 +103591,108 @@ export const IntelligencePackageV2026ApiAxiosParamCreator = function (configurat
|
|
|
103463
103591
|
|
|
103464
103592
|
|
|
103465
103593
|
|
|
103594
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103595
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103596
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
103597
|
+
|
|
103598
|
+
return {
|
|
103599
|
+
url: toPathString(localVarUrlObj),
|
|
103600
|
+
axiosOptions: localVarRequestOptions,
|
|
103601
|
+
};
|
|
103602
|
+
},
|
|
103603
|
+
/**
|
|
103604
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103605
|
+
* @summary Identity risk snapshot
|
|
103606
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103607
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103608
|
+
* @throws {RequiredError}
|
|
103609
|
+
*/
|
|
103610
|
+
getIntelIdentityRisk: async (identityID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103611
|
+
// verify required parameter 'identityID' is not null or undefined
|
|
103612
|
+
assertParamExists('getIntelIdentityRisk', 'identityID', identityID)
|
|
103613
|
+
const localVarPath = `/intelligence/identities/{identityID}/risk`
|
|
103614
|
+
.replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
|
|
103615
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103616
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
103617
|
+
let baseOptions;
|
|
103618
|
+
if (configuration) {
|
|
103619
|
+
baseOptions = configuration.baseOptions;
|
|
103620
|
+
}
|
|
103621
|
+
|
|
103622
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
103623
|
+
const localVarHeaderParameter = {} as any;
|
|
103624
|
+
const localVarQueryParameter = {} as any;
|
|
103625
|
+
|
|
103626
|
+
// authentication userAuth required
|
|
103627
|
+
// oauth required
|
|
103628
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103629
|
+
|
|
103630
|
+
// authentication userAuth required
|
|
103631
|
+
// oauth required
|
|
103632
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103633
|
+
|
|
103634
|
+
// authentication applicationAuth required
|
|
103635
|
+
// oauth required
|
|
103636
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103637
|
+
|
|
103638
|
+
|
|
103639
|
+
|
|
103640
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103641
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103642
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
103643
|
+
|
|
103644
|
+
return {
|
|
103645
|
+
url: toPathString(localVarUrlObj),
|
|
103646
|
+
axiosOptions: localVarRequestOptions,
|
|
103647
|
+
};
|
|
103648
|
+
},
|
|
103649
|
+
/**
|
|
103650
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
103651
|
+
* @summary Risk outliers continuation paging
|
|
103652
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103653
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
103654
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
103655
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103656
|
+
* @throws {RequiredError}
|
|
103657
|
+
*/
|
|
103658
|
+
getIntelIdentityRiskOutliers: async (identityID: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103659
|
+
// verify required parameter 'identityID' is not null or undefined
|
|
103660
|
+
assertParamExists('getIntelIdentityRiskOutliers', 'identityID', identityID)
|
|
103661
|
+
const localVarPath = `/intelligence/identities/{identityID}/risk/outliers`
|
|
103662
|
+
.replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
|
|
103663
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103664
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
103665
|
+
let baseOptions;
|
|
103666
|
+
if (configuration) {
|
|
103667
|
+
baseOptions = configuration.baseOptions;
|
|
103668
|
+
}
|
|
103669
|
+
|
|
103670
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
103671
|
+
const localVarHeaderParameter = {} as any;
|
|
103672
|
+
const localVarQueryParameter = {} as any;
|
|
103673
|
+
|
|
103674
|
+
// authentication userAuth required
|
|
103675
|
+
// oauth required
|
|
103676
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103677
|
+
|
|
103678
|
+
// authentication userAuth required
|
|
103679
|
+
// oauth required
|
|
103680
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103681
|
+
|
|
103682
|
+
// authentication applicationAuth required
|
|
103683
|
+
// oauth required
|
|
103684
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103685
|
+
|
|
103686
|
+
if (limit !== undefined) {
|
|
103687
|
+
localVarQueryParameter['limit'] = limit;
|
|
103688
|
+
}
|
|
103689
|
+
|
|
103690
|
+
if (offset !== undefined) {
|
|
103691
|
+
localVarQueryParameter['offset'] = offset;
|
|
103692
|
+
}
|
|
103693
|
+
|
|
103694
|
+
|
|
103695
|
+
|
|
103466
103696
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103467
103697
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103468
103698
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -103560,6 +103790,34 @@ export const IntelligencePackageV2026ApiFp = function(configuration?: Configurat
|
|
|
103560
103790
|
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityAccessHistory']?.[localVarOperationServerIndex]?.url;
|
|
103561
103791
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103562
103792
|
},
|
|
103793
|
+
/**
|
|
103794
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103795
|
+
* @summary Identity risk snapshot
|
|
103796
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103797
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103798
|
+
* @throws {RequiredError}
|
|
103799
|
+
*/
|
|
103800
|
+
async getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
|
|
103801
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRisk(identityID, axiosOptions);
|
|
103802
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
103803
|
+
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRisk']?.[localVarOperationServerIndex]?.url;
|
|
103804
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103805
|
+
},
|
|
103806
|
+
/**
|
|
103807
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
103808
|
+
* @summary Risk outliers continuation paging
|
|
103809
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103810
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
103811
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
103812
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103813
|
+
* @throws {RequiredError}
|
|
103814
|
+
*/
|
|
103815
|
+
async getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
|
|
103816
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRiskOutliers(identityID, limit, offset, axiosOptions);
|
|
103817
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
103818
|
+
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRiskOutliers']?.[localVarOperationServerIndex]?.url;
|
|
103819
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103820
|
+
},
|
|
103563
103821
|
/**
|
|
103564
103822
|
* Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
|
|
103565
103823
|
* @summary Resolve one identity by filter
|
|
@@ -103603,6 +103861,26 @@ export const IntelligencePackageV2026ApiFactory = function (configuration?: Conf
|
|
|
103603
103861
|
getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026> {
|
|
103604
103862
|
return localVarFp.getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
103605
103863
|
},
|
|
103864
|
+
/**
|
|
103865
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
103866
|
+
* @summary Identity risk snapshot
|
|
103867
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
103868
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103869
|
+
* @throws {RequiredError}
|
|
103870
|
+
*/
|
|
103871
|
+
getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
|
|
103872
|
+
return localVarFp.getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(axios, basePath));
|
|
103873
|
+
},
|
|
103874
|
+
/**
|
|
103875
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
103876
|
+
* @summary Risk outliers continuation paging
|
|
103877
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
103878
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103879
|
+
* @throws {RequiredError}
|
|
103880
|
+
*/
|
|
103881
|
+
getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
|
|
103882
|
+
return localVarFp.getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
103883
|
+
},
|
|
103606
103884
|
/**
|
|
103607
103885
|
* Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
|
|
103608
103886
|
* @summary Resolve one identity by filter
|
|
@@ -103665,6 +103943,48 @@ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
|
|
|
103665
103943
|
readonly count?: boolean
|
|
103666
103944
|
}
|
|
103667
103945
|
|
|
103946
|
+
/**
|
|
103947
|
+
* Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
|
|
103948
|
+
* @export
|
|
103949
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
|
|
103950
|
+
*/
|
|
103951
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
|
|
103952
|
+
/**
|
|
103953
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103954
|
+
* @type {string}
|
|
103955
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
|
|
103956
|
+
*/
|
|
103957
|
+
readonly identityID: string
|
|
103958
|
+
}
|
|
103959
|
+
|
|
103960
|
+
/**
|
|
103961
|
+
* Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
|
|
103962
|
+
* @export
|
|
103963
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
|
|
103964
|
+
*/
|
|
103965
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
|
|
103966
|
+
/**
|
|
103967
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103968
|
+
* @type {string}
|
|
103969
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103970
|
+
*/
|
|
103971
|
+
readonly identityID: string
|
|
103972
|
+
|
|
103973
|
+
/**
|
|
103974
|
+
* Maximum number of outlier rows to return for this page.
|
|
103975
|
+
* @type {number}
|
|
103976
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103977
|
+
*/
|
|
103978
|
+
readonly limit?: number
|
|
103979
|
+
|
|
103980
|
+
/**
|
|
103981
|
+
* Zero-based row index for the first returned outlier item.
|
|
103982
|
+
* @type {number}
|
|
103983
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103984
|
+
*/
|
|
103985
|
+
readonly offset?: number
|
|
103986
|
+
}
|
|
103987
|
+
|
|
103668
103988
|
/**
|
|
103669
103989
|
* Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
|
|
103670
103990
|
* @export
|
|
@@ -103710,6 +104030,30 @@ export class IntelligencePackageV2026Api extends BaseAPI {
|
|
|
103710
104030
|
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
103711
104031
|
}
|
|
103712
104032
|
|
|
104033
|
+
/**
|
|
104034
|
+
* Risk snapshot envelope for the identity. The service resolves the first matching outlier for identityID and returns one page of access-items plus an optional continuation link for additional pages. Clients should continue paging using _links.outliers.href when provided. Requires tenant license idn:response-and-remediation.
|
|
104035
|
+
* @summary Identity risk snapshot
|
|
104036
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
104037
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
104038
|
+
* @throws {RequiredError}
|
|
104039
|
+
* @memberof IntelligencePackageV2026Api
|
|
104040
|
+
*/
|
|
104041
|
+
public getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
104042
|
+
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
104043
|
+
}
|
|
104044
|
+
|
|
104045
|
+
/**
|
|
104046
|
+
* Continuation endpoint for risk outlier access-items. Returns one page based on the supplied limit and offset values and includes an optional continuation link when more rows remain. Requires tenant license idn:response-and-remediation.
|
|
104047
|
+
* @summary Risk outliers continuation paging
|
|
104048
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
104049
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
104050
|
+
* @throws {RequiredError}
|
|
104051
|
+
* @memberof IntelligencePackageV2026Api
|
|
104052
|
+
*/
|
|
104053
|
+
public getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
104054
|
+
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
104055
|
+
}
|
|
104056
|
+
|
|
103713
104057
|
/**
|
|
103714
104058
|
* Requires tenant license idn:response-and-remediation. Returns the Intelligence Package envelope for the identity that matches the SCIM-style filters expression. Supported queryable fields are id and email only. A single match returns HTTP 200 with IntelIdentityResponse. Zero matches returns HTTP 404 with detailCode IDC_IDENTITY_NOT_FOUND. Multiple matches returns HTTP 409 with detailCode IDC_IDENTITY_AMBIGUOUS and candidates listing each match.
|
|
103715
104059
|
* @summary Resolve one identity by filter
|
package/v2026/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.55`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.55'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2026/package.json
CHANGED
package/v3/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.55
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.55 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|