sailpoint-api-client 1.8.52 → 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/api.js +1 -11
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.js +1 -11
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +303 -271
- package/dist/v2026/api.js +263 -506
- 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/api.ts +0 -4
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +0 -4
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +423 -511
- 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/dist/v2026/api.d.ts
CHANGED
|
@@ -1201,10 +1201,10 @@ export interface AccessProfileBulkUpdateRequestInnerV2026 {
|
|
|
1201
1201
|
export interface AccessProfileDetailsAccountSelectorV2026 {
|
|
1202
1202
|
/**
|
|
1203
1203
|
*
|
|
1204
|
-
* @type {Array<
|
|
1204
|
+
* @type {Array<AppAccessProfileSelectorV2026>}
|
|
1205
1205
|
* @memberof AccessProfileDetailsAccountSelectorV2026
|
|
1206
1206
|
*/
|
|
1207
|
-
'selectors'?: Array<
|
|
1207
|
+
'selectors'?: Array<AppAccessProfileSelectorV2026> | null;
|
|
1208
1208
|
}
|
|
1209
1209
|
/**
|
|
1210
1210
|
*
|
|
@@ -7002,6 +7002,57 @@ export interface AggregationsV2026 {
|
|
|
7002
7002
|
*/
|
|
7003
7003
|
'bucket'?: BucketAggregationV2026;
|
|
7004
7004
|
}
|
|
7005
|
+
/**
|
|
7006
|
+
*
|
|
7007
|
+
* @export
|
|
7008
|
+
* @interface AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026
|
|
7009
|
+
*/
|
|
7010
|
+
export interface AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026 {
|
|
7011
|
+
/**
|
|
7012
|
+
*
|
|
7013
|
+
* @type {Array<MatchTermV2026>}
|
|
7014
|
+
* @memberof AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026
|
|
7015
|
+
*/
|
|
7016
|
+
'matchTerms'?: Array<MatchTermV2026>;
|
|
7017
|
+
/**
|
|
7018
|
+
* If it is AND operators for match terms
|
|
7019
|
+
* @type {boolean}
|
|
7020
|
+
* @memberof AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026
|
|
7021
|
+
*/
|
|
7022
|
+
'and'?: boolean;
|
|
7023
|
+
}
|
|
7024
|
+
/**
|
|
7025
|
+
*
|
|
7026
|
+
* @export
|
|
7027
|
+
* @interface AppAccessProfileSelectorAccountMatchConfigV2026
|
|
7028
|
+
*/
|
|
7029
|
+
export interface AppAccessProfileSelectorAccountMatchConfigV2026 {
|
|
7030
|
+
/**
|
|
7031
|
+
*
|
|
7032
|
+
* @type {AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026}
|
|
7033
|
+
* @memberof AppAccessProfileSelectorAccountMatchConfigV2026
|
|
7034
|
+
*/
|
|
7035
|
+
'matchExpression'?: AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026;
|
|
7036
|
+
}
|
|
7037
|
+
/**
|
|
7038
|
+
*
|
|
7039
|
+
* @export
|
|
7040
|
+
* @interface AppAccessProfileSelectorV2026
|
|
7041
|
+
*/
|
|
7042
|
+
export interface AppAccessProfileSelectorV2026 {
|
|
7043
|
+
/**
|
|
7044
|
+
* The application id
|
|
7045
|
+
* @type {string}
|
|
7046
|
+
* @memberof AppAccessProfileSelectorV2026
|
|
7047
|
+
*/
|
|
7048
|
+
'applicationId'?: string;
|
|
7049
|
+
/**
|
|
7050
|
+
*
|
|
7051
|
+
* @type {AppAccessProfileSelectorAccountMatchConfigV2026}
|
|
7052
|
+
* @memberof AppAccessProfileSelectorV2026
|
|
7053
|
+
*/
|
|
7054
|
+
'accountMatchConfig'?: AppAccessProfileSelectorAccountMatchConfigV2026;
|
|
7055
|
+
}
|
|
7005
7056
|
/**
|
|
7006
7057
|
*
|
|
7007
7058
|
* @export
|
|
@@ -26084,6 +26135,12 @@ export interface IntelIdentityLinksV2026 {
|
|
|
26084
26135
|
* @memberof IntelIdentityLinksV2026
|
|
26085
26136
|
*/
|
|
26086
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;
|
|
26087
26144
|
/**
|
|
26088
26145
|
* Hyperlink to the Intelligence Package access history document for this identity.
|
|
26089
26146
|
* @type {IntelHrefV2026}
|
|
@@ -26115,7 +26172,7 @@ export declare const IntelIdentityNotFoundBodyV2026DetailCodeV2026: {
|
|
|
26115
26172
|
};
|
|
26116
26173
|
export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
|
|
26117
26174
|
/**
|
|
26118
|
-
* 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.
|
|
26119
26176
|
* @export
|
|
26120
26177
|
* @interface IntelIdentityResponseV2026
|
|
26121
26178
|
*/
|
|
@@ -26194,6 +26251,31 @@ export declare const IntelIdentityResponseV2026TypeV2026: {
|
|
|
26194
26251
|
readonly Machine: "MACHINE";
|
|
26195
26252
|
};
|
|
26196
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
|
+
}
|
|
26197
26279
|
/**
|
|
26198
26280
|
*
|
|
26199
26281
|
* @export
|
|
@@ -26311,6 +26393,49 @@ export interface IntelMachineV2026 {
|
|
|
26311
26393
|
*/
|
|
26312
26394
|
'userEntitlements'?: Array<object>;
|
|
26313
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
|
+
}
|
|
26314
26439
|
/**
|
|
26315
26440
|
* Source metadata associated with the privileged access item when present.
|
|
26316
26441
|
* @export
|
|
@@ -26391,6 +26516,19 @@ export interface IntelPrivilegedAccessItemWireV2026 {
|
|
|
26391
26516
|
*/
|
|
26392
26517
|
'value'?: string;
|
|
26393
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
|
+
}
|
|
26394
26532
|
/**
|
|
26395
26533
|
*
|
|
26396
26534
|
* @export
|
|
@@ -43454,17 +43592,23 @@ export type Schedule1V2026TypeV2026 = typeof Schedule1V2026TypeV2026[keyof typeo
|
|
|
43454
43592
|
*/
|
|
43455
43593
|
export interface Schedule2DaysV2026 {
|
|
43456
43594
|
/**
|
|
43457
|
-
*
|
|
43458
|
-
* @type {
|
|
43595
|
+
*
|
|
43596
|
+
* @type {SelectorTypeV2026}
|
|
43459
43597
|
* @memberof Schedule2DaysV2026
|
|
43460
43598
|
*/
|
|
43461
|
-
'
|
|
43599
|
+
'type': SelectorTypeV2026;
|
|
43462
43600
|
/**
|
|
43463
|
-
*
|
|
43464
|
-
* @type {
|
|
43601
|
+
* The selected values.
|
|
43602
|
+
* @type {Array<string>}
|
|
43465
43603
|
* @memberof Schedule2DaysV2026
|
|
43466
43604
|
*/
|
|
43467
|
-
'
|
|
43605
|
+
'values': Array<string>;
|
|
43606
|
+
/**
|
|
43607
|
+
* The selected interval for RANGE selectors.
|
|
43608
|
+
* @type {number}
|
|
43609
|
+
* @memberof Schedule2DaysV2026
|
|
43610
|
+
*/
|
|
43611
|
+
'interval'?: number | null;
|
|
43468
43612
|
}
|
|
43469
43613
|
/**
|
|
43470
43614
|
*
|
|
@@ -43473,17 +43617,23 @@ export interface Schedule2DaysV2026 {
|
|
|
43473
43617
|
*/
|
|
43474
43618
|
export interface Schedule2HoursV2026 {
|
|
43475
43619
|
/**
|
|
43476
|
-
*
|
|
43477
|
-
* @type {
|
|
43620
|
+
*
|
|
43621
|
+
* @type {SelectorTypeV2026}
|
|
43478
43622
|
* @memberof Schedule2HoursV2026
|
|
43479
43623
|
*/
|
|
43480
|
-
'
|
|
43624
|
+
'type': SelectorTypeV2026;
|
|
43481
43625
|
/**
|
|
43482
|
-
*
|
|
43483
|
-
* @type {
|
|
43626
|
+
* The selected values.
|
|
43627
|
+
* @type {Array<string>}
|
|
43484
43628
|
* @memberof Schedule2HoursV2026
|
|
43485
43629
|
*/
|
|
43486
|
-
'
|
|
43630
|
+
'values': Array<string>;
|
|
43631
|
+
/**
|
|
43632
|
+
* The selected interval for RANGE selectors.
|
|
43633
|
+
* @type {number}
|
|
43634
|
+
* @memberof Schedule2HoursV2026
|
|
43635
|
+
*/
|
|
43636
|
+
'interval'?: number | null;
|
|
43487
43637
|
}
|
|
43488
43638
|
/**
|
|
43489
43639
|
*
|
|
@@ -43492,17 +43642,23 @@ export interface Schedule2HoursV2026 {
|
|
|
43492
43642
|
*/
|
|
43493
43643
|
export interface Schedule2MonthsV2026 {
|
|
43494
43644
|
/**
|
|
43495
|
-
*
|
|
43496
|
-
* @type {
|
|
43645
|
+
*
|
|
43646
|
+
* @type {SelectorTypeV2026}
|
|
43497
43647
|
* @memberof Schedule2MonthsV2026
|
|
43498
43648
|
*/
|
|
43499
|
-
'
|
|
43649
|
+
'type': SelectorTypeV2026;
|
|
43500
43650
|
/**
|
|
43501
|
-
*
|
|
43502
|
-
* @type {
|
|
43651
|
+
* The selected values.
|
|
43652
|
+
* @type {Array<string>}
|
|
43653
|
+
* @memberof Schedule2MonthsV2026
|
|
43654
|
+
*/
|
|
43655
|
+
'values': Array<string>;
|
|
43656
|
+
/**
|
|
43657
|
+
* The selected interval for RANGE selectors.
|
|
43658
|
+
* @type {number}
|
|
43503
43659
|
* @memberof Schedule2MonthsV2026
|
|
43504
43660
|
*/
|
|
43505
|
-
'
|
|
43661
|
+
'interval'?: number | null;
|
|
43506
43662
|
}
|
|
43507
43663
|
/**
|
|
43508
43664
|
* The schedule information.
|
|
@@ -45345,55 +45501,39 @@ export interface SegmentVisibilityCriteriaV2026 {
|
|
|
45345
45501
|
'expression'?: ExpressionV2026;
|
|
45346
45502
|
}
|
|
45347
45503
|
/**
|
|
45348
|
-
*
|
|
45504
|
+
* Enum representing the currently supported selector types. LIST - the *values* array contains one or more distinct values. RANGE - the *values* array contains two values: the start and end of the range, inclusive. Additional values may be added in the future without notice.
|
|
45349
45505
|
* @export
|
|
45350
|
-
* @
|
|
45506
|
+
* @enum {string}
|
|
45351
45507
|
*/
|
|
45352
|
-
export
|
|
45353
|
-
|
|
45354
|
-
|
|
45355
|
-
|
|
45356
|
-
|
|
45357
|
-
*/
|
|
45358
|
-
'matchTerms'?: Array<MatchTermV2026>;
|
|
45359
|
-
/**
|
|
45360
|
-
* If it is AND operators for match terms
|
|
45361
|
-
* @type {boolean}
|
|
45362
|
-
* @memberof SelectorAccountMatchConfigMatchExpressionV2026
|
|
45363
|
-
*/
|
|
45364
|
-
'and'?: boolean;
|
|
45365
|
-
}
|
|
45508
|
+
export declare const SelectorTypeV2026: {
|
|
45509
|
+
readonly List: "LIST";
|
|
45510
|
+
readonly Range: "RANGE";
|
|
45511
|
+
};
|
|
45512
|
+
export type SelectorTypeV2026 = typeof SelectorTypeV2026[keyof typeof SelectorTypeV2026];
|
|
45366
45513
|
/**
|
|
45367
45514
|
*
|
|
45368
45515
|
* @export
|
|
45369
|
-
* @interface
|
|
45516
|
+
* @interface SelectorV2026
|
|
45370
45517
|
*/
|
|
45371
|
-
export interface
|
|
45518
|
+
export interface SelectorV2026 {
|
|
45372
45519
|
/**
|
|
45373
45520
|
*
|
|
45374
|
-
* @type {
|
|
45375
|
-
* @memberof
|
|
45521
|
+
* @type {SelectorTypeV2026}
|
|
45522
|
+
* @memberof SelectorV2026
|
|
45376
45523
|
*/
|
|
45377
|
-
'
|
|
45378
|
-
}
|
|
45379
|
-
/**
|
|
45380
|
-
*
|
|
45381
|
-
* @export
|
|
45382
|
-
* @interface SelectorV2026
|
|
45383
|
-
*/
|
|
45384
|
-
export interface SelectorV2026 {
|
|
45524
|
+
'type': SelectorTypeV2026;
|
|
45385
45525
|
/**
|
|
45386
|
-
* The
|
|
45387
|
-
* @type {string}
|
|
45526
|
+
* The selected values.
|
|
45527
|
+
* @type {Array<string>}
|
|
45388
45528
|
* @memberof SelectorV2026
|
|
45389
45529
|
*/
|
|
45390
|
-
'
|
|
45530
|
+
'values': Array<string>;
|
|
45391
45531
|
/**
|
|
45392
|
-
*
|
|
45393
|
-
* @type {
|
|
45532
|
+
* The selected interval for RANGE selectors.
|
|
45533
|
+
* @type {number}
|
|
45394
45534
|
* @memberof SelectorV2026
|
|
45395
45535
|
*/
|
|
45396
|
-
'
|
|
45536
|
+
'interval'?: number | null;
|
|
45397
45537
|
}
|
|
45398
45538
|
/**
|
|
45399
45539
|
* Self block for imported/exported object.
|
|
@@ -79157,6 +79297,24 @@ export declare const IntelligencePackageV2026ApiAxiosParamCreator: (configuratio
|
|
|
79157
79297
|
* @throws {RequiredError}
|
|
79158
79298
|
*/
|
|
79159
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>;
|
|
79160
79318
|
/**
|
|
79161
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.
|
|
79162
79320
|
* @summary Resolve one identity by filter
|
|
@@ -79190,6 +79348,24 @@ export declare const IntelligencePackageV2026ApiFp: (configuration?: Configurati
|
|
|
79190
79348
|
* @throws {RequiredError}
|
|
79191
79349
|
*/
|
|
79192
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>>;
|
|
79193
79369
|
/**
|
|
79194
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.
|
|
79195
79371
|
* @summary Resolve one identity by filter
|
|
@@ -79220,6 +79396,22 @@ export declare const IntelligencePackageV2026ApiFactory: (configuration?: Config
|
|
|
79220
79396
|
* @throws {RequiredError}
|
|
79221
79397
|
*/
|
|
79222
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>;
|
|
79223
79415
|
/**
|
|
79224
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.
|
|
79225
79417
|
* @summary Resolve one identity by filter
|
|
@@ -79273,6 +79465,44 @@ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
|
|
|
79273
79465
|
*/
|
|
79274
79466
|
readonly count?: boolean;
|
|
79275
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
|
+
}
|
|
79276
79506
|
/**
|
|
79277
79507
|
* Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
|
|
79278
79508
|
* @export
|
|
@@ -79311,6 +79541,24 @@ export declare class IntelligencePackageV2026Api extends BaseAPI {
|
|
|
79311
79541
|
* @memberof IntelligencePackageV2026Api
|
|
79312
79542
|
*/
|
|
79313
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>>;
|
|
79314
79562
|
/**
|
|
79315
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.
|
|
79316
79564
|
* @summary Resolve one identity by filter
|
|
@@ -81380,24 +81628,6 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
81380
81628
|
* @throws {RequiredError}
|
|
81381
81629
|
*/
|
|
81382
81630
|
deleteMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81383
|
-
/**
|
|
81384
|
-
* Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
|
|
81385
|
-
* @summary Bulk disable machine accounts
|
|
81386
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
81387
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81388
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81389
|
-
* @throws {RequiredError}
|
|
81390
|
-
*/
|
|
81391
|
-
disableMachineAccountsInBulk: (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81392
|
-
/**
|
|
81393
|
-
* Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
|
|
81394
|
-
* @summary Bulk enable machine accounts
|
|
81395
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
81396
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81397
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81398
|
-
* @throws {RequiredError}
|
|
81399
|
-
*/
|
|
81400
|
-
enableMachineAccountsInBulk: (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81401
81631
|
/**
|
|
81402
81632
|
* Use this API to return the details for a single machine account by its ID.
|
|
81403
81633
|
* @summary Get machine account details
|
|
@@ -81482,15 +81712,6 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
81482
81712
|
* @throws {RequiredError}
|
|
81483
81713
|
*/
|
|
81484
81714
|
patchMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81485
|
-
/**
|
|
81486
|
-
* Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
|
|
81487
|
-
* @summary Bulk reload machine accounts
|
|
81488
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
81489
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81490
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81491
|
-
* @throws {RequiredError}
|
|
81492
|
-
*/
|
|
81493
|
-
reloadMachineAccountsInBulk: (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81494
81715
|
/**
|
|
81495
81716
|
* Use this API to update machine accounts details.
|
|
81496
81717
|
* @summary Update machine account details
|
|
@@ -81511,15 +81732,6 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
81511
81732
|
* @throws {RequiredError}
|
|
81512
81733
|
*/
|
|
81513
81734
|
updateMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81514
|
-
/**
|
|
81515
|
-
* Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
|
|
81516
|
-
* @summary Bulk update machine accounts
|
|
81517
|
-
* @param {MisBulkUpdateRequestV2026} misBulkUpdateRequestV2026
|
|
81518
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81519
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81520
|
-
* @throws {RequiredError}
|
|
81521
|
-
*/
|
|
81522
|
-
updateMachineAccountsInBulk: (misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81523
81735
|
};
|
|
81524
81736
|
/**
|
|
81525
81737
|
* MachineAccountsV2026Api - functional programming interface
|
|
@@ -81546,24 +81758,6 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
81546
81758
|
* @throws {RequiredError}
|
|
81547
81759
|
*/
|
|
81548
81760
|
deleteMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
81549
|
-
/**
|
|
81550
|
-
* Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
|
|
81551
|
-
* @summary Bulk disable machine accounts
|
|
81552
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
81553
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81554
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81555
|
-
* @throws {RequiredError}
|
|
81556
|
-
*/
|
|
81557
|
-
disableMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>>;
|
|
81558
|
-
/**
|
|
81559
|
-
* Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
|
|
81560
|
-
* @summary Bulk enable machine accounts
|
|
81561
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
81562
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81563
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81564
|
-
* @throws {RequiredError}
|
|
81565
|
-
*/
|
|
81566
|
-
enableMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>>;
|
|
81567
81761
|
/**
|
|
81568
81762
|
* Use this API to return the details for a single machine account by its ID.
|
|
81569
81763
|
* @summary Get machine account details
|
|
@@ -81648,15 +81842,6 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
81648
81842
|
* @throws {RequiredError}
|
|
81649
81843
|
*/
|
|
81650
81844
|
patchMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
|
|
81651
|
-
/**
|
|
81652
|
-
* Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
|
|
81653
|
-
* @summary Bulk reload machine accounts
|
|
81654
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
81655
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81656
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81657
|
-
* @throws {RequiredError}
|
|
81658
|
-
*/
|
|
81659
|
-
reloadMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MisBulkResponseV2026>>>;
|
|
81660
81845
|
/**
|
|
81661
81846
|
* Use this API to update machine accounts details.
|
|
81662
81847
|
* @summary Update machine account details
|
|
@@ -81677,15 +81862,6 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
81677
81862
|
* @throws {RequiredError}
|
|
81678
81863
|
*/
|
|
81679
81864
|
updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
|
|
81680
|
-
/**
|
|
81681
|
-
* Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
|
|
81682
|
-
* @summary Bulk update machine accounts
|
|
81683
|
-
* @param {MisBulkUpdateRequestV2026} misBulkUpdateRequestV2026
|
|
81684
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81685
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81686
|
-
* @throws {RequiredError}
|
|
81687
|
-
*/
|
|
81688
|
-
updateMachineAccountsInBulk(misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MisBulkResponseV2026>>>;
|
|
81689
81865
|
};
|
|
81690
81866
|
/**
|
|
81691
81867
|
* MachineAccountsV2026Api - factory interface
|
|
@@ -81708,22 +81884,6 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
81708
81884
|
* @throws {RequiredError}
|
|
81709
81885
|
*/
|
|
81710
81886
|
deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
81711
|
-
/**
|
|
81712
|
-
* Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
|
|
81713
|
-
* @summary Bulk disable machine accounts
|
|
81714
|
-
* @param {MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
81715
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81716
|
-
* @throws {RequiredError}
|
|
81717
|
-
*/
|
|
81718
|
-
disableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026>;
|
|
81719
|
-
/**
|
|
81720
|
-
* Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
|
|
81721
|
-
* @summary Bulk enable machine accounts
|
|
81722
|
-
* @param {MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
81723
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81724
|
-
* @throws {RequiredError}
|
|
81725
|
-
*/
|
|
81726
|
-
enableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026>;
|
|
81727
81887
|
/**
|
|
81728
81888
|
* Use this API to return the details for a single machine account by its ID.
|
|
81729
81889
|
* @summary Get machine account details
|
|
@@ -81788,14 +81948,6 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
81788
81948
|
* @throws {RequiredError}
|
|
81789
81949
|
*/
|
|
81790
81950
|
patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
|
|
81791
|
-
/**
|
|
81792
|
-
* Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
|
|
81793
|
-
* @summary Bulk reload machine accounts
|
|
81794
|
-
* @param {MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
81795
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81796
|
-
* @throws {RequiredError}
|
|
81797
|
-
*/
|
|
81798
|
-
reloadMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MisBulkResponseV2026>>;
|
|
81799
81951
|
/**
|
|
81800
81952
|
* Use this API to update machine accounts details.
|
|
81801
81953
|
* @summary Update machine account details
|
|
@@ -81812,14 +81964,6 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
81812
81964
|
* @throws {RequiredError}
|
|
81813
81965
|
*/
|
|
81814
81966
|
updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
|
|
81815
|
-
/**
|
|
81816
|
-
* Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
|
|
81817
|
-
* @summary Bulk update machine accounts
|
|
81818
|
-
* @param {MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
81819
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81820
|
-
* @throws {RequiredError}
|
|
81821
|
-
*/
|
|
81822
|
-
updateMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MisBulkResponseV2026>>;
|
|
81823
81967
|
};
|
|
81824
81968
|
/**
|
|
81825
81969
|
* Request parameters for createMachineAccountSubtype operation in MachineAccountsV2026Api.
|
|
@@ -81871,44 +82015,6 @@ export interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNa
|
|
|
81871
82015
|
*/
|
|
81872
82016
|
readonly xSailPointExperimental?: string;
|
|
81873
82017
|
}
|
|
81874
|
-
/**
|
|
81875
|
-
* Request parameters for disableMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
81876
|
-
* @export
|
|
81877
|
-
* @interface MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest
|
|
81878
|
-
*/
|
|
81879
|
-
export interface MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest {
|
|
81880
|
-
/**
|
|
81881
|
-
*
|
|
81882
|
-
* @type {MisBulkRequestV2026}
|
|
81883
|
-
* @memberof MachineAccountsV2026ApiDisableMachineAccountsInBulk
|
|
81884
|
-
*/
|
|
81885
|
-
readonly misBulkRequestV2026: MisBulkRequestV2026;
|
|
81886
|
-
/**
|
|
81887
|
-
* Use this header to enable this experimental API.
|
|
81888
|
-
* @type {string}
|
|
81889
|
-
* @memberof MachineAccountsV2026ApiDisableMachineAccountsInBulk
|
|
81890
|
-
*/
|
|
81891
|
-
readonly xSailPointExperimental?: string;
|
|
81892
|
-
}
|
|
81893
|
-
/**
|
|
81894
|
-
* Request parameters for enableMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
81895
|
-
* @export
|
|
81896
|
-
* @interface MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest
|
|
81897
|
-
*/
|
|
81898
|
-
export interface MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest {
|
|
81899
|
-
/**
|
|
81900
|
-
*
|
|
81901
|
-
* @type {MisBulkRequestV2026}
|
|
81902
|
-
* @memberof MachineAccountsV2026ApiEnableMachineAccountsInBulk
|
|
81903
|
-
*/
|
|
81904
|
-
readonly misBulkRequestV2026: MisBulkRequestV2026;
|
|
81905
|
-
/**
|
|
81906
|
-
* Use this header to enable this experimental API.
|
|
81907
|
-
* @type {string}
|
|
81908
|
-
* @memberof MachineAccountsV2026ApiEnableMachineAccountsInBulk
|
|
81909
|
-
*/
|
|
81910
|
-
readonly xSailPointExperimental?: string;
|
|
81911
|
-
}
|
|
81912
82018
|
/**
|
|
81913
82019
|
* Request parameters for getMachineAccount operation in MachineAccountsV2026Api.
|
|
81914
82020
|
* @export
|
|
@@ -82133,25 +82239,6 @@ export interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNam
|
|
|
82133
82239
|
*/
|
|
82134
82240
|
readonly xSailPointExperimental?: string;
|
|
82135
82241
|
}
|
|
82136
|
-
/**
|
|
82137
|
-
* Request parameters for reloadMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
82138
|
-
* @export
|
|
82139
|
-
* @interface MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest
|
|
82140
|
-
*/
|
|
82141
|
-
export interface MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest {
|
|
82142
|
-
/**
|
|
82143
|
-
*
|
|
82144
|
-
* @type {MisBulkRequestV2026}
|
|
82145
|
-
* @memberof MachineAccountsV2026ApiReloadMachineAccountsInBulk
|
|
82146
|
-
*/
|
|
82147
|
-
readonly misBulkRequestV2026: MisBulkRequestV2026;
|
|
82148
|
-
/**
|
|
82149
|
-
* Use this header to enable this experimental API.
|
|
82150
|
-
* @type {string}
|
|
82151
|
-
* @memberof MachineAccountsV2026ApiReloadMachineAccountsInBulk
|
|
82152
|
-
*/
|
|
82153
|
-
readonly xSailPointExperimental?: string;
|
|
82154
|
-
}
|
|
82155
82242
|
/**
|
|
82156
82243
|
* Request parameters for updateMachineAccount operation in MachineAccountsV2026Api.
|
|
82157
82244
|
* @export
|
|
@@ -82202,25 +82289,6 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfi
|
|
|
82202
82289
|
*/
|
|
82203
82290
|
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
82204
82291
|
}
|
|
82205
|
-
/**
|
|
82206
|
-
* Request parameters for updateMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
82207
|
-
* @export
|
|
82208
|
-
* @interface MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest
|
|
82209
|
-
*/
|
|
82210
|
-
export interface MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest {
|
|
82211
|
-
/**
|
|
82212
|
-
*
|
|
82213
|
-
* @type {MisBulkUpdateRequestV2026}
|
|
82214
|
-
* @memberof MachineAccountsV2026ApiUpdateMachineAccountsInBulk
|
|
82215
|
-
*/
|
|
82216
|
-
readonly misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026;
|
|
82217
|
-
/**
|
|
82218
|
-
* Use this header to enable this experimental API.
|
|
82219
|
-
* @type {string}
|
|
82220
|
-
* @memberof MachineAccountsV2026ApiUpdateMachineAccountsInBulk
|
|
82221
|
-
*/
|
|
82222
|
-
readonly xSailPointExperimental?: string;
|
|
82223
|
-
}
|
|
82224
82292
|
/**
|
|
82225
82293
|
* MachineAccountsV2026Api - object-oriented interface
|
|
82226
82294
|
* @export
|
|
@@ -82246,24 +82314,6 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
82246
82314
|
* @memberof MachineAccountsV2026Api
|
|
82247
82315
|
*/
|
|
82248
82316
|
deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
82249
|
-
/**
|
|
82250
|
-
* Submits an asynchronous request to disable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:disable** right may still disable accounts they own. Non-owned IDs are excluded from the task.
|
|
82251
|
-
* @summary Bulk disable machine accounts
|
|
82252
|
-
* @param {MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
82253
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82254
|
-
* @throws {RequiredError}
|
|
82255
|
-
* @memberof MachineAccountsV2026Api
|
|
82256
|
-
*/
|
|
82257
|
-
disableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestAsyncResultV2026, any>>;
|
|
82258
|
-
/**
|
|
82259
|
-
* Submits an asynchronous request to enable up to 100 machine accounts. The response returns HTTP 202 Accepted with an **accountRequestId** task identifier. Use the account request APIs to track completion. Callers without the **idn:mis-account:enable** right may still enable accounts they own. Non-owned IDs are excluded from the task.
|
|
82260
|
-
* @summary Bulk enable machine accounts
|
|
82261
|
-
* @param {MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
82262
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82263
|
-
* @throws {RequiredError}
|
|
82264
|
-
* @memberof MachineAccountsV2026Api
|
|
82265
|
-
*/
|
|
82266
|
-
enableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestAsyncResultV2026, any>>;
|
|
82267
82317
|
/**
|
|
82268
82318
|
* Use this API to return the details for a single machine account by its ID.
|
|
82269
82319
|
* @summary Get machine account details
|
|
@@ -82336,15 +82386,6 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
82336
82386
|
* @memberof MachineAccountsV2026Api
|
|
82337
82387
|
*/
|
|
82338
82388
|
patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeV2026, any>>;
|
|
82339
|
-
/**
|
|
82340
|
-
* Queues a reload for up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field. Callers without the **idn:mis-account:reload** right may still reload accounts they own.
|
|
82341
|
-
* @summary Bulk reload machine accounts
|
|
82342
|
-
* @param {MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
82343
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82344
|
-
* @throws {RequiredError}
|
|
82345
|
-
* @memberof MachineAccountsV2026Api
|
|
82346
|
-
*/
|
|
82347
|
-
reloadMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MisBulkResponseV2026[], any>>;
|
|
82348
82389
|
/**
|
|
82349
82390
|
* Use this API to update machine accounts details.
|
|
82350
82391
|
* @summary Update machine account details
|
|
@@ -82363,15 +82404,6 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
82363
82404
|
* @memberof MachineAccountsV2026Api
|
|
82364
82405
|
*/
|
|
82365
82406
|
updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
|
|
82366
|
-
/**
|
|
82367
|
-
* Applies the same JSON Patch document to up to 100 machine accounts in one request. The response uses HTTP 207 Multi-Status. Each array element reports the result for one requested ID in its **status** field (for example, 200 for success, 404 if the account was not found or is not accessible to the caller, 409 for a duplicate ID in the batch). Callers without the **idn:mis-account:update** right may still update accounts they own. IDs the caller cannot operate on are reported as not found or failed in the per-row results. Patchable fields include **description**, **subtype**, **environment**, **machineIdentity**, **ownerIdentity**, and **manuallyEdited** only.
|
|
82368
|
-
* @summary Bulk update machine accounts
|
|
82369
|
-
* @param {MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
82370
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82371
|
-
* @throws {RequiredError}
|
|
82372
|
-
* @memberof MachineAccountsV2026Api
|
|
82373
|
-
*/
|
|
82374
|
-
updateMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MisBulkResponseV2026[], any>>;
|
|
82375
82407
|
}
|
|
82376
82408
|
/**
|
|
82377
82409
|
* MachineClassificationConfigV2026Api - axios parameter creator
|