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/v2026/api.ts
CHANGED
|
@@ -1260,10 +1260,10 @@ export interface AccessProfileBulkUpdateRequestInnerV2026 {
|
|
|
1260
1260
|
export interface AccessProfileDetailsAccountSelectorV2026 {
|
|
1261
1261
|
/**
|
|
1262
1262
|
*
|
|
1263
|
-
* @type {Array<
|
|
1263
|
+
* @type {Array<AppAccessProfileSelectorV2026>}
|
|
1264
1264
|
* @memberof AccessProfileDetailsAccountSelectorV2026
|
|
1265
1265
|
*/
|
|
1266
|
-
'selectors'?: Array<
|
|
1266
|
+
'selectors'?: Array<AppAccessProfileSelectorV2026> | null;
|
|
1267
1267
|
}
|
|
1268
1268
|
/**
|
|
1269
1269
|
*
|
|
@@ -7245,6 +7245,57 @@ export interface AggregationsV2026 {
|
|
|
7245
7245
|
*/
|
|
7246
7246
|
'bucket'?: BucketAggregationV2026;
|
|
7247
7247
|
}
|
|
7248
|
+
/**
|
|
7249
|
+
*
|
|
7250
|
+
* @export
|
|
7251
|
+
* @interface AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026
|
|
7252
|
+
*/
|
|
7253
|
+
export interface AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026 {
|
|
7254
|
+
/**
|
|
7255
|
+
*
|
|
7256
|
+
* @type {Array<MatchTermV2026>}
|
|
7257
|
+
* @memberof AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026
|
|
7258
|
+
*/
|
|
7259
|
+
'matchTerms'?: Array<MatchTermV2026>;
|
|
7260
|
+
/**
|
|
7261
|
+
* If it is AND operators for match terms
|
|
7262
|
+
* @type {boolean}
|
|
7263
|
+
* @memberof AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026
|
|
7264
|
+
*/
|
|
7265
|
+
'and'?: boolean;
|
|
7266
|
+
}
|
|
7267
|
+
/**
|
|
7268
|
+
*
|
|
7269
|
+
* @export
|
|
7270
|
+
* @interface AppAccessProfileSelectorAccountMatchConfigV2026
|
|
7271
|
+
*/
|
|
7272
|
+
export interface AppAccessProfileSelectorAccountMatchConfigV2026 {
|
|
7273
|
+
/**
|
|
7274
|
+
*
|
|
7275
|
+
* @type {AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026}
|
|
7276
|
+
* @memberof AppAccessProfileSelectorAccountMatchConfigV2026
|
|
7277
|
+
*/
|
|
7278
|
+
'matchExpression'?: AppAccessProfileSelectorAccountMatchConfigMatchExpressionV2026;
|
|
7279
|
+
}
|
|
7280
|
+
/**
|
|
7281
|
+
*
|
|
7282
|
+
* @export
|
|
7283
|
+
* @interface AppAccessProfileSelectorV2026
|
|
7284
|
+
*/
|
|
7285
|
+
export interface AppAccessProfileSelectorV2026 {
|
|
7286
|
+
/**
|
|
7287
|
+
* The application id
|
|
7288
|
+
* @type {string}
|
|
7289
|
+
* @memberof AppAccessProfileSelectorV2026
|
|
7290
|
+
*/
|
|
7291
|
+
'applicationId'?: string;
|
|
7292
|
+
/**
|
|
7293
|
+
*
|
|
7294
|
+
* @type {AppAccessProfileSelectorAccountMatchConfigV2026}
|
|
7295
|
+
* @memberof AppAccessProfileSelectorV2026
|
|
7296
|
+
*/
|
|
7297
|
+
'accountMatchConfig'?: AppAccessProfileSelectorAccountMatchConfigV2026;
|
|
7298
|
+
}
|
|
7248
7299
|
/**
|
|
7249
7300
|
*
|
|
7250
7301
|
* @export
|
|
@@ -26851,6 +26902,12 @@ export interface IntelIdentityLinksV2026 {
|
|
|
26851
26902
|
* @memberof IntelIdentityLinksV2026
|
|
26852
26903
|
*/
|
|
26853
26904
|
'access': IntelHrefV2026;
|
|
26905
|
+
/**
|
|
26906
|
+
* Hyperlink to the Intelligence Package risk document for this identity.
|
|
26907
|
+
* @type {IntelHrefV2026}
|
|
26908
|
+
* @memberof IntelIdentityLinksV2026
|
|
26909
|
+
*/
|
|
26910
|
+
'risk': IntelHrefV2026;
|
|
26854
26911
|
/**
|
|
26855
26912
|
* Hyperlink to the Intelligence Package access history document for this identity.
|
|
26856
26913
|
* @type {IntelHrefV2026}
|
|
@@ -26885,7 +26942,7 @@ export const IntelIdentityNotFoundBodyV2026DetailCodeV2026 = {
|
|
|
26885
26942
|
export type IntelIdentityNotFoundBodyV2026DetailCodeV2026 = typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026[keyof typeof IntelIdentityNotFoundBodyV2026DetailCodeV2026];
|
|
26886
26943
|
|
|
26887
26944
|
/**
|
|
26888
|
-
* HUMAN responses include human, top-level subtype (NERM classification: Employee, Non Employee, or Cannot Determine), and _links (access and accessHistory
|
|
26945
|
+
* 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.
|
|
26889
26946
|
* @export
|
|
26890
26947
|
* @interface IntelIdentityResponseV2026
|
|
26891
26948
|
*/
|
|
@@ -26965,6 +27022,31 @@ export const IntelIdentityResponseV2026TypeV2026 = {
|
|
|
26965
27022
|
|
|
26966
27023
|
export type IntelIdentityResponseV2026TypeV2026 = typeof IntelIdentityResponseV2026TypeV2026[keyof typeof IntelIdentityResponseV2026TypeV2026];
|
|
26967
27024
|
|
|
27025
|
+
/**
|
|
27026
|
+
* Shared response envelope for risk endpoints.
|
|
27027
|
+
* @export
|
|
27028
|
+
* @interface IntelIdentityRiskBodyV2026
|
|
27029
|
+
*/
|
|
27030
|
+
export interface IntelIdentityRiskBodyV2026 {
|
|
27031
|
+
/**
|
|
27032
|
+
* Page of outlier access-items associated with the resolved identity outlier.
|
|
27033
|
+
* @type {Array<IntelOutlierAccessItemV2026>}
|
|
27034
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27035
|
+
*/
|
|
27036
|
+
'outliers': Array<IntelOutlierAccessItemV2026>;
|
|
27037
|
+
/**
|
|
27038
|
+
* Total available outlier access-item count from upstream.
|
|
27039
|
+
* @type {number}
|
|
27040
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27041
|
+
*/
|
|
27042
|
+
'outliersTotal': number | null;
|
|
27043
|
+
/**
|
|
27044
|
+
* Continuation links map; omitted when no additional page exists.
|
|
27045
|
+
* @type {IntelRiskLinksV2026}
|
|
27046
|
+
* @memberof IntelIdentityRiskBodyV2026
|
|
27047
|
+
*/
|
|
27048
|
+
'_links'?: IntelRiskLinksV2026 | null;
|
|
27049
|
+
}
|
|
26968
27050
|
/**
|
|
26969
27051
|
*
|
|
26970
27052
|
* @export
|
|
@@ -27082,6 +27164,49 @@ export interface IntelMachineV2026 {
|
|
|
27082
27164
|
*/
|
|
27083
27165
|
'userEntitlements'?: Array<object>;
|
|
27084
27166
|
}
|
|
27167
|
+
/**
|
|
27168
|
+
* One outlier access-item row.
|
|
27169
|
+
* @export
|
|
27170
|
+
* @interface IntelOutlierAccessItemV2026
|
|
27171
|
+
*/
|
|
27172
|
+
export interface IntelOutlierAccessItemV2026 {
|
|
27173
|
+
/**
|
|
27174
|
+
* Stable identifier of the outlier access-item row.
|
|
27175
|
+
* @type {string}
|
|
27176
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27177
|
+
*/
|
|
27178
|
+
'id': string;
|
|
27179
|
+
/**
|
|
27180
|
+
* Display label of the risky access item.
|
|
27181
|
+
* @type {string}
|
|
27182
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27183
|
+
*/
|
|
27184
|
+
'displayName': string;
|
|
27185
|
+
/**
|
|
27186
|
+
* Optional descriptive text for the risky access item.
|
|
27187
|
+
* @type {string}
|
|
27188
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27189
|
+
*/
|
|
27190
|
+
'description'?: string | null;
|
|
27191
|
+
/**
|
|
27192
|
+
* Access item type (for example ENTITLEMENT, ROLE, ACCESS_PROFILE, ACCOUNT, or APP).
|
|
27193
|
+
* @type {string}
|
|
27194
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27195
|
+
*/
|
|
27196
|
+
'accessType': string;
|
|
27197
|
+
/**
|
|
27198
|
+
* Source name where the risky access item exists.
|
|
27199
|
+
* @type {string}
|
|
27200
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27201
|
+
*/
|
|
27202
|
+
'sourceName': string;
|
|
27203
|
+
/**
|
|
27204
|
+
* Indicates whether analytics marked this item as extremely rare.
|
|
27205
|
+
* @type {boolean}
|
|
27206
|
+
* @memberof IntelOutlierAccessItemV2026
|
|
27207
|
+
*/
|
|
27208
|
+
'extremelyRare': boolean;
|
|
27209
|
+
}
|
|
27085
27210
|
/**
|
|
27086
27211
|
* Source metadata associated with the privileged access item when present.
|
|
27087
27212
|
* @export
|
|
@@ -27162,6 +27287,19 @@ export interface IntelPrivilegedAccessItemWireV2026 {
|
|
|
27162
27287
|
*/
|
|
27163
27288
|
'value'?: string;
|
|
27164
27289
|
}
|
|
27290
|
+
/**
|
|
27291
|
+
* Continuation links for risk responses.
|
|
27292
|
+
* @export
|
|
27293
|
+
* @interface IntelRiskLinksV2026
|
|
27294
|
+
*/
|
|
27295
|
+
export interface IntelRiskLinksV2026 {
|
|
27296
|
+
/**
|
|
27297
|
+
* Link to fetch the next outlier page for the same identity.
|
|
27298
|
+
* @type {IntelHrefV2026}
|
|
27299
|
+
* @memberof IntelRiskLinksV2026
|
|
27300
|
+
*/
|
|
27301
|
+
'outliers'?: IntelHrefV2026;
|
|
27302
|
+
}
|
|
27165
27303
|
/**
|
|
27166
27304
|
*
|
|
27167
27305
|
* @export
|
|
@@ -44706,18 +44844,26 @@ export type Schedule1V2026TypeV2026 = typeof Schedule1V2026TypeV2026[keyof typeo
|
|
|
44706
44844
|
*/
|
|
44707
44845
|
export interface Schedule2DaysV2026 {
|
|
44708
44846
|
/**
|
|
44709
|
-
*
|
|
44710
|
-
* @type {
|
|
44847
|
+
*
|
|
44848
|
+
* @type {SelectorTypeV2026}
|
|
44711
44849
|
* @memberof Schedule2DaysV2026
|
|
44712
44850
|
*/
|
|
44713
|
-
'
|
|
44851
|
+
'type': SelectorTypeV2026;
|
|
44714
44852
|
/**
|
|
44715
|
-
*
|
|
44716
|
-
* @type {
|
|
44853
|
+
* The selected values.
|
|
44854
|
+
* @type {Array<string>}
|
|
44717
44855
|
* @memberof Schedule2DaysV2026
|
|
44718
44856
|
*/
|
|
44719
|
-
'
|
|
44857
|
+
'values': Array<string>;
|
|
44858
|
+
/**
|
|
44859
|
+
* The selected interval for RANGE selectors.
|
|
44860
|
+
* @type {number}
|
|
44861
|
+
* @memberof Schedule2DaysV2026
|
|
44862
|
+
*/
|
|
44863
|
+
'interval'?: number | null;
|
|
44720
44864
|
}
|
|
44865
|
+
|
|
44866
|
+
|
|
44721
44867
|
/**
|
|
44722
44868
|
*
|
|
44723
44869
|
* @export
|
|
@@ -44725,18 +44871,26 @@ export interface Schedule2DaysV2026 {
|
|
|
44725
44871
|
*/
|
|
44726
44872
|
export interface Schedule2HoursV2026 {
|
|
44727
44873
|
/**
|
|
44728
|
-
*
|
|
44729
|
-
* @type {
|
|
44874
|
+
*
|
|
44875
|
+
* @type {SelectorTypeV2026}
|
|
44730
44876
|
* @memberof Schedule2HoursV2026
|
|
44731
44877
|
*/
|
|
44732
|
-
'
|
|
44878
|
+
'type': SelectorTypeV2026;
|
|
44733
44879
|
/**
|
|
44734
|
-
*
|
|
44735
|
-
* @type {
|
|
44880
|
+
* The selected values.
|
|
44881
|
+
* @type {Array<string>}
|
|
44736
44882
|
* @memberof Schedule2HoursV2026
|
|
44737
44883
|
*/
|
|
44738
|
-
'
|
|
44884
|
+
'values': Array<string>;
|
|
44885
|
+
/**
|
|
44886
|
+
* The selected interval for RANGE selectors.
|
|
44887
|
+
* @type {number}
|
|
44888
|
+
* @memberof Schedule2HoursV2026
|
|
44889
|
+
*/
|
|
44890
|
+
'interval'?: number | null;
|
|
44739
44891
|
}
|
|
44892
|
+
|
|
44893
|
+
|
|
44740
44894
|
/**
|
|
44741
44895
|
*
|
|
44742
44896
|
* @export
|
|
@@ -44744,18 +44898,26 @@ export interface Schedule2HoursV2026 {
|
|
|
44744
44898
|
*/
|
|
44745
44899
|
export interface Schedule2MonthsV2026 {
|
|
44746
44900
|
/**
|
|
44747
|
-
*
|
|
44748
|
-
* @type {
|
|
44901
|
+
*
|
|
44902
|
+
* @type {SelectorTypeV2026}
|
|
44749
44903
|
* @memberof Schedule2MonthsV2026
|
|
44750
44904
|
*/
|
|
44751
|
-
'
|
|
44905
|
+
'type': SelectorTypeV2026;
|
|
44752
44906
|
/**
|
|
44753
|
-
*
|
|
44754
|
-
* @type {
|
|
44907
|
+
* The selected values.
|
|
44908
|
+
* @type {Array<string>}
|
|
44909
|
+
* @memberof Schedule2MonthsV2026
|
|
44910
|
+
*/
|
|
44911
|
+
'values': Array<string>;
|
|
44912
|
+
/**
|
|
44913
|
+
* The selected interval for RANGE selectors.
|
|
44914
|
+
* @type {number}
|
|
44755
44915
|
* @memberof Schedule2MonthsV2026
|
|
44756
44916
|
*/
|
|
44757
|
-
'
|
|
44917
|
+
'interval'?: number | null;
|
|
44758
44918
|
}
|
|
44919
|
+
|
|
44920
|
+
|
|
44759
44921
|
/**
|
|
44760
44922
|
* The schedule information.
|
|
44761
44923
|
* @export
|
|
@@ -46644,56 +46806,46 @@ export interface SegmentVisibilityCriteriaV2026 {
|
|
|
46644
46806
|
'expression'?: ExpressionV2026;
|
|
46645
46807
|
}
|
|
46646
46808
|
/**
|
|
46647
|
-
*
|
|
46809
|
+
* 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.
|
|
46648
46810
|
* @export
|
|
46649
|
-
* @
|
|
46811
|
+
* @enum {string}
|
|
46650
46812
|
*/
|
|
46651
|
-
|
|
46652
|
-
|
|
46653
|
-
|
|
46654
|
-
|
|
46655
|
-
|
|
46656
|
-
|
|
46657
|
-
|
|
46658
|
-
|
|
46659
|
-
|
|
46660
|
-
* @type {boolean}
|
|
46661
|
-
* @memberof SelectorAccountMatchConfigMatchExpressionV2026
|
|
46662
|
-
*/
|
|
46663
|
-
'and'?: boolean;
|
|
46664
|
-
}
|
|
46813
|
+
|
|
46814
|
+
export const SelectorTypeV2026 = {
|
|
46815
|
+
List: 'LIST',
|
|
46816
|
+
Range: 'RANGE'
|
|
46817
|
+
} as const;
|
|
46818
|
+
|
|
46819
|
+
export type SelectorTypeV2026 = typeof SelectorTypeV2026[keyof typeof SelectorTypeV2026];
|
|
46820
|
+
|
|
46821
|
+
|
|
46665
46822
|
/**
|
|
46666
46823
|
*
|
|
46667
46824
|
* @export
|
|
46668
|
-
* @interface
|
|
46825
|
+
* @interface SelectorV2026
|
|
46669
46826
|
*/
|
|
46670
|
-
export interface
|
|
46827
|
+
export interface SelectorV2026 {
|
|
46671
46828
|
/**
|
|
46672
46829
|
*
|
|
46673
|
-
* @type {
|
|
46674
|
-
* @memberof
|
|
46830
|
+
* @type {SelectorTypeV2026}
|
|
46831
|
+
* @memberof SelectorV2026
|
|
46675
46832
|
*/
|
|
46676
|
-
'
|
|
46677
|
-
}
|
|
46678
|
-
/**
|
|
46679
|
-
*
|
|
46680
|
-
* @export
|
|
46681
|
-
* @interface SelectorV2026
|
|
46682
|
-
*/
|
|
46683
|
-
export interface SelectorV2026 {
|
|
46833
|
+
'type': SelectorTypeV2026;
|
|
46684
46834
|
/**
|
|
46685
|
-
* The
|
|
46686
|
-
* @type {string}
|
|
46835
|
+
* The selected values.
|
|
46836
|
+
* @type {Array<string>}
|
|
46687
46837
|
* @memberof SelectorV2026
|
|
46688
46838
|
*/
|
|
46689
|
-
'
|
|
46839
|
+
'values': Array<string>;
|
|
46690
46840
|
/**
|
|
46691
|
-
*
|
|
46692
|
-
* @type {
|
|
46841
|
+
* The selected interval for RANGE selectors.
|
|
46842
|
+
* @type {number}
|
|
46693
46843
|
* @memberof SelectorV2026
|
|
46694
46844
|
*/
|
|
46695
|
-
'
|
|
46845
|
+
'interval'?: number | null;
|
|
46696
46846
|
}
|
|
46847
|
+
|
|
46848
|
+
|
|
46697
46849
|
/**
|
|
46698
46850
|
* Self block for imported/exported object.
|
|
46699
46851
|
* @export
|
|
@@ -103398,6 +103550,108 @@ export const IntelligencePackageV2026ApiAxiosParamCreator = function (configurat
|
|
|
103398
103550
|
|
|
103399
103551
|
|
|
103400
103552
|
|
|
103553
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103554
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103555
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
103556
|
+
|
|
103557
|
+
return {
|
|
103558
|
+
url: toPathString(localVarUrlObj),
|
|
103559
|
+
axiosOptions: localVarRequestOptions,
|
|
103560
|
+
};
|
|
103561
|
+
},
|
|
103562
|
+
/**
|
|
103563
|
+
* 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.
|
|
103564
|
+
* @summary Identity risk snapshot
|
|
103565
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103566
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103567
|
+
* @throws {RequiredError}
|
|
103568
|
+
*/
|
|
103569
|
+
getIntelIdentityRisk: async (identityID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103570
|
+
// verify required parameter 'identityID' is not null or undefined
|
|
103571
|
+
assertParamExists('getIntelIdentityRisk', 'identityID', identityID)
|
|
103572
|
+
const localVarPath = `/intelligence/identities/{identityID}/risk`
|
|
103573
|
+
.replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
|
|
103574
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103575
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
103576
|
+
let baseOptions;
|
|
103577
|
+
if (configuration) {
|
|
103578
|
+
baseOptions = configuration.baseOptions;
|
|
103579
|
+
}
|
|
103580
|
+
|
|
103581
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
103582
|
+
const localVarHeaderParameter = {} as any;
|
|
103583
|
+
const localVarQueryParameter = {} as any;
|
|
103584
|
+
|
|
103585
|
+
// authentication userAuth required
|
|
103586
|
+
// oauth required
|
|
103587
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103588
|
+
|
|
103589
|
+
// authentication userAuth required
|
|
103590
|
+
// oauth required
|
|
103591
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103592
|
+
|
|
103593
|
+
// authentication applicationAuth required
|
|
103594
|
+
// oauth required
|
|
103595
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103596
|
+
|
|
103597
|
+
|
|
103598
|
+
|
|
103599
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103600
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103601
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
103602
|
+
|
|
103603
|
+
return {
|
|
103604
|
+
url: toPathString(localVarUrlObj),
|
|
103605
|
+
axiosOptions: localVarRequestOptions,
|
|
103606
|
+
};
|
|
103607
|
+
},
|
|
103608
|
+
/**
|
|
103609
|
+
* 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.
|
|
103610
|
+
* @summary Risk outliers continuation paging
|
|
103611
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103612
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
103613
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
103614
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103615
|
+
* @throws {RequiredError}
|
|
103616
|
+
*/
|
|
103617
|
+
getIntelIdentityRiskOutliers: async (identityID: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103618
|
+
// verify required parameter 'identityID' is not null or undefined
|
|
103619
|
+
assertParamExists('getIntelIdentityRiskOutliers', 'identityID', identityID)
|
|
103620
|
+
const localVarPath = `/intelligence/identities/{identityID}/risk/outliers`
|
|
103621
|
+
.replace(`{${"identityID"}}`, encodeURIComponent(String(identityID)));
|
|
103622
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103623
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
103624
|
+
let baseOptions;
|
|
103625
|
+
if (configuration) {
|
|
103626
|
+
baseOptions = configuration.baseOptions;
|
|
103627
|
+
}
|
|
103628
|
+
|
|
103629
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
103630
|
+
const localVarHeaderParameter = {} as any;
|
|
103631
|
+
const localVarQueryParameter = {} as any;
|
|
103632
|
+
|
|
103633
|
+
// authentication userAuth required
|
|
103634
|
+
// oauth required
|
|
103635
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103636
|
+
|
|
103637
|
+
// authentication userAuth required
|
|
103638
|
+
// oauth required
|
|
103639
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
103640
|
+
|
|
103641
|
+
// authentication applicationAuth required
|
|
103642
|
+
// oauth required
|
|
103643
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
103644
|
+
|
|
103645
|
+
if (limit !== undefined) {
|
|
103646
|
+
localVarQueryParameter['limit'] = limit;
|
|
103647
|
+
}
|
|
103648
|
+
|
|
103649
|
+
if (offset !== undefined) {
|
|
103650
|
+
localVarQueryParameter['offset'] = offset;
|
|
103651
|
+
}
|
|
103652
|
+
|
|
103653
|
+
|
|
103654
|
+
|
|
103401
103655
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103402
103656
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103403
103657
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -103495,6 +103749,34 @@ export const IntelligencePackageV2026ApiFp = function(configuration?: Configurat
|
|
|
103495
103749
|
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityAccessHistory']?.[localVarOperationServerIndex]?.url;
|
|
103496
103750
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103497
103751
|
},
|
|
103752
|
+
/**
|
|
103753
|
+
* 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.
|
|
103754
|
+
* @summary Identity risk snapshot
|
|
103755
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103756
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103757
|
+
* @throws {RequiredError}
|
|
103758
|
+
*/
|
|
103759
|
+
async getIntelIdentityRisk(identityID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
|
|
103760
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRisk(identityID, axiosOptions);
|
|
103761
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
103762
|
+
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRisk']?.[localVarOperationServerIndex]?.url;
|
|
103763
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103764
|
+
},
|
|
103765
|
+
/**
|
|
103766
|
+
* 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.
|
|
103767
|
+
* @summary Risk outliers continuation paging
|
|
103768
|
+
* @param {string} identityID Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103769
|
+
* @param {number} [limit] Maximum number of outlier rows to return for this page.
|
|
103770
|
+
* @param {number} [offset] Zero-based row index for the first returned outlier item.
|
|
103771
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103772
|
+
* @throws {RequiredError}
|
|
103773
|
+
*/
|
|
103774
|
+
async getIntelIdentityRiskOutliers(identityID: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntelIdentityRiskBodyV2026>> {
|
|
103775
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIntelIdentityRiskOutliers(identityID, limit, offset, axiosOptions);
|
|
103776
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
103777
|
+
const localVarOperationServerBasePath = operationServerMap['IntelligencePackageV2026Api.getIntelIdentityRiskOutliers']?.[localVarOperationServerIndex]?.url;
|
|
103778
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103779
|
+
},
|
|
103498
103780
|
/**
|
|
103499
103781
|
* 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.
|
|
103500
103782
|
* @summary Resolve one identity by filter
|
|
@@ -103538,6 +103820,26 @@ export const IntelligencePackageV2026ApiFactory = function (configuration?: Conf
|
|
|
103538
103820
|
getIntelIdentityAccessHistory(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityAccessHistoryBodyV2026> {
|
|
103539
103821
|
return localVarFp.getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
103540
103822
|
},
|
|
103823
|
+
/**
|
|
103824
|
+
* 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.
|
|
103825
|
+
* @summary Identity risk snapshot
|
|
103826
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
103827
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103828
|
+
* @throws {RequiredError}
|
|
103829
|
+
*/
|
|
103830
|
+
getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
|
|
103831
|
+
return localVarFp.getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(axios, basePath));
|
|
103832
|
+
},
|
|
103833
|
+
/**
|
|
103834
|
+
* 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.
|
|
103835
|
+
* @summary Risk outliers continuation paging
|
|
103836
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
103837
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103838
|
+
* @throws {RequiredError}
|
|
103839
|
+
*/
|
|
103840
|
+
getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IntelIdentityRiskBodyV2026> {
|
|
103841
|
+
return localVarFp.getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
103842
|
+
},
|
|
103541
103843
|
/**
|
|
103542
103844
|
* 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.
|
|
103543
103845
|
* @summary Resolve one identity by filter
|
|
@@ -103600,6 +103902,48 @@ export interface IntelligencePackageV2026ApiGetIntelIdentityAccessHistoryRequest
|
|
|
103600
103902
|
readonly count?: boolean
|
|
103601
103903
|
}
|
|
103602
103904
|
|
|
103905
|
+
/**
|
|
103906
|
+
* Request parameters for getIntelIdentityRisk operation in IntelligencePackageV2026Api.
|
|
103907
|
+
* @export
|
|
103908
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest
|
|
103909
|
+
*/
|
|
103910
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskRequest {
|
|
103911
|
+
/**
|
|
103912
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103913
|
+
* @type {string}
|
|
103914
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRisk
|
|
103915
|
+
*/
|
|
103916
|
+
readonly identityID: string
|
|
103917
|
+
}
|
|
103918
|
+
|
|
103919
|
+
/**
|
|
103920
|
+
* Request parameters for getIntelIdentityRiskOutliers operation in IntelligencePackageV2026Api.
|
|
103921
|
+
* @export
|
|
103922
|
+
* @interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest
|
|
103923
|
+
*/
|
|
103924
|
+
export interface IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest {
|
|
103925
|
+
/**
|
|
103926
|
+
* Non-empty identity id path segment for Intelligence Package sub-resources.
|
|
103927
|
+
* @type {string}
|
|
103928
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103929
|
+
*/
|
|
103930
|
+
readonly identityID: string
|
|
103931
|
+
|
|
103932
|
+
/**
|
|
103933
|
+
* Maximum number of outlier rows to return for this page.
|
|
103934
|
+
* @type {number}
|
|
103935
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103936
|
+
*/
|
|
103937
|
+
readonly limit?: number
|
|
103938
|
+
|
|
103939
|
+
/**
|
|
103940
|
+
* Zero-based row index for the first returned outlier item.
|
|
103941
|
+
* @type {number}
|
|
103942
|
+
* @memberof IntelligencePackageV2026ApiGetIntelIdentityRiskOutliers
|
|
103943
|
+
*/
|
|
103944
|
+
readonly offset?: number
|
|
103945
|
+
}
|
|
103946
|
+
|
|
103603
103947
|
/**
|
|
103604
103948
|
* Request parameters for searchIntelIdentities operation in IntelligencePackageV2026Api.
|
|
103605
103949
|
* @export
|
|
@@ -103645,6 +103989,30 @@ export class IntelligencePackageV2026Api extends BaseAPI {
|
|
|
103645
103989
|
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityAccessHistory(requestParameters.identityID, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
103646
103990
|
}
|
|
103647
103991
|
|
|
103992
|
+
/**
|
|
103993
|
+
* 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.
|
|
103994
|
+
* @summary Identity risk snapshot
|
|
103995
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskRequest} requestParameters Request parameters.
|
|
103996
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
103997
|
+
* @throws {RequiredError}
|
|
103998
|
+
* @memberof IntelligencePackageV2026Api
|
|
103999
|
+
*/
|
|
104000
|
+
public getIntelIdentityRisk(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
104001
|
+
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRisk(requestParameters.identityID, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
104002
|
+
}
|
|
104003
|
+
|
|
104004
|
+
/**
|
|
104005
|
+
* 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.
|
|
104006
|
+
* @summary Risk outliers continuation paging
|
|
104007
|
+
* @param {IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest} requestParameters Request parameters.
|
|
104008
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
104009
|
+
* @throws {RequiredError}
|
|
104010
|
+
* @memberof IntelligencePackageV2026Api
|
|
104011
|
+
*/
|
|
104012
|
+
public getIntelIdentityRiskOutliers(requestParameters: IntelligencePackageV2026ApiGetIntelIdentityRiskOutliersRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
104013
|
+
return IntelligencePackageV2026ApiFp(this.configuration).getIntelIdentityRiskOutliers(requestParameters.identityID, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
104014
|
+
}
|
|
104015
|
+
|
|
103648
104016
|
/**
|
|
103649
104017
|
* 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.
|
|
103650
104018
|
* @summary Resolve one identity by filter
|
|
@@ -105113,10 +105481,6 @@ export const LifecycleStatesV2026ApiAxiosParamCreator = function (configuration?
|
|
|
105113
105481
|
// oauth required
|
|
105114
105482
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
105115
105483
|
|
|
105116
|
-
// authentication applicationAuth required
|
|
105117
|
-
// oauth required
|
|
105118
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
105119
|
-
|
|
105120
105484
|
|
|
105121
105485
|
|
|
105122
105486
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -107715,118 +108079,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
107715
108079
|
axiosOptions: localVarRequestOptions,
|
|
107716
108080
|
};
|
|
107717
108081
|
},
|
|
107718
|
-
/**
|
|
107719
|
-
* 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.
|
|
107720
|
-
* @summary Bulk disable machine accounts
|
|
107721
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
107722
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
107723
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
107724
|
-
* @throws {RequiredError}
|
|
107725
|
-
*/
|
|
107726
|
-
disableMachineAccountsInBulk: async (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
107727
|
-
// verify required parameter 'misBulkRequestV2026' is not null or undefined
|
|
107728
|
-
assertParamExists('disableMachineAccountsInBulk', 'misBulkRequestV2026', misBulkRequestV2026)
|
|
107729
|
-
if (xSailPointExperimental === undefined) {
|
|
107730
|
-
xSailPointExperimental = 'true';
|
|
107731
|
-
}
|
|
107732
|
-
|
|
107733
|
-
const localVarPath = `/machine-accounts/bulk-disable`;
|
|
107734
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
107735
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
107736
|
-
let baseOptions;
|
|
107737
|
-
if (configuration) {
|
|
107738
|
-
baseOptions = configuration.baseOptions;
|
|
107739
|
-
}
|
|
107740
|
-
|
|
107741
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
107742
|
-
const localVarHeaderParameter = {} as any;
|
|
107743
|
-
const localVarQueryParameter = {} as any;
|
|
107744
|
-
|
|
107745
|
-
// authentication userAuth required
|
|
107746
|
-
// oauth required
|
|
107747
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107748
|
-
|
|
107749
|
-
// authentication userAuth required
|
|
107750
|
-
// oauth required
|
|
107751
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107752
|
-
|
|
107753
|
-
// authentication applicationAuth required
|
|
107754
|
-
// oauth required
|
|
107755
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107756
|
-
|
|
107757
|
-
|
|
107758
|
-
|
|
107759
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
107760
|
-
|
|
107761
|
-
if (xSailPointExperimental != null) {
|
|
107762
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
107763
|
-
}
|
|
107764
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
107765
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
107766
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
107767
|
-
localVarRequestOptions.data = serializeDataIfNeeded(misBulkRequestV2026, localVarRequestOptions, configuration)
|
|
107768
|
-
|
|
107769
|
-
return {
|
|
107770
|
-
url: toPathString(localVarUrlObj),
|
|
107771
|
-
axiosOptions: localVarRequestOptions,
|
|
107772
|
-
};
|
|
107773
|
-
},
|
|
107774
|
-
/**
|
|
107775
|
-
* 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.
|
|
107776
|
-
* @summary Bulk enable machine accounts
|
|
107777
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
107778
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
107779
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
107780
|
-
* @throws {RequiredError}
|
|
107781
|
-
*/
|
|
107782
|
-
enableMachineAccountsInBulk: async (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
107783
|
-
// verify required parameter 'misBulkRequestV2026' is not null or undefined
|
|
107784
|
-
assertParamExists('enableMachineAccountsInBulk', 'misBulkRequestV2026', misBulkRequestV2026)
|
|
107785
|
-
if (xSailPointExperimental === undefined) {
|
|
107786
|
-
xSailPointExperimental = 'true';
|
|
107787
|
-
}
|
|
107788
|
-
|
|
107789
|
-
const localVarPath = `/machine-accounts/bulk-enable`;
|
|
107790
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
107791
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
107792
|
-
let baseOptions;
|
|
107793
|
-
if (configuration) {
|
|
107794
|
-
baseOptions = configuration.baseOptions;
|
|
107795
|
-
}
|
|
107796
|
-
|
|
107797
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
107798
|
-
const localVarHeaderParameter = {} as any;
|
|
107799
|
-
const localVarQueryParameter = {} as any;
|
|
107800
|
-
|
|
107801
|
-
// authentication userAuth required
|
|
107802
|
-
// oauth required
|
|
107803
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107804
|
-
|
|
107805
|
-
// authentication userAuth required
|
|
107806
|
-
// oauth required
|
|
107807
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
107808
|
-
|
|
107809
|
-
// authentication applicationAuth required
|
|
107810
|
-
// oauth required
|
|
107811
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
107812
|
-
|
|
107813
|
-
|
|
107814
|
-
|
|
107815
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
107816
|
-
|
|
107817
|
-
if (xSailPointExperimental != null) {
|
|
107818
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
107819
|
-
}
|
|
107820
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
107821
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
107822
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
107823
|
-
localVarRequestOptions.data = serializeDataIfNeeded(misBulkRequestV2026, localVarRequestOptions, configuration)
|
|
107824
|
-
|
|
107825
|
-
return {
|
|
107826
|
-
url: toPathString(localVarUrlObj),
|
|
107827
|
-
axiosOptions: localVarRequestOptions,
|
|
107828
|
-
};
|
|
107829
|
-
},
|
|
107830
108082
|
/**
|
|
107831
108083
|
* Use this API to return the details for a single machine account by its ID.
|
|
107832
108084
|
* @summary Get machine account details
|
|
@@ -108313,62 +108565,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
108313
108565
|
axiosOptions: localVarRequestOptions,
|
|
108314
108566
|
};
|
|
108315
108567
|
},
|
|
108316
|
-
/**
|
|
108317
|
-
* 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.
|
|
108318
|
-
* @summary Bulk reload machine accounts
|
|
108319
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
108320
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
108321
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108322
|
-
* @throws {RequiredError}
|
|
108323
|
-
*/
|
|
108324
|
-
reloadMachineAccountsInBulk: async (misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
108325
|
-
// verify required parameter 'misBulkRequestV2026' is not null or undefined
|
|
108326
|
-
assertParamExists('reloadMachineAccountsInBulk', 'misBulkRequestV2026', misBulkRequestV2026)
|
|
108327
|
-
if (xSailPointExperimental === undefined) {
|
|
108328
|
-
xSailPointExperimental = 'true';
|
|
108329
|
-
}
|
|
108330
|
-
|
|
108331
|
-
const localVarPath = `/machine-accounts/bulk-reload`;
|
|
108332
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
108333
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
108334
|
-
let baseOptions;
|
|
108335
|
-
if (configuration) {
|
|
108336
|
-
baseOptions = configuration.baseOptions;
|
|
108337
|
-
}
|
|
108338
|
-
|
|
108339
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
108340
|
-
const localVarHeaderParameter = {} as any;
|
|
108341
|
-
const localVarQueryParameter = {} as any;
|
|
108342
|
-
|
|
108343
|
-
// authentication userAuth required
|
|
108344
|
-
// oauth required
|
|
108345
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
108346
|
-
|
|
108347
|
-
// authentication userAuth required
|
|
108348
|
-
// oauth required
|
|
108349
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
108350
|
-
|
|
108351
|
-
// authentication applicationAuth required
|
|
108352
|
-
// oauth required
|
|
108353
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
108354
|
-
|
|
108355
|
-
|
|
108356
|
-
|
|
108357
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
108358
|
-
|
|
108359
|
-
if (xSailPointExperimental != null) {
|
|
108360
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
108361
|
-
}
|
|
108362
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
108363
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
108364
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
108365
|
-
localVarRequestOptions.data = serializeDataIfNeeded(misBulkRequestV2026, localVarRequestOptions, configuration)
|
|
108366
|
-
|
|
108367
|
-
return {
|
|
108368
|
-
url: toPathString(localVarUrlObj),
|
|
108369
|
-
axiosOptions: localVarRequestOptions,
|
|
108370
|
-
};
|
|
108371
|
-
},
|
|
108372
108568
|
/**
|
|
108373
108569
|
* Use this API to update machine accounts details.
|
|
108374
108570
|
* @summary Update machine account details
|
|
@@ -108482,62 +108678,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
108482
108678
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
108483
108679
|
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2026, localVarRequestOptions, configuration)
|
|
108484
108680
|
|
|
108485
|
-
return {
|
|
108486
|
-
url: toPathString(localVarUrlObj),
|
|
108487
|
-
axiosOptions: localVarRequestOptions,
|
|
108488
|
-
};
|
|
108489
|
-
},
|
|
108490
|
-
/**
|
|
108491
|
-
* 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.
|
|
108492
|
-
* @summary Bulk update machine accounts
|
|
108493
|
-
* @param {MisBulkUpdateRequestV2026} misBulkUpdateRequestV2026
|
|
108494
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
108495
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108496
|
-
* @throws {RequiredError}
|
|
108497
|
-
*/
|
|
108498
|
-
updateMachineAccountsInBulk: async (misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
108499
|
-
// verify required parameter 'misBulkUpdateRequestV2026' is not null or undefined
|
|
108500
|
-
assertParamExists('updateMachineAccountsInBulk', 'misBulkUpdateRequestV2026', misBulkUpdateRequestV2026)
|
|
108501
|
-
if (xSailPointExperimental === undefined) {
|
|
108502
|
-
xSailPointExperimental = 'true';
|
|
108503
|
-
}
|
|
108504
|
-
|
|
108505
|
-
const localVarPath = `/machine-accounts/bulk-update`;
|
|
108506
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
108507
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
108508
|
-
let baseOptions;
|
|
108509
|
-
if (configuration) {
|
|
108510
|
-
baseOptions = configuration.baseOptions;
|
|
108511
|
-
}
|
|
108512
|
-
|
|
108513
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
108514
|
-
const localVarHeaderParameter = {} as any;
|
|
108515
|
-
const localVarQueryParameter = {} as any;
|
|
108516
|
-
|
|
108517
|
-
// authentication userAuth required
|
|
108518
|
-
// oauth required
|
|
108519
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
108520
|
-
|
|
108521
|
-
// authentication userAuth required
|
|
108522
|
-
// oauth required
|
|
108523
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
108524
|
-
|
|
108525
|
-
// authentication applicationAuth required
|
|
108526
|
-
// oauth required
|
|
108527
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
108528
|
-
|
|
108529
|
-
|
|
108530
|
-
|
|
108531
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
108532
|
-
|
|
108533
|
-
if (xSailPointExperimental != null) {
|
|
108534
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
108535
|
-
}
|
|
108536
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
108537
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
108538
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
108539
|
-
localVarRequestOptions.data = serializeDataIfNeeded(misBulkUpdateRequestV2026, localVarRequestOptions, configuration)
|
|
108540
|
-
|
|
108541
108681
|
return {
|
|
108542
108682
|
url: toPathString(localVarUrlObj),
|
|
108543
108683
|
axiosOptions: localVarRequestOptions,
|
|
@@ -108583,34 +108723,6 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
|
|
|
108583
108723
|
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.deleteMachineAccountSubtypeByTechnicalName']?.[localVarOperationServerIndex]?.url;
|
|
108584
108724
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108585
108725
|
},
|
|
108586
|
-
/**
|
|
108587
|
-
* 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.
|
|
108588
|
-
* @summary Bulk disable machine accounts
|
|
108589
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
108590
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
108591
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108592
|
-
* @throws {RequiredError}
|
|
108593
|
-
*/
|
|
108594
|
-
async disableMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>> {
|
|
108595
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.disableMachineAccountsInBulk(misBulkRequestV2026, xSailPointExperimental, axiosOptions);
|
|
108596
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
108597
|
-
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.disableMachineAccountsInBulk']?.[localVarOperationServerIndex]?.url;
|
|
108598
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108599
|
-
},
|
|
108600
|
-
/**
|
|
108601
|
-
* 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.
|
|
108602
|
-
* @summary Bulk enable machine accounts
|
|
108603
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
108604
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
108605
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108606
|
-
* @throws {RequiredError}
|
|
108607
|
-
*/
|
|
108608
|
-
async enableMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>> {
|
|
108609
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.enableMachineAccountsInBulk(misBulkRequestV2026, xSailPointExperimental, axiosOptions);
|
|
108610
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
108611
|
-
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.enableMachineAccountsInBulk']?.[localVarOperationServerIndex]?.url;
|
|
108612
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108613
|
-
},
|
|
108614
108726
|
/**
|
|
108615
108727
|
* Use this API to return the details for a single machine account by its ID.
|
|
108616
108728
|
* @summary Get machine account details
|
|
@@ -108735,20 +108847,6 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
|
|
|
108735
108847
|
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.patchMachineAccountSubtypeByTechnicalName']?.[localVarOperationServerIndex]?.url;
|
|
108736
108848
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108737
108849
|
},
|
|
108738
|
-
/**
|
|
108739
|
-
* 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.
|
|
108740
|
-
* @summary Bulk reload machine accounts
|
|
108741
|
-
* @param {MisBulkRequestV2026} misBulkRequestV2026
|
|
108742
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
108743
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108744
|
-
* @throws {RequiredError}
|
|
108745
|
-
*/
|
|
108746
|
-
async reloadMachineAccountsInBulk(misBulkRequestV2026: MisBulkRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MisBulkResponseV2026>>> {
|
|
108747
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.reloadMachineAccountsInBulk(misBulkRequestV2026, xSailPointExperimental, axiosOptions);
|
|
108748
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
108749
|
-
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.reloadMachineAccountsInBulk']?.[localVarOperationServerIndex]?.url;
|
|
108750
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108751
|
-
},
|
|
108752
108850
|
/**
|
|
108753
108851
|
* Use this API to update machine accounts details.
|
|
108754
108852
|
* @summary Update machine account details
|
|
@@ -108779,20 +108877,6 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
|
|
|
108779
108877
|
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
|
|
108780
108878
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108781
108879
|
},
|
|
108782
|
-
/**
|
|
108783
|
-
* 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.
|
|
108784
|
-
* @summary Bulk update machine accounts
|
|
108785
|
-
* @param {MisBulkUpdateRequestV2026} misBulkUpdateRequestV2026
|
|
108786
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
108787
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108788
|
-
* @throws {RequiredError}
|
|
108789
|
-
*/
|
|
108790
|
-
async updateMachineAccountsInBulk(misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MisBulkResponseV2026>>> {
|
|
108791
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountsInBulk(misBulkUpdateRequestV2026, xSailPointExperimental, axiosOptions);
|
|
108792
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
108793
|
-
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccountsInBulk']?.[localVarOperationServerIndex]?.url;
|
|
108794
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
108795
|
-
},
|
|
108796
108880
|
}
|
|
108797
108881
|
};
|
|
108798
108882
|
|
|
@@ -108823,26 +108907,6 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
|
|
|
108823
108907
|
deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
108824
108908
|
return localVarFp.deleteMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
108825
108909
|
},
|
|
108826
|
-
/**
|
|
108827
|
-
* 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.
|
|
108828
|
-
* @summary Bulk disable machine accounts
|
|
108829
|
-
* @param {MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
108830
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108831
|
-
* @throws {RequiredError}
|
|
108832
|
-
*/
|
|
108833
|
-
disableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026> {
|
|
108834
|
-
return localVarFp.disableMachineAccountsInBulk(requestParameters.misBulkRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
108835
|
-
},
|
|
108836
|
-
/**
|
|
108837
|
-
* 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.
|
|
108838
|
-
* @summary Bulk enable machine accounts
|
|
108839
|
-
* @param {MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
108840
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108841
|
-
* @throws {RequiredError}
|
|
108842
|
-
*/
|
|
108843
|
-
enableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026> {
|
|
108844
|
-
return localVarFp.enableMachineAccountsInBulk(requestParameters.misBulkRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
108845
|
-
},
|
|
108846
108910
|
/**
|
|
108847
108911
|
* Use this API to return the details for a single machine account by its ID.
|
|
108848
108912
|
* @summary Get machine account details
|
|
@@ -108923,16 +108987,6 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
|
|
|
108923
108987
|
patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
|
|
108924
108988
|
return localVarFp.patchMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
108925
108989
|
},
|
|
108926
|
-
/**
|
|
108927
|
-
* 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.
|
|
108928
|
-
* @summary Bulk reload machine accounts
|
|
108929
|
-
* @param {MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
108930
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108931
|
-
* @throws {RequiredError}
|
|
108932
|
-
*/
|
|
108933
|
-
reloadMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MisBulkResponseV2026>> {
|
|
108934
|
-
return localVarFp.reloadMachineAccountsInBulk(requestParameters.misBulkRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
108935
|
-
},
|
|
108936
108990
|
/**
|
|
108937
108991
|
* Use this API to update machine accounts details.
|
|
108938
108992
|
* @summary Update machine account details
|
|
@@ -108953,16 +109007,6 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
|
|
|
108953
109007
|
updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
|
|
108954
109008
|
return localVarFp.updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
108955
109009
|
},
|
|
108956
|
-
/**
|
|
108957
|
-
* 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.
|
|
108958
|
-
* @summary Bulk update machine accounts
|
|
108959
|
-
* @param {MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
108960
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
108961
|
-
* @throws {RequiredError}
|
|
108962
|
-
*/
|
|
108963
|
-
updateMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MisBulkResponseV2026>> {
|
|
108964
|
-
return localVarFp.updateMachineAccountsInBulk(requestParameters.misBulkUpdateRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
108965
|
-
},
|
|
108966
109010
|
};
|
|
108967
109011
|
};
|
|
108968
109012
|
|
|
@@ -109022,48 +109066,6 @@ export interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNa
|
|
|
109022
109066
|
readonly xSailPointExperimental?: string
|
|
109023
109067
|
}
|
|
109024
109068
|
|
|
109025
|
-
/**
|
|
109026
|
-
* Request parameters for disableMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
109027
|
-
* @export
|
|
109028
|
-
* @interface MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest
|
|
109029
|
-
*/
|
|
109030
|
-
export interface MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest {
|
|
109031
|
-
/**
|
|
109032
|
-
*
|
|
109033
|
-
* @type {MisBulkRequestV2026}
|
|
109034
|
-
* @memberof MachineAccountsV2026ApiDisableMachineAccountsInBulk
|
|
109035
|
-
*/
|
|
109036
|
-
readonly misBulkRequestV2026: MisBulkRequestV2026
|
|
109037
|
-
|
|
109038
|
-
/**
|
|
109039
|
-
* Use this header to enable this experimental API.
|
|
109040
|
-
* @type {string}
|
|
109041
|
-
* @memberof MachineAccountsV2026ApiDisableMachineAccountsInBulk
|
|
109042
|
-
*/
|
|
109043
|
-
readonly xSailPointExperimental?: string
|
|
109044
|
-
}
|
|
109045
|
-
|
|
109046
|
-
/**
|
|
109047
|
-
* Request parameters for enableMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
109048
|
-
* @export
|
|
109049
|
-
* @interface MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest
|
|
109050
|
-
*/
|
|
109051
|
-
export interface MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest {
|
|
109052
|
-
/**
|
|
109053
|
-
*
|
|
109054
|
-
* @type {MisBulkRequestV2026}
|
|
109055
|
-
* @memberof MachineAccountsV2026ApiEnableMachineAccountsInBulk
|
|
109056
|
-
*/
|
|
109057
|
-
readonly misBulkRequestV2026: MisBulkRequestV2026
|
|
109058
|
-
|
|
109059
|
-
/**
|
|
109060
|
-
* Use this header to enable this experimental API.
|
|
109061
|
-
* @type {string}
|
|
109062
|
-
* @memberof MachineAccountsV2026ApiEnableMachineAccountsInBulk
|
|
109063
|
-
*/
|
|
109064
|
-
readonly xSailPointExperimental?: string
|
|
109065
|
-
}
|
|
109066
|
-
|
|
109067
109069
|
/**
|
|
109068
109070
|
* Request parameters for getMachineAccount operation in MachineAccountsV2026Api.
|
|
109069
109071
|
* @export
|
|
@@ -109316,27 +109318,6 @@ export interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNam
|
|
|
109316
109318
|
readonly xSailPointExperimental?: string
|
|
109317
109319
|
}
|
|
109318
109320
|
|
|
109319
|
-
/**
|
|
109320
|
-
* Request parameters for reloadMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
109321
|
-
* @export
|
|
109322
|
-
* @interface MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest
|
|
109323
|
-
*/
|
|
109324
|
-
export interface MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest {
|
|
109325
|
-
/**
|
|
109326
|
-
*
|
|
109327
|
-
* @type {MisBulkRequestV2026}
|
|
109328
|
-
* @memberof MachineAccountsV2026ApiReloadMachineAccountsInBulk
|
|
109329
|
-
*/
|
|
109330
|
-
readonly misBulkRequestV2026: MisBulkRequestV2026
|
|
109331
|
-
|
|
109332
|
-
/**
|
|
109333
|
-
* Use this header to enable this experimental API.
|
|
109334
|
-
* @type {string}
|
|
109335
|
-
* @memberof MachineAccountsV2026ApiReloadMachineAccountsInBulk
|
|
109336
|
-
*/
|
|
109337
|
-
readonly xSailPointExperimental?: string
|
|
109338
|
-
}
|
|
109339
|
-
|
|
109340
109321
|
/**
|
|
109341
109322
|
* Request parameters for updateMachineAccount operation in MachineAccountsV2026Api.
|
|
109342
109323
|
* @export
|
|
@@ -109393,27 +109374,6 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfi
|
|
|
109393
109374
|
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>
|
|
109394
109375
|
}
|
|
109395
109376
|
|
|
109396
|
-
/**
|
|
109397
|
-
* Request parameters for updateMachineAccountsInBulk operation in MachineAccountsV2026Api.
|
|
109398
|
-
* @export
|
|
109399
|
-
* @interface MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest
|
|
109400
|
-
*/
|
|
109401
|
-
export interface MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest {
|
|
109402
|
-
/**
|
|
109403
|
-
*
|
|
109404
|
-
* @type {MisBulkUpdateRequestV2026}
|
|
109405
|
-
* @memberof MachineAccountsV2026ApiUpdateMachineAccountsInBulk
|
|
109406
|
-
*/
|
|
109407
|
-
readonly misBulkUpdateRequestV2026: MisBulkUpdateRequestV2026
|
|
109408
|
-
|
|
109409
|
-
/**
|
|
109410
|
-
* Use this header to enable this experimental API.
|
|
109411
|
-
* @type {string}
|
|
109412
|
-
* @memberof MachineAccountsV2026ApiUpdateMachineAccountsInBulk
|
|
109413
|
-
*/
|
|
109414
|
-
readonly xSailPointExperimental?: string
|
|
109415
|
-
}
|
|
109416
|
-
|
|
109417
109377
|
/**
|
|
109418
109378
|
* MachineAccountsV2026Api - object-oriented interface
|
|
109419
109379
|
* @export
|
|
@@ -109445,30 +109405,6 @@ export class MachineAccountsV2026Api extends BaseAPI {
|
|
|
109445
109405
|
return MachineAccountsV2026ApiFp(this.configuration).deleteMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109446
109406
|
}
|
|
109447
109407
|
|
|
109448
|
-
/**
|
|
109449
|
-
* 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.
|
|
109450
|
-
* @summary Bulk disable machine accounts
|
|
109451
|
-
* @param {MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
109452
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
109453
|
-
* @throws {RequiredError}
|
|
109454
|
-
* @memberof MachineAccountsV2026Api
|
|
109455
|
-
*/
|
|
109456
|
-
public disableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiDisableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
109457
|
-
return MachineAccountsV2026ApiFp(this.configuration).disableMachineAccountsInBulk(requestParameters.misBulkRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109458
|
-
}
|
|
109459
|
-
|
|
109460
|
-
/**
|
|
109461
|
-
* 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.
|
|
109462
|
-
* @summary Bulk enable machine accounts
|
|
109463
|
-
* @param {MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
109464
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
109465
|
-
* @throws {RequiredError}
|
|
109466
|
-
* @memberof MachineAccountsV2026Api
|
|
109467
|
-
*/
|
|
109468
|
-
public enableMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiEnableMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
109469
|
-
return MachineAccountsV2026ApiFp(this.configuration).enableMachineAccountsInBulk(requestParameters.misBulkRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109470
|
-
}
|
|
109471
|
-
|
|
109472
109408
|
/**
|
|
109473
109409
|
* Use this API to return the details for a single machine account by its ID.
|
|
109474
109410
|
* @summary Get machine account details
|
|
@@ -109565,18 +109501,6 @@ export class MachineAccountsV2026Api extends BaseAPI {
|
|
|
109565
109501
|
return MachineAccountsV2026ApiFp(this.configuration).patchMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109566
109502
|
}
|
|
109567
109503
|
|
|
109568
|
-
/**
|
|
109569
|
-
* 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.
|
|
109570
|
-
* @summary Bulk reload machine accounts
|
|
109571
|
-
* @param {MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
109572
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
109573
|
-
* @throws {RequiredError}
|
|
109574
|
-
* @memberof MachineAccountsV2026Api
|
|
109575
|
-
*/
|
|
109576
|
-
public reloadMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiReloadMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
109577
|
-
return MachineAccountsV2026ApiFp(this.configuration).reloadMachineAccountsInBulk(requestParameters.misBulkRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109578
|
-
}
|
|
109579
|
-
|
|
109580
109504
|
/**
|
|
109581
109505
|
* Use this API to update machine accounts details.
|
|
109582
109506
|
* @summary Update machine account details
|
|
@@ -109600,18 +109524,6 @@ export class MachineAccountsV2026Api extends BaseAPI {
|
|
|
109600
109524
|
public updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
109601
109525
|
return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109602
109526
|
}
|
|
109603
|
-
|
|
109604
|
-
/**
|
|
109605
|
-
* 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.
|
|
109606
|
-
* @summary Bulk update machine accounts
|
|
109607
|
-
* @param {MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest} requestParameters Request parameters.
|
|
109608
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
109609
|
-
* @throws {RequiredError}
|
|
109610
|
-
* @memberof MachineAccountsV2026Api
|
|
109611
|
-
*/
|
|
109612
|
-
public updateMachineAccountsInBulk(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountsInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
109613
|
-
return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountsInBulk(requestParameters.misBulkUpdateRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
109614
|
-
}
|
|
109615
109527
|
}
|
|
109616
109528
|
|
|
109617
109529
|
|