sailpoint-api-client 1.8.53 → 1.8.54
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/common.ts +2 -2
- package/beta/package.json +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/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +196 -1
- package/dist/v2026/api.js +226 -0
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- 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/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +304 -1
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.54
|
|
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.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/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.54`;
|
|
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.54'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.54";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.54' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nerm/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.54";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.54' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nermv2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.54";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.54' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2024/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.54";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.54' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.54";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.54' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2026/api.d.ts
CHANGED
|
@@ -26135,6 +26135,12 @@ export interface IntelIdentityLinksV2026 {
|
|
|
26135
26135
|
* @memberof IntelIdentityLinksV2026
|
|
26136
26136
|
*/
|
|
26137
26137
|
'access': IntelHrefV2026;
|
|
26138
|
+
/**
|
|
26139
|
+
* Hyperlink to the Intelligence Package risk document for this identity.
|
|
26140
|
+
* @type {IntelHrefV2026}
|
|
26141
|
+
* @memberof IntelIdentityLinksV2026
|
|
26142
|
+
*/
|
|
26143
|
+
'risk': IntelHrefV2026;
|
|
26138
26144
|
/**
|
|
26139
26145
|
* Hyperlink to the Intelligence Package access history document for this identity.
|
|
26140
26146
|
* @type {IntelHrefV2026}
|
|
@@ -26166,7 +26172,7 @@ export declare const IntelIdentityNotFoundBodyV2026DetailCodeV2026: {
|
|
|
26166
26172
|
};
|
|
26167
26173
|
export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
|
|
26168
26174
|
/**
|
|
26169
|
-
* HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access and accessHistory
|
|
26175
|
+
* 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.
|
|
26170
26176
|
* @export
|
|
26171
26177
|
* @interface IntelIdentityResponseV2026
|
|
26172
26178
|
*/
|
|
@@ -26245,6 +26251,31 @@ export declare const IntelIdentityResponseV2026TypeV2026: {
|
|
|
26245
26251
|
readonly Machine: "MACHINE";
|
|
26246
26252
|
};
|
|
26247
26253
|
export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
|
|
26254
|
+
/**
|
|
26255
|
+
* Shared response envelope for risk endpoints.
|
|
26256
|
+
* @export
|
|
26257
|
+
* @interface IntelIdentityRiskBodyV2026
|
|
26258
|
+
*/
|
|
26259
|
+
export interface IntelIdentityRiskBodyV2026 {
|
|
26260
|
+
/**
|
|
26261
|
+
* Page of outlier access-items associated with the resolved identity outlier.
|
|
26262
|
+
* @type {Array<IntelOutlierAccessItemV2026>}
|
|
26263
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
26264
|
+
*/
|
|
26265
|
+
'outliers': Array<IntelOutlierAccessItemV2026>;
|
|
26266
|
+
/**
|
|
26267
|
+
* Total available outlier access-item count from upstream.
|
|
26268
|
+
* @type {number}
|
|
26269
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
26270
|
+
*/
|
|
26271
|
+
'outliersTotal': number | null;
|
|
26272
|
+
/**
|
|
26273
|
+
* Continuation links map; omitted when no additional page exists.
|
|
26274
|
+
* @type {IntelRiskLinksV2026}
|
|
26275
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
26276
|
+
*/
|
|
26277
|
+
'_links'?: IntelRiskLinksV2026 | null;
|
|
26278
|
+
}
|
|
26248
26279
|
/**
|
|
26249
26280
|
*
|
|
26250
26281
|
* @export
|
|
@@ -26362,6 +26393,49 @@ export interface IntelMachineV2026 {
|
|
|
26362
26393
|
*/
|
|
26363
26394
|
'userEntitlements'?: Array<object>;
|
|
26364
26395
|
}
|
|
26396
|
+
/**
|
|
26397
|
+
* One outlier access-item row.
|
|
26398
|
+
* @export
|
|
26399
|
+
* @interface IntelOutlierAccessItemV2026
|
|
26400
|
+
*/
|
|
26401
|
+
export interface IntelOutlierAccessItemV2026 {
|
|
26402
|
+
/**
|
|
26403
|
+
* Stable identifier of the outlier access-item row.
|
|
26404
|
+
* @type {string}
|
|
26405
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
26406
|
+
*/
|
|
26407
|
+
'id': string;
|
|
26408
|
+
/**
|
|
26409
|
+
* Display label of the risky access item.
|
|
26410
|
+
* @type {string}
|
|
26411
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
26412
|
+
*/
|
|
26413
|
+
'displayName': string;
|
|
26414
|
+
/**
|
|
26415
|
+
* Optional descriptive text for the risky access item.
|
|
26416
|
+
* @type {string}
|
|
26417
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
26418
|
+
*/
|
|
26419
|
+
'description'?: string | null;
|
|
26420
|
+
/**
|
|
26421
|
+
* Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
|
|
26422
|
+
* @type {string}
|
|
26423
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
26424
|
+
*/
|
|
26425
|
+
'accessType': string;
|
|
26426
|
+
/**
|
|
26427
|
+
* Source name where the risky access item exists.
|
|
26428
|
+
* @type {string}
|
|
26429
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
26430
|
+
*/
|
|
26431
|
+
'sourceName': string;
|
|
26432
|
+
/**
|
|
26433
|
+
* Indicates whether analytics marked this item as extremely rare.
|
|
26434
|
+
* @type {boolean}
|
|
26435
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
26436
|
+
*/
|
|
26437
|
+
'extremelyRare': boolean;
|
|
26438
|
+
}
|
|
26365
26439
|
/**
|
|
26366
26440
|
* Source metadata associated with the privileged access item when present.
|
|
26367
26441
|
* @export
|
|
@@ -26442,6 +26516,19 @@ export interface IntelPrivilegedAccessItemWireV2026 {
|
|
|
26442
26516
|
*/
|
|
26443
26517
|
'value'?: string;
|
|
26444
26518
|
}
|
|
26519
|
+
/**
|
|
26520
|
+
* Continuation links for risk responses.
|
|
26521
|
+
* @export
|
|
26522
|
+
* @interface IntelRiskLinksV2026
|
|
26523
|
+
*/
|
|
26524
|
+
export interface IntelRiskLinksV2026 {
|
|
26525
|
+
/**
|
|
26526
|
+
* Link to fetch the next outlier page for the same identity.
|
|
26527
|
+
* @type {IntelHrefV2026}
|
|
26528
|
+
* @memberof IntelRiskLinksV2026
|
|
26529
|
+
*/
|
|
26530
|
+
'outliers'?: IntelHrefV2026;
|
|
26531
|
+
}
|
|
26445
26532
|
/**
|
|
26446
26533
|
*
|
|
26447
26534
|
* @export
|
|
@@ -79210,6 +79297,24 @@ export declare const IntelligencePackageV2026ApiAxiosParamCreator: (configuratio
|
|
|
79210
79297
|
* @throws {RequiredError}
|
|
79211
79298
|
*/
|
|
79212
79299
|
getIntelIdentityAccessHistory: (identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79300
|
+
/**
|
|
79301
|
+
* 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.
|
|
79302
|
+
* @summary Identity risk snapshot
|
|
79303
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
79304
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79305
|
+
* @throws {RequiredError}
|
|
79306
|
+
*/
|
|
79307
|
+
getIntelIdentityRisk: (identityID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79308
|
+
/**
|
|
79309
|
+
* 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.
|
|
79310
|
+
* @summary Risk outliers continuation paging
|
|
79311
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
79312
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
79313
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
79314
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79315
|
+
* @throws {RequiredError}
|
|
79316
|
+
*/
|
|
79317
|
+
getIntelIdentityRiskOutliers: (identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79213
79318
|
/**
|
|
79214
79319
|
* 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.
|
|
79215
79320
|
* @summary Resolve one identity by filter
|
|
@@ -79243,6 +79348,24 @@ export declare const IntelligencePackageV2026ApiFp: (configuration?: Configurati
|
|
|
79243
79348
|
* @throws {RequiredError}
|
|
79244
79349
|
*/
|
|
79245
79350
|
getIntelIdentityAccessHistory(identityID: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityAccessHistoryBodyV2026>>;
|
|
79351
|
+
/**
|
|
79352
|
+
* 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.
|
|
79353
|
+
* @summary Identity risk snapshot
|
|
79354
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
79355
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79356
|
+
* @throws {RequiredError}
|
|
79357
|
+
*/
|
|
79358
|
+
getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>>;
|
|
79359
|
+
/**
|
|
79360
|
+
* 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.
|
|
79361
|
+
* @summary Risk outliers continuation paging
|
|
79362
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
79363
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
79364
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
79365
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79366
|
+
* @throws {RequiredError}
|
|
79367
|
+
*/
|
|
79368
|
+
getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>>;
|
|
79246
79369
|
/**
|
|
79247
79370
|
* 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.
|
|
79248
79371
|
* @summary Resolve one identity by filter
|
|
@@ -79273,6 +79396,22 @@ export declare const IntelligencePackageV2026ApiFactory: (configuration?: Config
|
|
|
79273
79396
|
* @throws {RequiredError}
|
|
79274
79397
|
*/
|
|
79275
79398
|
getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026>;
|
|
79399
|
+
/**
|
|
79400
|
+
* 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.
|
|
79401
|
+
* @summary Identity risk snapshot
|
|
79402
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
79403
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79404
|
+
* @throws {RequiredError}
|
|
79405
|
+
*/
|
|
79406
|
+
getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026>;
|
|
79407
|
+
/**
|
|
79408
|
+
* 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.
|
|
79409
|
+
* @summary Risk outliers continuation paging
|
|
79410
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
79411
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79412
|
+
* @throws {RequiredError}
|
|
79413
|
+
*/
|
|
79414
|
+
getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026>;
|
|
79276
79415
|
/**
|
|
79277
79416
|
* 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.
|
|
79278
79417
|
* @summary Resolve one identity by filter
|
|
@@ -79326,6 +79465,44 @@ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
|
|
|
79326
79465
|
*/
|
|
79327
79466
|
readonly count?: boolean;
|
|
79328
79467
|
}
|
|
79468
|
+
/**
|
|
79469
|
+
* Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
|
|
79470
|
+
* @export
|
|
79471
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
|
|
79472
|
+
*/
|
|
79473
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
|
|
79474
|
+
/**
|
|
79475
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
79476
|
+
* @type {string}
|
|
79477
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
|
|
79478
|
+
*/
|
|
79479
|
+
readonly identityID: string;
|
|
79480
|
+
}
|
|
79481
|
+
/**
|
|
79482
|
+
* Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
|
|
79483
|
+
* @export
|
|
79484
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
|
|
79485
|
+
*/
|
|
79486
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
|
|
79487
|
+
/**
|
|
79488
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
79489
|
+
* @type {string}
|
|
79490
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
79491
|
+
*/
|
|
79492
|
+
readonly identityID: string;
|
|
79493
|
+
/**
|
|
79494
|
+
* Maximum number of outlier rows to return for this page.
|
|
79495
|
+
* @type {number}
|
|
79496
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
79497
|
+
*/
|
|
79498
|
+
readonly limit?: number;
|
|
79499
|
+
/**
|
|
79500
|
+
* Zero-based row index for the first returned outlier item.
|
|
79501
|
+
* @type {number}
|
|
79502
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
79503
|
+
*/
|
|
79504
|
+
readonly offset?: number;
|
|
79505
|
+
}
|
|
79329
79506
|
/**
|
|
79330
79507
|
* Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
|
|
79331
79508
|
* @export
|
|
@@ -79364,6 +79541,24 @@ export declare class IntelligencePackageV2026Api extends BaseAPI {
|
|
|
79364
79541
|
* @memberof IntelligencePackageV2026Api
|
|
79365
79542
|
*/
|
|
79366
79543
|
getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityAccessHistoryBodyV2026, any>>;
|
|
79544
|
+
/**
|
|
79545
|
+
* 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.
|
|
79546
|
+
* @summary Identity risk snapshot
|
|
79547
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
79548
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79549
|
+
* @throws {RequiredError}
|
|
79550
|
+
* @memberof IntelligencePackageV2026Api
|
|
79551
|
+
*/
|
|
79552
|
+
getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityRiskBodyV2026, any>>;
|
|
79553
|
+
/**
|
|
79554
|
+
* 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.
|
|
79555
|
+
* @summary Risk outliers continuation paging
|
|
79556
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
79557
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79558
|
+
* @throws {RequiredError}
|
|
79559
|
+
* @memberof IntelligencePackageV2026Api
|
|
79560
|
+
*/
|
|
79561
|
+
getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelIdentityRiskBodyV2026, any>>;
|
|
79367
79562
|
/**
|
|
79368
79563
|
* 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.
|
|
79369
79564
|
* @summary Resolve one identity by filter
|