sailpoint-api-client 1.6.7 → 1.6.8
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 +1 -1
- package/dist/v2024/api.d.ts +425 -425
- package/dist/v2024/api.js +342 -424
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +893 -440
- package/dist/v2025/api.js +1044 -440
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +596 -690
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +1439 -717
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -47348,12 +47348,12 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47348
47348
|
/**
|
|
47349
47349
|
* This endpoint creates a source app using the given source app payload
|
|
47350
47350
|
* @summary Create source app
|
|
47351
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47352
47351
|
* @param {SourceAppCreateDtoV2024} sourceAppCreateDtoV2024
|
|
47352
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47353
47353
|
* @param {*} [axiosOptions] Override http request option.
|
|
47354
47354
|
* @throws {RequiredError}
|
|
47355
47355
|
*/
|
|
47356
|
-
createSourceApp: (
|
|
47356
|
+
createSourceApp: (sourceAppCreateDtoV2024: SourceAppCreateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47357
47357
|
/**
|
|
47358
47358
|
* This API returns the final list of access profiles for the specified source app after removing
|
|
47359
47359
|
* @summary Bulk remove access profiles from the specified source app
|
|
@@ -47369,11 +47369,11 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47369
47369
|
* Use this API to delete a specific source app
|
|
47370
47370
|
* @summary Delete source app by id
|
|
47371
47371
|
* @param {string} id source app ID.
|
|
47372
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47372
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47373
47373
|
* @param {*} [axiosOptions] Override http request option.
|
|
47374
47374
|
* @throws {RequiredError}
|
|
47375
47375
|
*/
|
|
47376
|
-
deleteSourceApp: (id: string, xSailPointExperimental
|
|
47376
|
+
deleteSourceApp: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47377
47377
|
/**
|
|
47378
47378
|
* This API returns a source app by its ID.
|
|
47379
47379
|
* @summary Get source app by id
|
|
@@ -47473,12 +47473,12 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47473
47473
|
* This API updates an existing source app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **provisionRequestEnabled**, **appCenterEnabled**, **accountSource**, **matchAllAccounts** and **accessProfiles**. Name, description and owner can\'t be empty or null.
|
|
47474
47474
|
* @summary Patch source app by id
|
|
47475
47475
|
* @param {string} id ID of the source app to patch
|
|
47476
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47476
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47477
47477
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
47478
47478
|
* @param {*} [axiosOptions] Override http request option.
|
|
47479
47479
|
* @throws {RequiredError}
|
|
47480
47480
|
*/
|
|
47481
|
-
patchSourceApp: (id: string, xSailPointExperimental
|
|
47481
|
+
patchSourceApp: (id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47482
47482
|
/**
|
|
47483
47483
|
* This API updates an existing user app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **account**
|
|
47484
47484
|
* @summary Patch user app by id
|
|
@@ -47507,12 +47507,12 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
47507
47507
|
/**
|
|
47508
47508
|
* This endpoint creates a source app using the given source app payload
|
|
47509
47509
|
* @summary Create source app
|
|
47510
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47511
47510
|
* @param {SourceAppCreateDtoV2024} sourceAppCreateDtoV2024
|
|
47511
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47512
47512
|
* @param {*} [axiosOptions] Override http request option.
|
|
47513
47513
|
* @throws {RequiredError}
|
|
47514
47514
|
*/
|
|
47515
|
-
createSourceApp(
|
|
47515
|
+
createSourceApp(sourceAppCreateDtoV2024: SourceAppCreateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppV2024>>;
|
|
47516
47516
|
/**
|
|
47517
47517
|
* This API returns the final list of access profiles for the specified source app after removing
|
|
47518
47518
|
* @summary Bulk remove access profiles from the specified source app
|
|
@@ -47528,11 +47528,11 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
47528
47528
|
* Use this API to delete a specific source app
|
|
47529
47529
|
* @summary Delete source app by id
|
|
47530
47530
|
* @param {string} id source app ID.
|
|
47531
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47531
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47532
47532
|
* @param {*} [axiosOptions] Override http request option.
|
|
47533
47533
|
* @throws {RequiredError}
|
|
47534
47534
|
*/
|
|
47535
|
-
deleteSourceApp(id: string, xSailPointExperimental
|
|
47535
|
+
deleteSourceApp(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppV2024>>;
|
|
47536
47536
|
/**
|
|
47537
47537
|
* This API returns a source app by its ID.
|
|
47538
47538
|
* @summary Get source app by id
|
|
@@ -47632,12 +47632,12 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
47632
47632
|
* This API updates an existing source app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **provisionRequestEnabled**, **appCenterEnabled**, **accountSource**, **matchAllAccounts** and **accessProfiles**. Name, description and owner can\'t be empty or null.
|
|
47633
47633
|
* @summary Patch source app by id
|
|
47634
47634
|
* @param {string} id ID of the source app to patch
|
|
47635
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47635
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47636
47636
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
47637
47637
|
* @param {*} [axiosOptions] Override http request option.
|
|
47638
47638
|
* @throws {RequiredError}
|
|
47639
47639
|
*/
|
|
47640
|
-
patchSourceApp(id: string, xSailPointExperimental
|
|
47640
|
+
patchSourceApp(id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppPatchDtoV2024>>;
|
|
47641
47641
|
/**
|
|
47642
47642
|
* This API updates an existing user app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **account**
|
|
47643
47643
|
* @summary Patch user app by id
|
|
@@ -47782,18 +47782,18 @@ export declare const AppsV2024ApiFactory: (configuration?: Configuration, basePa
|
|
|
47782
47782
|
* @interface AppsV2024ApiCreateSourceAppRequest
|
|
47783
47783
|
*/
|
|
47784
47784
|
export interface AppsV2024ApiCreateSourceAppRequest {
|
|
47785
|
-
/**
|
|
47786
|
-
* Use this header to enable this experimental API.
|
|
47787
|
-
* @type {string}
|
|
47788
|
-
* @memberof AppsV2024ApiCreateSourceApp
|
|
47789
|
-
*/
|
|
47790
|
-
readonly xSailPointExperimental: string;
|
|
47791
47785
|
/**
|
|
47792
47786
|
*
|
|
47793
47787
|
* @type {SourceAppCreateDtoV2024}
|
|
47794
47788
|
* @memberof AppsV2024ApiCreateSourceApp
|
|
47795
47789
|
*/
|
|
47796
47790
|
readonly sourceAppCreateDtoV2024: SourceAppCreateDtoV2024;
|
|
47791
|
+
/**
|
|
47792
|
+
* Use this header to enable this experimental API.
|
|
47793
|
+
* @type {string}
|
|
47794
|
+
* @memberof AppsV2024ApiCreateSourceApp
|
|
47795
|
+
*/
|
|
47796
|
+
readonly xSailPointExperimental?: string;
|
|
47797
47797
|
}
|
|
47798
47798
|
/**
|
|
47799
47799
|
* Request parameters for deleteAccessProfilesFromSourceAppByBulk operation in AppsV2024Api.
|
|
@@ -47843,7 +47843,7 @@ export interface AppsV2024ApiDeleteSourceAppRequest {
|
|
|
47843
47843
|
* @type {string}
|
|
47844
47844
|
* @memberof AppsV2024ApiDeleteSourceApp
|
|
47845
47845
|
*/
|
|
47846
|
-
readonly xSailPointExperimental
|
|
47846
|
+
readonly xSailPointExperimental?: string;
|
|
47847
47847
|
}
|
|
47848
47848
|
/**
|
|
47849
47849
|
* Request parameters for getSourceApp operation in AppsV2024Api.
|
|
@@ -48152,7 +48152,7 @@ export interface AppsV2024ApiPatchSourceAppRequest {
|
|
|
48152
48152
|
* @type {string}
|
|
48153
48153
|
* @memberof AppsV2024ApiPatchSourceApp
|
|
48154
48154
|
*/
|
|
48155
|
-
readonly xSailPointExperimental
|
|
48155
|
+
readonly xSailPointExperimental?: string;
|
|
48156
48156
|
/**
|
|
48157
48157
|
*
|
|
48158
48158
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -48364,12 +48364,12 @@ export declare const AuthProfileV2024ApiAxiosParamCreator: (configuration?: Conf
|
|
|
48364
48364
|
* This API updates an existing Auth Profile. The following fields are patchable: **offNetwork**, **untrustedGeography**, **applicationId**, **applicationName**, **type**
|
|
48365
48365
|
* @summary Patch a specified auth profile
|
|
48366
48366
|
* @param {string} id ID of the Auth Profile to patch.
|
|
48367
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48368
48367
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
48368
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48369
48369
|
* @param {*} [axiosOptions] Override http request option.
|
|
48370
48370
|
* @throws {RequiredError}
|
|
48371
48371
|
*/
|
|
48372
|
-
patchProfileConfig: (id: string,
|
|
48372
|
+
patchProfileConfig: (id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48373
48373
|
};
|
|
48374
48374
|
/**
|
|
48375
48375
|
* AuthProfileV2024Api - functional programming interface
|
|
@@ -48397,12 +48397,12 @@ export declare const AuthProfileV2024ApiFp: (configuration?: Configuration) => {
|
|
|
48397
48397
|
* This API updates an existing Auth Profile. The following fields are patchable: **offNetwork**, **untrustedGeography**, **applicationId**, **applicationName**, **type**
|
|
48398
48398
|
* @summary Patch a specified auth profile
|
|
48399
48399
|
* @param {string} id ID of the Auth Profile to patch.
|
|
48400
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48401
48400
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
48401
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48402
48402
|
* @param {*} [axiosOptions] Override http request option.
|
|
48403
48403
|
* @throws {RequiredError}
|
|
48404
48404
|
*/
|
|
48405
|
-
patchProfileConfig(id: string,
|
|
48405
|
+
patchProfileConfig(id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthProfileV2024>>;
|
|
48406
48406
|
};
|
|
48407
48407
|
/**
|
|
48408
48408
|
* AuthProfileV2024Api - factory interface
|
|
@@ -48478,18 +48478,18 @@ export interface AuthProfileV2024ApiPatchProfileConfigRequest {
|
|
|
48478
48478
|
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48479
48479
|
*/
|
|
48480
48480
|
readonly id: string;
|
|
48481
|
-
/**
|
|
48482
|
-
* Use this header to enable this experimental API.
|
|
48483
|
-
* @type {string}
|
|
48484
|
-
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48485
|
-
*/
|
|
48486
|
-
readonly xSailPointExperimental: string;
|
|
48487
48481
|
/**
|
|
48488
48482
|
*
|
|
48489
48483
|
* @type {Array<JsonPatchOperationV2024>}
|
|
48490
48484
|
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48491
48485
|
*/
|
|
48492
48486
|
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
48487
|
+
/**
|
|
48488
|
+
* Use this header to enable this experimental API.
|
|
48489
|
+
* @type {string}
|
|
48490
|
+
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48491
|
+
*/
|
|
48492
|
+
readonly xSailPointExperimental?: string;
|
|
48493
48493
|
}
|
|
48494
48494
|
/**
|
|
48495
48495
|
* AuthProfileV2024Api - object-oriented interface
|
|
@@ -54977,12 +54977,12 @@ export declare const CustomPasswordInstructionsV2024ApiAxiosParamCreator: (confi
|
|
|
54977
54977
|
* This API delete the custom password instructions for the specified page ID.
|
|
54978
54978
|
* @summary Delete custom password instructions by page id
|
|
54979
54979
|
* @param {DeleteCustomPasswordInstructionsPageIdV2024} pageId The page ID of custom password instructions to delete.
|
|
54980
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
54981
54980
|
* @param {string} [locale] The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
54981
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
54982
54982
|
* @param {*} [axiosOptions] Override http request option.
|
|
54983
54983
|
* @throws {RequiredError}
|
|
54984
54984
|
*/
|
|
54985
|
-
deleteCustomPasswordInstructions: (pageId: DeleteCustomPasswordInstructionsPageIdV2024,
|
|
54985
|
+
deleteCustomPasswordInstructions: (pageId: DeleteCustomPasswordInstructionsPageIdV2024, locale?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54986
54986
|
/**
|
|
54987
54987
|
* This API returns the custom password instructions for the specified page ID.
|
|
54988
54988
|
* @summary Get custom password instructions by page id
|
|
@@ -55012,12 +55012,12 @@ export declare const CustomPasswordInstructionsV2024ApiFp: (configuration?: Conf
|
|
|
55012
55012
|
* This API delete the custom password instructions for the specified page ID.
|
|
55013
55013
|
* @summary Delete custom password instructions by page id
|
|
55014
55014
|
* @param {DeleteCustomPasswordInstructionsPageIdV2024} pageId The page ID of custom password instructions to delete.
|
|
55015
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55016
55015
|
* @param {string} [locale] The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
55016
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55017
55017
|
* @param {*} [axiosOptions] Override http request option.
|
|
55018
55018
|
* @throws {RequiredError}
|
|
55019
55019
|
*/
|
|
55020
|
-
deleteCustomPasswordInstructions(pageId: DeleteCustomPasswordInstructionsPageIdV2024,
|
|
55020
|
+
deleteCustomPasswordInstructions(pageId: DeleteCustomPasswordInstructionsPageIdV2024, locale?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
55021
55021
|
/**
|
|
55022
55022
|
* This API returns the custom password instructions for the specified page ID.
|
|
55023
55023
|
* @summary Get custom password instructions by page id
|
|
@@ -55091,17 +55091,17 @@ export interface CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructi
|
|
|
55091
55091
|
*/
|
|
55092
55092
|
readonly pageId: DeleteCustomPasswordInstructionsPageIdV2024;
|
|
55093
55093
|
/**
|
|
55094
|
-
*
|
|
55094
|
+
* The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
55095
55095
|
* @type {string}
|
|
55096
55096
|
* @memberof CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructions
|
|
55097
55097
|
*/
|
|
55098
|
-
readonly
|
|
55098
|
+
readonly locale?: string;
|
|
55099
55099
|
/**
|
|
55100
|
-
*
|
|
55100
|
+
* Use this header to enable this experimental API.
|
|
55101
55101
|
* @type {string}
|
|
55102
55102
|
* @memberof CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructions
|
|
55103
55103
|
*/
|
|
55104
|
-
readonly
|
|
55104
|
+
readonly xSailPointExperimental?: string;
|
|
55105
55105
|
}
|
|
55106
55106
|
/**
|
|
55107
55107
|
* Request parameters for getCustomPasswordInstructions operation in CustomPasswordInstructionsV2024Api.
|
|
@@ -55216,12 +55216,12 @@ export declare const DataSegmentationV2024ApiAxiosParamCreator: (configuration?:
|
|
|
55216
55216
|
* This API deletes the segment specified by the given ID.
|
|
55217
55217
|
* @summary Delete segment by id
|
|
55218
55218
|
* @param {string} id The segment ID to delete.
|
|
55219
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55220
55219
|
* @param {boolean} [published] This determines which version of the segment to delete
|
|
55220
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55221
55221
|
* @param {*} [axiosOptions] Override http request option.
|
|
55222
55222
|
* @throws {RequiredError}
|
|
55223
55223
|
*/
|
|
55224
|
-
deleteDataSegment: (id: string,
|
|
55224
|
+
deleteDataSegment: (id: string, published?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55225
55225
|
/**
|
|
55226
55226
|
* This API returns the segment specified by the given ID.
|
|
55227
55227
|
* @summary Get segment by id
|
|
@@ -55268,22 +55268,22 @@ export declare const DataSegmentationV2024ApiAxiosParamCreator: (configuration?:
|
|
|
55268
55268
|
* Use this API to update segment fields by using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
55269
55269
|
* @summary Update segment
|
|
55270
55270
|
* @param {string} id The segment ID to modify.
|
|
55271
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55272
55271
|
* @param {Array<object>} requestBody A list of segment update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * membership * memberFilter * memberSelection * scopes * enabled
|
|
55272
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55273
55273
|
* @param {*} [axiosOptions] Override http request option.
|
|
55274
55274
|
* @throws {RequiredError}
|
|
55275
55275
|
*/
|
|
55276
|
-
patchDataSegment: (id: string,
|
|
55276
|
+
patchDataSegment: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55277
55277
|
/**
|
|
55278
55278
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
55279
55279
|
* @summary Publish segment by id
|
|
55280
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55281
55280
|
* @param {Array<string>} requestBody A list of segment ids that you wish to publish
|
|
55282
55281
|
* @param {boolean} [publishAll] This flag decides whether you want to publish all unpublished or a list of specific segment ids
|
|
55282
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55283
55283
|
* @param {*} [axiosOptions] Override http request option.
|
|
55284
55284
|
* @throws {RequiredError}
|
|
55285
55285
|
*/
|
|
55286
|
-
publishDataSegment: (
|
|
55286
|
+
publishDataSegment: (requestBody: Array<string>, publishAll?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55287
55287
|
};
|
|
55288
55288
|
/**
|
|
55289
55289
|
* DataSegmentationV2024Api - functional programming interface
|
|
@@ -55302,12 +55302,12 @@ export declare const DataSegmentationV2024ApiFp: (configuration?: Configuration)
|
|
|
55302
55302
|
* This API deletes the segment specified by the given ID.
|
|
55303
55303
|
* @summary Delete segment by id
|
|
55304
55304
|
* @param {string} id The segment ID to delete.
|
|
55305
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55306
55305
|
* @param {boolean} [published] This determines which version of the segment to delete
|
|
55306
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55307
55307
|
* @param {*} [axiosOptions] Override http request option.
|
|
55308
55308
|
* @throws {RequiredError}
|
|
55309
55309
|
*/
|
|
55310
|
-
deleteDataSegment(id: string,
|
|
55310
|
+
deleteDataSegment(id: string, published?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
55311
55311
|
/**
|
|
55312
55312
|
* This API returns the segment specified by the given ID.
|
|
55313
55313
|
* @summary Get segment by id
|
|
@@ -55354,22 +55354,22 @@ export declare const DataSegmentationV2024ApiFp: (configuration?: Configuration)
|
|
|
55354
55354
|
* Use this API to update segment fields by using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
55355
55355
|
* @summary Update segment
|
|
55356
55356
|
* @param {string} id The segment ID to modify.
|
|
55357
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55358
55357
|
* @param {Array<object>} requestBody A list of segment update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * membership * memberFilter * memberSelection * scopes * enabled
|
|
55358
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55359
55359
|
* @param {*} [axiosOptions] Override http request option.
|
|
55360
55360
|
* @throws {RequiredError}
|
|
55361
55361
|
*/
|
|
55362
|
-
patchDataSegment(id: string,
|
|
55362
|
+
patchDataSegment(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataSegmentV2024>>;
|
|
55363
55363
|
/**
|
|
55364
55364
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
55365
55365
|
* @summary Publish segment by id
|
|
55366
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55367
55366
|
* @param {Array<string>} requestBody A list of segment ids that you wish to publish
|
|
55368
55367
|
* @param {boolean} [publishAll] This flag decides whether you want to publish all unpublished or a list of specific segment ids
|
|
55368
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55369
55369
|
* @param {*} [axiosOptions] Override http request option.
|
|
55370
55370
|
* @throws {RequiredError}
|
|
55371
55371
|
*/
|
|
55372
|
-
publishDataSegment(
|
|
55372
|
+
publishDataSegment(requestBody: Array<string>, publishAll?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
55373
55373
|
};
|
|
55374
55374
|
/**
|
|
55375
55375
|
* DataSegmentationV2024Api - factory interface
|
|
@@ -55466,18 +55466,18 @@ export interface DataSegmentationV2024ApiDeleteDataSegmentRequest {
|
|
|
55466
55466
|
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55467
55467
|
*/
|
|
55468
55468
|
readonly id: string;
|
|
55469
|
-
/**
|
|
55470
|
-
* Use this header to enable this experimental API.
|
|
55471
|
-
* @type {string}
|
|
55472
|
-
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55473
|
-
*/
|
|
55474
|
-
readonly xSailPointExperimental: string;
|
|
55475
55469
|
/**
|
|
55476
55470
|
* This determines which version of the segment to delete
|
|
55477
55471
|
* @type {boolean}
|
|
55478
55472
|
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55479
55473
|
*/
|
|
55480
55474
|
readonly published?: boolean;
|
|
55475
|
+
/**
|
|
55476
|
+
* Use this header to enable this experimental API.
|
|
55477
|
+
* @type {string}
|
|
55478
|
+
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55479
|
+
*/
|
|
55480
|
+
readonly xSailPointExperimental?: string;
|
|
55481
55481
|
}
|
|
55482
55482
|
/**
|
|
55483
55483
|
* Request parameters for getDataSegment operation in DataSegmentationV2024Api.
|
|
@@ -55603,18 +55603,18 @@ export interface DataSegmentationV2024ApiPatchDataSegmentRequest {
|
|
|
55603
55603
|
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55604
55604
|
*/
|
|
55605
55605
|
readonly id: string;
|
|
55606
|
-
/**
|
|
55607
|
-
* Use this header to enable this experimental API.
|
|
55608
|
-
* @type {string}
|
|
55609
|
-
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55610
|
-
*/
|
|
55611
|
-
readonly xSailPointExperimental: string;
|
|
55612
55606
|
/**
|
|
55613
55607
|
* A list of segment update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * membership * memberFilter * memberSelection * scopes * enabled
|
|
55614
55608
|
* @type {Array<object>}
|
|
55615
55609
|
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55616
55610
|
*/
|
|
55617
55611
|
readonly requestBody: Array<object>;
|
|
55612
|
+
/**
|
|
55613
|
+
* Use this header to enable this experimental API.
|
|
55614
|
+
* @type {string}
|
|
55615
|
+
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55616
|
+
*/
|
|
55617
|
+
readonly xSailPointExperimental?: string;
|
|
55618
55618
|
}
|
|
55619
55619
|
/**
|
|
55620
55620
|
* Request parameters for publishDataSegment operation in DataSegmentationV2024Api.
|
|
@@ -55622,12 +55622,6 @@ export interface DataSegmentationV2024ApiPatchDataSegmentRequest {
|
|
|
55622
55622
|
* @interface DataSegmentationV2024ApiPublishDataSegmentRequest
|
|
55623
55623
|
*/
|
|
55624
55624
|
export interface DataSegmentationV2024ApiPublishDataSegmentRequest {
|
|
55625
|
-
/**
|
|
55626
|
-
* Use this header to enable this experimental API.
|
|
55627
|
-
* @type {string}
|
|
55628
|
-
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
55629
|
-
*/
|
|
55630
|
-
readonly xSailPointExperimental: string;
|
|
55631
55625
|
/**
|
|
55632
55626
|
* A list of segment ids that you wish to publish
|
|
55633
55627
|
* @type {Array<string>}
|
|
@@ -55640,6 +55634,12 @@ export interface DataSegmentationV2024ApiPublishDataSegmentRequest {
|
|
|
55640
55634
|
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
55641
55635
|
*/
|
|
55642
55636
|
readonly publishAll?: boolean;
|
|
55637
|
+
/**
|
|
55638
|
+
* Use this header to enable this experimental API.
|
|
55639
|
+
* @type {string}
|
|
55640
|
+
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
55641
|
+
*/
|
|
55642
|
+
readonly xSailPointExperimental?: string;
|
|
55643
55643
|
}
|
|
55644
55644
|
/**
|
|
55645
55645
|
* DataSegmentationV2024Api - object-oriented interface
|
|
@@ -57469,21 +57469,21 @@ export declare const GovernanceGroupsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
57469
57469
|
/**
|
|
57470
57470
|
* This API creates a new Governance Group.
|
|
57471
57471
|
* @summary Create a new governance group.
|
|
57472
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57473
57472
|
* @param {WorkgroupDtoV2024} workgroupDtoV2024
|
|
57473
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57474
57474
|
* @param {*} [axiosOptions] Override http request option.
|
|
57475
57475
|
* @throws {RequiredError}
|
|
57476
57476
|
*/
|
|
57477
|
-
createWorkgroup: (
|
|
57477
|
+
createWorkgroup: (workgroupDtoV2024: WorkgroupDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57478
57478
|
/**
|
|
57479
57479
|
* This API deletes a Governance Group by its ID.
|
|
57480
57480
|
* @summary Delete a governance group
|
|
57481
57481
|
* @param {string} id ID of the Governance Group
|
|
57482
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57482
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57483
57483
|
* @param {*} [axiosOptions] Override http request option.
|
|
57484
57484
|
* @throws {RequiredError}
|
|
57485
57485
|
*/
|
|
57486
|
-
deleteWorkgroup: (id: string, xSailPointExperimental
|
|
57486
|
+
deleteWorkgroup: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57487
57487
|
/**
|
|
57488
57488
|
* This API removes one or more members from a Governance Group. A > **Following field of Identity is an optional field in the request.** > **name**
|
|
57489
57489
|
* @summary Remove members from governance group
|
|
@@ -57555,12 +57555,12 @@ export declare const GovernanceGroupsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
57555
57555
|
* This API updates an existing governance group by ID. The following fields and objects are patchable: * name * description * owner
|
|
57556
57556
|
* @summary Patch a governance group
|
|
57557
57557
|
* @param {string} id ID of the Governance Group
|
|
57558
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57558
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57559
57559
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
57560
57560
|
* @param {*} [axiosOptions] Override http request option.
|
|
57561
57561
|
* @throws {RequiredError}
|
|
57562
57562
|
*/
|
|
57563
|
-
patchWorkgroup: (id: string, xSailPointExperimental
|
|
57563
|
+
patchWorkgroup: (id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57564
57564
|
/**
|
|
57565
57565
|
* This API adds one or more members to a Governance Group. A token with API, ORG_ADMIN authority is required to call this API. > **Following field of Identity is an optional field in the request.** > **name**
|
|
57566
57566
|
* @summary Add members to governance group
|
|
@@ -57580,21 +57580,21 @@ export declare const GovernanceGroupsV2024ApiFp: (configuration?: Configuration)
|
|
|
57580
57580
|
/**
|
|
57581
57581
|
* This API creates a new Governance Group.
|
|
57582
57582
|
* @summary Create a new governance group.
|
|
57583
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57584
57583
|
* @param {WorkgroupDtoV2024} workgroupDtoV2024
|
|
57584
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57585
57585
|
* @param {*} [axiosOptions] Override http request option.
|
|
57586
57586
|
* @throws {RequiredError}
|
|
57587
57587
|
*/
|
|
57588
|
-
createWorkgroup(
|
|
57588
|
+
createWorkgroup(workgroupDtoV2024: WorkgroupDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkgroupDtoV2024>>;
|
|
57589
57589
|
/**
|
|
57590
57590
|
* This API deletes a Governance Group by its ID.
|
|
57591
57591
|
* @summary Delete a governance group
|
|
57592
57592
|
* @param {string} id ID of the Governance Group
|
|
57593
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57593
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57594
57594
|
* @param {*} [axiosOptions] Override http request option.
|
|
57595
57595
|
* @throws {RequiredError}
|
|
57596
57596
|
*/
|
|
57597
|
-
deleteWorkgroup(id: string, xSailPointExperimental
|
|
57597
|
+
deleteWorkgroup(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
57598
57598
|
/**
|
|
57599
57599
|
* This API removes one or more members from a Governance Group. A > **Following field of Identity is an optional field in the request.** > **name**
|
|
57600
57600
|
* @summary Remove members from governance group
|
|
@@ -57666,12 +57666,12 @@ export declare const GovernanceGroupsV2024ApiFp: (configuration?: Configuration)
|
|
|
57666
57666
|
* This API updates an existing governance group by ID. The following fields and objects are patchable: * name * description * owner
|
|
57667
57667
|
* @summary Patch a governance group
|
|
57668
57668
|
* @param {string} id ID of the Governance Group
|
|
57669
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57669
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57670
57670
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
57671
57671
|
* @param {*} [axiosOptions] Override http request option.
|
|
57672
57672
|
* @throws {RequiredError}
|
|
57673
57673
|
*/
|
|
57674
|
-
patchWorkgroup(id: string, xSailPointExperimental
|
|
57674
|
+
patchWorkgroup(id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkgroupDtoV2024>>;
|
|
57675
57675
|
/**
|
|
57676
57676
|
* This API adds one or more members to a Governance Group. A token with API, ORG_ADMIN authority is required to call this API. > **Following field of Identity is an optional field in the request.** > **name**
|
|
57677
57677
|
* @summary Add members to governance group
|
|
@@ -57775,18 +57775,18 @@ export declare const GovernanceGroupsV2024ApiFactory: (configuration?: Configura
|
|
|
57775
57775
|
* @interface GovernanceGroupsV2024ApiCreateWorkgroupRequest
|
|
57776
57776
|
*/
|
|
57777
57777
|
export interface GovernanceGroupsV2024ApiCreateWorkgroupRequest {
|
|
57778
|
-
/**
|
|
57779
|
-
* Use this header to enable this experimental API.
|
|
57780
|
-
* @type {string}
|
|
57781
|
-
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
57782
|
-
*/
|
|
57783
|
-
readonly xSailPointExperimental: string;
|
|
57784
57778
|
/**
|
|
57785
57779
|
*
|
|
57786
57780
|
* @type {WorkgroupDtoV2024}
|
|
57787
57781
|
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
57788
57782
|
*/
|
|
57789
57783
|
readonly workgroupDtoV2024: WorkgroupDtoV2024;
|
|
57784
|
+
/**
|
|
57785
|
+
* Use this header to enable this experimental API.
|
|
57786
|
+
* @type {string}
|
|
57787
|
+
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
57788
|
+
*/
|
|
57789
|
+
readonly xSailPointExperimental?: string;
|
|
57790
57790
|
}
|
|
57791
57791
|
/**
|
|
57792
57792
|
* Request parameters for deleteWorkgroup operation in GovernanceGroupsV2024Api.
|
|
@@ -57805,7 +57805,7 @@ export interface GovernanceGroupsV2024ApiDeleteWorkgroupRequest {
|
|
|
57805
57805
|
* @type {string}
|
|
57806
57806
|
* @memberof GovernanceGroupsV2024ApiDeleteWorkgroup
|
|
57807
57807
|
*/
|
|
57808
|
-
readonly xSailPointExperimental
|
|
57808
|
+
readonly xSailPointExperimental?: string;
|
|
57809
57809
|
}
|
|
57810
57810
|
/**
|
|
57811
57811
|
* Request parameters for deleteWorkgroupMembers operation in GovernanceGroupsV2024Api.
|
|
@@ -58016,7 +58016,7 @@ export interface GovernanceGroupsV2024ApiPatchWorkgroupRequest {
|
|
|
58016
58016
|
* @type {string}
|
|
58017
58017
|
* @memberof GovernanceGroupsV2024ApiPatchWorkgroup
|
|
58018
58018
|
*/
|
|
58019
|
-
readonly xSailPointExperimental
|
|
58019
|
+
readonly xSailPointExperimental?: string;
|
|
58020
58020
|
/**
|
|
58021
58021
|
*
|
|
58022
58022
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -58214,51 +58214,51 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
58214
58214
|
/**
|
|
58215
58215
|
* This API returns the list of ignored access request recommendations.
|
|
58216
58216
|
* @summary List ignored access request recommendations
|
|
58217
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58218
58217
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58219
58218
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58220
58219
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58221
58220
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58222
58221
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58222
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58223
58223
|
* @param {*} [axiosOptions] Override http request option.
|
|
58224
58224
|
* @throws {RequiredError}
|
|
58225
58225
|
*/
|
|
58226
|
-
getAccessRequestRecommendationsIgnoredItems: (
|
|
58226
|
+
getAccessRequestRecommendationsIgnoredItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58227
58227
|
/**
|
|
58228
58228
|
* This API returns a list of requested access request recommendations.
|
|
58229
58229
|
* @summary List accepted access request recommendations
|
|
58230
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58231
58230
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58232
58231
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58233
58232
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58234
58233
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58235
58234
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58235
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58236
58236
|
* @param {*} [axiosOptions] Override http request option.
|
|
58237
58237
|
* @throws {RequiredError}
|
|
58238
58238
|
*/
|
|
58239
|
-
getAccessRequestRecommendationsRequestedItems: (
|
|
58239
|
+
getAccessRequestRecommendationsRequestedItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58240
58240
|
/**
|
|
58241
58241
|
* This API returns the list of viewed access request recommendations.
|
|
58242
58242
|
* @summary List viewed access request recommendations
|
|
58243
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58244
58243
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58245
58244
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58246
58245
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58247
58246
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58248
58247
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58248
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58249
58249
|
* @param {*} [axiosOptions] Override http request option.
|
|
58250
58250
|
* @throws {RequiredError}
|
|
58251
58251
|
*/
|
|
58252
|
-
getAccessRequestRecommendationsViewedItems: (
|
|
58252
|
+
getAccessRequestRecommendationsViewedItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58253
58253
|
/**
|
|
58254
58254
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58255
58255
|
* @summary Update access request recommendations config
|
|
58256
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58257
58256
|
* @param {AccessRequestRecommendationConfigDtoV2024} accessRequestRecommendationConfigDtoV2024 The desired configurations for Access Request Recommender for the tenant.
|
|
58257
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58258
58258
|
* @param {*} [axiosOptions] Override http request option.
|
|
58259
58259
|
* @throws {RequiredError}
|
|
58260
58260
|
*/
|
|
58261
|
-
setAccessRequestRecommendationsConfig: (
|
|
58261
|
+
setAccessRequestRecommendationsConfig: (accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58262
58262
|
};
|
|
58263
58263
|
/**
|
|
58264
58264
|
* IAIAccessRequestRecommendationsV2024Api - functional programming interface
|
|
@@ -58327,51 +58327,51 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
58327
58327
|
/**
|
|
58328
58328
|
* This API returns the list of ignored access request recommendations.
|
|
58329
58329
|
* @summary List ignored access request recommendations
|
|
58330
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58331
58330
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58332
58331
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58333
58332
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58334
58333
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58335
58334
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58335
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58336
58336
|
* @param {*} [axiosOptions] Override http request option.
|
|
58337
58337
|
* @throws {RequiredError}
|
|
58338
58338
|
*/
|
|
58339
|
-
getAccessRequestRecommendationsIgnoredItems(
|
|
58339
|
+
getAccessRequestRecommendationsIgnoredItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
58340
58340
|
/**
|
|
58341
58341
|
* This API returns a list of requested access request recommendations.
|
|
58342
58342
|
* @summary List accepted access request recommendations
|
|
58343
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58344
58343
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58345
58344
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58346
58345
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58347
58346
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58348
58347
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58348
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58349
58349
|
* @param {*} [axiosOptions] Override http request option.
|
|
58350
58350
|
* @throws {RequiredError}
|
|
58351
58351
|
*/
|
|
58352
|
-
getAccessRequestRecommendationsRequestedItems(
|
|
58352
|
+
getAccessRequestRecommendationsRequestedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
58353
58353
|
/**
|
|
58354
58354
|
* This API returns the list of viewed access request recommendations.
|
|
58355
58355
|
* @summary List viewed access request recommendations
|
|
58356
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58357
58356
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58358
58357
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58359
58358
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58360
58359
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58361
58360
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58361
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58362
58362
|
* @param {*} [axiosOptions] Override http request option.
|
|
58363
58363
|
* @throws {RequiredError}
|
|
58364
58364
|
*/
|
|
58365
|
-
getAccessRequestRecommendationsViewedItems(
|
|
58365
|
+
getAccessRequestRecommendationsViewedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
58366
58366
|
/**
|
|
58367
58367
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58368
58368
|
* @summary Update access request recommendations config
|
|
58369
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58370
58369
|
* @param {AccessRequestRecommendationConfigDtoV2024} accessRequestRecommendationConfigDtoV2024 The desired configurations for Access Request Recommender for the tenant.
|
|
58370
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58371
58371
|
* @param {*} [axiosOptions] Override http request option.
|
|
58372
58372
|
* @throws {RequiredError}
|
|
58373
58373
|
*/
|
|
58374
|
-
setAccessRequestRecommendationsConfig(
|
|
58374
|
+
setAccessRequestRecommendationsConfig(accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationConfigDtoV2024>>;
|
|
58375
58375
|
};
|
|
58376
58376
|
/**
|
|
58377
58377
|
* IAIAccessRequestRecommendationsV2024Api - factory interface
|
|
@@ -58433,7 +58433,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
58433
58433
|
* @param {*} [axiosOptions] Override http request option.
|
|
58434
58434
|
* @throws {RequiredError}
|
|
58435
58435
|
*/
|
|
58436
|
-
getAccessRequestRecommendationsIgnoredItems(requestParameters
|
|
58436
|
+
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
58437
58437
|
/**
|
|
58438
58438
|
* This API returns a list of requested access request recommendations.
|
|
58439
58439
|
* @summary List accepted access request recommendations
|
|
@@ -58441,7 +58441,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
58441
58441
|
* @param {*} [axiosOptions] Override http request option.
|
|
58442
58442
|
* @throws {RequiredError}
|
|
58443
58443
|
*/
|
|
58444
|
-
getAccessRequestRecommendationsRequestedItems(requestParameters
|
|
58444
|
+
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
58445
58445
|
/**
|
|
58446
58446
|
* This API returns the list of viewed access request recommendations.
|
|
58447
58447
|
* @summary List viewed access request recommendations
|
|
@@ -58449,7 +58449,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
58449
58449
|
* @param {*} [axiosOptions] Override http request option.
|
|
58450
58450
|
* @throws {RequiredError}
|
|
58451
58451
|
*/
|
|
58452
|
-
getAccessRequestRecommendationsViewedItems(requestParameters
|
|
58452
|
+
getAccessRequestRecommendationsViewedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
58453
58453
|
/**
|
|
58454
58454
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58455
58455
|
* @summary Update access request recommendations config
|
|
@@ -58609,12 +58609,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58609
58609
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest
|
|
58610
58610
|
*/
|
|
58611
58611
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest {
|
|
58612
|
-
/**
|
|
58613
|
-
* Use this header to enable this experimental API.
|
|
58614
|
-
* @type {string}
|
|
58615
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
58616
|
-
*/
|
|
58617
|
-
readonly xSailPointExperimental: string;
|
|
58618
58612
|
/**
|
|
58619
58613
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58620
58614
|
* @type {number}
|
|
@@ -58645,6 +58639,12 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58645
58639
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
58646
58640
|
*/
|
|
58647
58641
|
readonly sorters?: string;
|
|
58642
|
+
/**
|
|
58643
|
+
* Use this header to enable this experimental API.
|
|
58644
|
+
* @type {string}
|
|
58645
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
58646
|
+
*/
|
|
58647
|
+
readonly xSailPointExperimental?: string;
|
|
58648
58648
|
}
|
|
58649
58649
|
/**
|
|
58650
58650
|
* Request parameters for getAccessRequestRecommendationsRequestedItems operation in IAIAccessRequestRecommendationsV2024Api.
|
|
@@ -58652,12 +58652,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58652
58652
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest
|
|
58653
58653
|
*/
|
|
58654
58654
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest {
|
|
58655
|
-
/**
|
|
58656
|
-
* Use this header to enable this experimental API.
|
|
58657
|
-
* @type {string}
|
|
58658
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
58659
|
-
*/
|
|
58660
|
-
readonly xSailPointExperimental: string;
|
|
58661
58655
|
/**
|
|
58662
58656
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58663
58657
|
* @type {number}
|
|
@@ -58688,6 +58682,12 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58688
58682
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
58689
58683
|
*/
|
|
58690
58684
|
readonly sorters?: string;
|
|
58685
|
+
/**
|
|
58686
|
+
* Use this header to enable this experimental API.
|
|
58687
|
+
* @type {string}
|
|
58688
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
58689
|
+
*/
|
|
58690
|
+
readonly xSailPointExperimental?: string;
|
|
58691
58691
|
}
|
|
58692
58692
|
/**
|
|
58693
58693
|
* Request parameters for getAccessRequestRecommendationsViewedItems operation in IAIAccessRequestRecommendationsV2024Api.
|
|
@@ -58695,12 +58695,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58695
58695
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest
|
|
58696
58696
|
*/
|
|
58697
58697
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest {
|
|
58698
|
-
/**
|
|
58699
|
-
* Use this header to enable this experimental API.
|
|
58700
|
-
* @type {string}
|
|
58701
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
58702
|
-
*/
|
|
58703
|
-
readonly xSailPointExperimental: string;
|
|
58704
58698
|
/**
|
|
58705
58699
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58706
58700
|
* @type {number}
|
|
@@ -58731,6 +58725,12 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58731
58725
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
58732
58726
|
*/
|
|
58733
58727
|
readonly sorters?: string;
|
|
58728
|
+
/**
|
|
58729
|
+
* Use this header to enable this experimental API.
|
|
58730
|
+
* @type {string}
|
|
58731
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
58732
|
+
*/
|
|
58733
|
+
readonly xSailPointExperimental?: string;
|
|
58734
58734
|
}
|
|
58735
58735
|
/**
|
|
58736
58736
|
* Request parameters for setAccessRequestRecommendationsConfig operation in IAIAccessRequestRecommendationsV2024Api.
|
|
@@ -58738,18 +58738,18 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58738
58738
|
* @interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest
|
|
58739
58739
|
*/
|
|
58740
58740
|
export interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest {
|
|
58741
|
-
/**
|
|
58742
|
-
* Use this header to enable this experimental API.
|
|
58743
|
-
* @type {string}
|
|
58744
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
58745
|
-
*/
|
|
58746
|
-
readonly xSailPointExperimental: string;
|
|
58747
58741
|
/**
|
|
58748
58742
|
* The desired configurations for Access Request Recommender for the tenant.
|
|
58749
58743
|
* @type {AccessRequestRecommendationConfigDtoV2024}
|
|
58750
58744
|
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
58751
58745
|
*/
|
|
58752
58746
|
readonly accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024;
|
|
58747
|
+
/**
|
|
58748
|
+
* Use this header to enable this experimental API.
|
|
58749
|
+
* @type {string}
|
|
58750
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
58751
|
+
*/
|
|
58752
|
+
readonly xSailPointExperimental?: string;
|
|
58753
58753
|
}
|
|
58754
58754
|
/**
|
|
58755
58755
|
* IAIAccessRequestRecommendationsV2024Api - object-oriented interface
|
|
@@ -58820,7 +58820,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
58820
58820
|
* @throws {RequiredError}
|
|
58821
58821
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
58822
58822
|
*/
|
|
58823
|
-
getAccessRequestRecommendationsIgnoredItems(requestParameters
|
|
58823
|
+
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
58824
58824
|
/**
|
|
58825
58825
|
* This API returns a list of requested access request recommendations.
|
|
58826
58826
|
* @summary List accepted access request recommendations
|
|
@@ -58829,7 +58829,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
58829
58829
|
* @throws {RequiredError}
|
|
58830
58830
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
58831
58831
|
*/
|
|
58832
|
-
getAccessRequestRecommendationsRequestedItems(requestParameters
|
|
58832
|
+
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
58833
58833
|
/**
|
|
58834
58834
|
* This API returns the list of viewed access request recommendations.
|
|
58835
58835
|
* @summary List viewed access request recommendations
|
|
@@ -58838,7 +58838,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
58838
58838
|
* @throws {RequiredError}
|
|
58839
58839
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
58840
58840
|
*/
|
|
58841
|
-
getAccessRequestRecommendationsViewedItems(requestParameters
|
|
58841
|
+
getAccessRequestRecommendationsViewedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
58842
58842
|
/**
|
|
58843
58843
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58844
58844
|
* @summary Update access request recommendations config
|
|
@@ -58857,12 +58857,12 @@ export declare const IAICommonAccessV2024ApiAxiosParamCreator: (configuration?:
|
|
|
58857
58857
|
/**
|
|
58858
58858
|
* This API is used to add roles/access profiles to the list of common access for a customer. Requires authorization scope of iai:access-modeling:create
|
|
58859
58859
|
* @summary Create common access items
|
|
58860
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58861
58860
|
* @param {CommonAccessItemRequestV2024} commonAccessItemRequestV2024
|
|
58861
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58862
58862
|
* @param {*} [axiosOptions] Override http request option.
|
|
58863
58863
|
* @throws {RequiredError}
|
|
58864
58864
|
*/
|
|
58865
|
-
createCommonAccess: (
|
|
58865
|
+
createCommonAccess: (commonAccessItemRequestV2024: CommonAccessItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58866
58866
|
/**
|
|
58867
58867
|
* This endpoint returns the current common access for a customer. The returned items can be filtered and sorted. Requires authorization scope of iai:access-modeling:read
|
|
58868
58868
|
* @summary Get a paginated list of common access
|
|
@@ -58894,12 +58894,12 @@ export declare const IAICommonAccessV2024ApiFp: (configuration?: Configuration)
|
|
|
58894
58894
|
/**
|
|
58895
58895
|
* This API is used to add roles/access profiles to the list of common access for a customer. Requires authorization scope of iai:access-modeling:create
|
|
58896
58896
|
* @summary Create common access items
|
|
58897
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58898
58897
|
* @param {CommonAccessItemRequestV2024} commonAccessItemRequestV2024
|
|
58898
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58899
58899
|
* @param {*} [axiosOptions] Override http request option.
|
|
58900
58900
|
* @throws {RequiredError}
|
|
58901
58901
|
*/
|
|
58902
|
-
createCommonAccess(
|
|
58902
|
+
createCommonAccess(commonAccessItemRequestV2024: CommonAccessItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommonAccessItemResponseV2024>>;
|
|
58903
58903
|
/**
|
|
58904
58904
|
* This endpoint returns the current common access for a customer. The returned items can be filtered and sorted. Requires authorization scope of iai:access-modeling:read
|
|
58905
58905
|
* @summary Get a paginated list of common access
|
|
@@ -58959,18 +58959,18 @@ export declare const IAICommonAccessV2024ApiFactory: (configuration?: Configurat
|
|
|
58959
58959
|
* @interface IAICommonAccessV2024ApiCreateCommonAccessRequest
|
|
58960
58960
|
*/
|
|
58961
58961
|
export interface IAICommonAccessV2024ApiCreateCommonAccessRequest {
|
|
58962
|
-
/**
|
|
58963
|
-
* Use this header to enable this experimental API.
|
|
58964
|
-
* @type {string}
|
|
58965
|
-
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
58966
|
-
*/
|
|
58967
|
-
readonly xSailPointExperimental: string;
|
|
58968
58962
|
/**
|
|
58969
58963
|
*
|
|
58970
58964
|
* @type {CommonAccessItemRequestV2024}
|
|
58971
58965
|
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
58972
58966
|
*/
|
|
58973
58967
|
readonly commonAccessItemRequestV2024: CommonAccessItemRequestV2024;
|
|
58968
|
+
/**
|
|
58969
|
+
* Use this header to enable this experimental API.
|
|
58970
|
+
* @type {string}
|
|
58971
|
+
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
58972
|
+
*/
|
|
58973
|
+
readonly xSailPointExperimental?: string;
|
|
58974
58974
|
}
|
|
58975
58975
|
/**
|
|
58976
58976
|
* Request parameters for getCommonAccess operation in IAICommonAccessV2024Api.
|
|
@@ -59925,12 +59925,12 @@ export declare const IAIRecommendationsV2024ApiAxiosParamCreator: (configuration
|
|
|
59925
59925
|
/**
|
|
59926
59926
|
* Updates configuration attributes used by certification recommendations.
|
|
59927
59927
|
* @summary Update certification recommendation config values
|
|
59928
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59929
59928
|
* @param {RecommendationConfigDtoV2024} recommendationConfigDtoV2024
|
|
59929
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
59930
59930
|
* @param {*} [axiosOptions] Override http request option.
|
|
59931
59931
|
* @throws {RequiredError}
|
|
59932
59932
|
*/
|
|
59933
|
-
updateRecommendationsConfig: (
|
|
59933
|
+
updateRecommendationsConfig: (recommendationConfigDtoV2024: RecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59934
59934
|
};
|
|
59935
59935
|
/**
|
|
59936
59936
|
* IAIRecommendationsV2024Api - functional programming interface
|
|
@@ -59957,12 +59957,12 @@ export declare const IAIRecommendationsV2024ApiFp: (configuration?: Configuratio
|
|
|
59957
59957
|
/**
|
|
59958
59958
|
* Updates configuration attributes used by certification recommendations.
|
|
59959
59959
|
* @summary Update certification recommendation config values
|
|
59960
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59961
59960
|
* @param {RecommendationConfigDtoV2024} recommendationConfigDtoV2024
|
|
59961
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
59962
59962
|
* @param {*} [axiosOptions] Override http request option.
|
|
59963
59963
|
* @throws {RequiredError}
|
|
59964
59964
|
*/
|
|
59965
|
-
updateRecommendationsConfig(
|
|
59965
|
+
updateRecommendationsConfig(recommendationConfigDtoV2024: RecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecommendationConfigDtoV2024>>;
|
|
59966
59966
|
};
|
|
59967
59967
|
/**
|
|
59968
59968
|
* IAIRecommendationsV2024Api - factory interface
|
|
@@ -60032,18 +60032,18 @@ export interface IAIRecommendationsV2024ApiGetRecommendationsConfigRequest {
|
|
|
60032
60032
|
* @interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest
|
|
60033
60033
|
*/
|
|
60034
60034
|
export interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest {
|
|
60035
|
-
/**
|
|
60036
|
-
* Use this header to enable this experimental API.
|
|
60037
|
-
* @type {string}
|
|
60038
|
-
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
60039
|
-
*/
|
|
60040
|
-
readonly xSailPointExperimental: string;
|
|
60041
60035
|
/**
|
|
60042
60036
|
*
|
|
60043
60037
|
* @type {RecommendationConfigDtoV2024}
|
|
60044
60038
|
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
60045
60039
|
*/
|
|
60046
60040
|
readonly recommendationConfigDtoV2024: RecommendationConfigDtoV2024;
|
|
60041
|
+
/**
|
|
60042
|
+
* Use this header to enable this experimental API.
|
|
60043
|
+
* @type {string}
|
|
60044
|
+
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
60045
|
+
*/
|
|
60046
|
+
readonly xSailPointExperimental?: string;
|
|
60047
60047
|
}
|
|
60048
60048
|
/**
|
|
60049
60049
|
* IAIRecommendationsV2024Api - object-oriented interface
|
|
@@ -60299,11 +60299,11 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60299
60299
|
* The method retrieves a role mining session.
|
|
60300
60300
|
* @summary Get a role mining session
|
|
60301
60301
|
* @param {string} sessionId The role mining session id to be retrieved.
|
|
60302
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60302
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60303
60303
|
* @param {*} [axiosOptions] Override http request option.
|
|
60304
60304
|
* @throws {RequiredError}
|
|
60305
60305
|
*/
|
|
60306
|
-
getRoleMiningSession: (sessionId: string, xSailPointExperimental
|
|
60306
|
+
getRoleMiningSession: (sessionId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60307
60307
|
/**
|
|
60308
60308
|
* This method returns a role mining session status for a customer.
|
|
60309
60309
|
* @summary Get role mining session status state
|
|
@@ -60316,16 +60316,16 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60316
60316
|
/**
|
|
60317
60317
|
* Returns all role mining sessions that match the query parameters
|
|
60318
60318
|
* @summary Retrieves all role mining sessions
|
|
60319
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60320
60319
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **saved**: *eq* **name**: *eq, sw*
|
|
60321
60320
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **createdBy, createdDate**
|
|
60322
60321
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60323
60322
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60324
60323
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60324
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60325
60325
|
* @param {*} [axiosOptions] Override http request option.
|
|
60326
60326
|
* @throws {RequiredError}
|
|
60327
60327
|
*/
|
|
60328
|
-
getRoleMiningSessions: (
|
|
60328
|
+
getRoleMiningSessions: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60329
60329
|
/**
|
|
60330
60330
|
* This method returns all saved potential roles (draft roles).
|
|
60331
60331
|
* @summary Retrieves all saved potential roles
|
|
@@ -60343,23 +60343,23 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60343
60343
|
* @summary Update a potential role
|
|
60344
60344
|
* @param {string} sessionId The role mining session id
|
|
60345
60345
|
* @param {string} potentialRoleId The potential role summary id
|
|
60346
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60347
60346
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
60347
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60348
60348
|
* @param {*} [axiosOptions] Override http request option.
|
|
60349
60349
|
* @throws {RequiredError}
|
|
60350
60350
|
*/
|
|
60351
|
-
patchPotentialRole: (sessionId: string, potentialRoleId: string,
|
|
60351
|
+
patchPotentialRole: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60352
60352
|
/**
|
|
60353
60353
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
60354
60354
|
* @summary Update a potential role
|
|
60355
60355
|
* @param {string} sessionId The role mining session id
|
|
60356
60356
|
* @param {string} potentialRoleId The potential role summary id
|
|
60357
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60358
60357
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
60358
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60359
60359
|
* @param {*} [axiosOptions] Override http request option.
|
|
60360
60360
|
* @throws {RequiredError}
|
|
60361
60361
|
*/
|
|
60362
|
-
patchPotentialRole_1: (sessionId: string, potentialRoleId: string,
|
|
60362
|
+
patchPotentialRole_1: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60363
60363
|
/**
|
|
60364
60364
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
60365
60365
|
* @summary Patch a role mining session
|
|
@@ -60603,11 +60603,11 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
60603
60603
|
* The method retrieves a role mining session.
|
|
60604
60604
|
* @summary Get a role mining session
|
|
60605
60605
|
* @param {string} sessionId The role mining session id to be retrieved.
|
|
60606
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60606
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60607
60607
|
* @param {*} [axiosOptions] Override http request option.
|
|
60608
60608
|
* @throws {RequiredError}
|
|
60609
60609
|
*/
|
|
60610
|
-
getRoleMiningSession(sessionId: string, xSailPointExperimental
|
|
60610
|
+
getRoleMiningSession(sessionId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleMiningSessionResponseV2024>>;
|
|
60611
60611
|
/**
|
|
60612
60612
|
* This method returns a role mining session status for a customer.
|
|
60613
60613
|
* @summary Get role mining session status state
|
|
@@ -60620,16 +60620,16 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
60620
60620
|
/**
|
|
60621
60621
|
* Returns all role mining sessions that match the query parameters
|
|
60622
60622
|
* @summary Retrieves all role mining sessions
|
|
60623
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60624
60623
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **saved**: *eq* **name**: *eq, sw*
|
|
60625
60624
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **createdBy, createdDate**
|
|
60626
60625
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60627
60626
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60628
60627
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60628
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60629
60629
|
* @param {*} [axiosOptions] Override http request option.
|
|
60630
60630
|
* @throws {RequiredError}
|
|
60631
60631
|
*/
|
|
60632
|
-
getRoleMiningSessions(
|
|
60632
|
+
getRoleMiningSessions(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleMiningSessionDtoV2024>>>;
|
|
60633
60633
|
/**
|
|
60634
60634
|
* This method returns all saved potential roles (draft roles).
|
|
60635
60635
|
* @summary Retrieves all saved potential roles
|
|
@@ -60647,23 +60647,23 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
60647
60647
|
* @summary Update a potential role
|
|
60648
60648
|
* @param {string} sessionId The role mining session id
|
|
60649
60649
|
* @param {string} potentialRoleId The potential role summary id
|
|
60650
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60651
60650
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
60651
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60652
60652
|
* @param {*} [axiosOptions] Override http request option.
|
|
60653
60653
|
* @throws {RequiredError}
|
|
60654
60654
|
*/
|
|
60655
|
-
patchPotentialRole(sessionId: string, potentialRoleId: string,
|
|
60655
|
+
patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
60656
60656
|
/**
|
|
60657
60657
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
60658
60658
|
* @summary Update a potential role
|
|
60659
60659
|
* @param {string} sessionId The role mining session id
|
|
60660
60660
|
* @param {string} potentialRoleId The potential role summary id
|
|
60661
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60662
60661
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
60662
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60663
60663
|
* @param {*} [axiosOptions] Override http request option.
|
|
60664
60664
|
* @throws {RequiredError}
|
|
60665
60665
|
*/
|
|
60666
|
-
patchPotentialRole_1(sessionId: string, potentialRoleId: string,
|
|
60666
|
+
patchPotentialRole_1(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
60667
60667
|
/**
|
|
60668
60668
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
60669
60669
|
* @summary Patch a role mining session
|
|
@@ -60852,7 +60852,7 @@ export declare const IAIRoleMiningV2024ApiFactory: (configuration?: Configuratio
|
|
|
60852
60852
|
* @param {*} [axiosOptions] Override http request option.
|
|
60853
60853
|
* @throws {RequiredError}
|
|
60854
60854
|
*/
|
|
60855
|
-
getRoleMiningSessions(requestParameters
|
|
60855
|
+
getRoleMiningSessions(requestParameters?: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleMiningSessionDtoV2024>>;
|
|
60856
60856
|
/**
|
|
60857
60857
|
* This method returns all saved potential roles (draft roles).
|
|
60858
60858
|
* @summary Retrieves all saved potential roles
|
|
@@ -61576,7 +61576,7 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionRequest {
|
|
|
61576
61576
|
* @type {string}
|
|
61577
61577
|
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSession
|
|
61578
61578
|
*/
|
|
61579
|
-
readonly xSailPointExperimental
|
|
61579
|
+
readonly xSailPointExperimental?: string;
|
|
61580
61580
|
}
|
|
61581
61581
|
/**
|
|
61582
61582
|
* Request parameters for getRoleMiningSessionStatus operation in IAIRoleMiningV2024Api.
|
|
@@ -61603,12 +61603,6 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionStatusRequest {
|
|
|
61603
61603
|
* @interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest
|
|
61604
61604
|
*/
|
|
61605
61605
|
export interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest {
|
|
61606
|
-
/**
|
|
61607
|
-
* Use this header to enable this experimental API.
|
|
61608
|
-
* @type {string}
|
|
61609
|
-
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
61610
|
-
*/
|
|
61611
|
-
readonly xSailPointExperimental: string;
|
|
61612
61606
|
/**
|
|
61613
61607
|
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **saved**: *eq* **name**: *eq, sw*
|
|
61614
61608
|
* @type {string}
|
|
@@ -61639,6 +61633,12 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest {
|
|
|
61639
61633
|
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
61640
61634
|
*/
|
|
61641
61635
|
readonly count?: boolean;
|
|
61636
|
+
/**
|
|
61637
|
+
* Use this header to enable this experimental API.
|
|
61638
|
+
* @type {string}
|
|
61639
|
+
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
61640
|
+
*/
|
|
61641
|
+
readonly xSailPointExperimental?: string;
|
|
61642
61642
|
}
|
|
61643
61643
|
/**
|
|
61644
61644
|
* Request parameters for getSavedPotentialRoles operation in IAIRoleMiningV2024Api.
|
|
@@ -61695,18 +61695,18 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRoleRequest {
|
|
|
61695
61695
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61696
61696
|
*/
|
|
61697
61697
|
readonly potentialRoleId: string;
|
|
61698
|
-
/**
|
|
61699
|
-
* Use this header to enable this experimental API.
|
|
61700
|
-
* @type {string}
|
|
61701
|
-
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61702
|
-
*/
|
|
61703
|
-
readonly xSailPointExperimental: string;
|
|
61704
61698
|
/**
|
|
61705
61699
|
*
|
|
61706
61700
|
* @type {Array<PatchPotentialRoleRequestInnerV2024>}
|
|
61707
61701
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61708
61702
|
*/
|
|
61709
61703
|
readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>;
|
|
61704
|
+
/**
|
|
61705
|
+
* Use this header to enable this experimental API.
|
|
61706
|
+
* @type {string}
|
|
61707
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61708
|
+
*/
|
|
61709
|
+
readonly xSailPointExperimental?: string;
|
|
61710
61710
|
}
|
|
61711
61711
|
/**
|
|
61712
61712
|
* Request parameters for patchPotentialRole_1 operation in IAIRoleMiningV2024Api.
|
|
@@ -61726,18 +61726,18 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRole0Request {
|
|
|
61726
61726
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61727
61727
|
*/
|
|
61728
61728
|
readonly potentialRoleId: string;
|
|
61729
|
-
/**
|
|
61730
|
-
* Use this header to enable this experimental API.
|
|
61731
|
-
* @type {string}
|
|
61732
|
-
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61733
|
-
*/
|
|
61734
|
-
readonly xSailPointExperimental: string;
|
|
61735
61729
|
/**
|
|
61736
61730
|
*
|
|
61737
61731
|
* @type {Array<PatchPotentialRoleRequestInnerV2024>}
|
|
61738
61732
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61739
61733
|
*/
|
|
61740
61734
|
readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>;
|
|
61735
|
+
/**
|
|
61736
|
+
* Use this header to enable this experimental API.
|
|
61737
|
+
* @type {string}
|
|
61738
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61739
|
+
*/
|
|
61740
|
+
readonly xSailPointExperimental?: string;
|
|
61741
61741
|
}
|
|
61742
61742
|
/**
|
|
61743
61743
|
* Request parameters for patchRoleMiningSession operation in IAIRoleMiningV2024Api.
|
|
@@ -61983,7 +61983,7 @@ export declare class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
61983
61983
|
* @throws {RequiredError}
|
|
61984
61984
|
* @memberof IAIRoleMiningV2024Api
|
|
61985
61985
|
*/
|
|
61986
|
-
getRoleMiningSessions(requestParameters
|
|
61986
|
+
getRoleMiningSessions(requestParameters?: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleMiningSessionDtoV2024[], any>>;
|
|
61987
61987
|
/**
|
|
61988
61988
|
* This method returns all saved potential roles (draft roles).
|
|
61989
61989
|
* @summary Retrieves all saved potential roles
|
|
@@ -62040,11 +62040,11 @@ export declare const IconsV2024ApiAxiosParamCreator: (configuration?: Configurat
|
|
|
62040
62040
|
* @summary Delete an icon
|
|
62041
62041
|
* @param {DeleteIconObjectTypeV2024} objectType Object type. Available options [\'application\']
|
|
62042
62042
|
* @param {string} objectId Object id.
|
|
62043
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62043
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62044
62044
|
* @param {*} [axiosOptions] Override http request option.
|
|
62045
62045
|
* @throws {RequiredError}
|
|
62046
62046
|
*/
|
|
62047
|
-
deleteIcon: (objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental
|
|
62047
|
+
deleteIcon: (objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62048
62048
|
/**
|
|
62049
62049
|
* This API endpoint updates an icon by object type and object id. A token with ORG_ADMIN authority is required to call this API.
|
|
62050
62050
|
* @summary Update an icon
|
|
@@ -62067,11 +62067,11 @@ export declare const IconsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
62067
62067
|
* @summary Delete an icon
|
|
62068
62068
|
* @param {DeleteIconObjectTypeV2024} objectType Object type. Available options [\'application\']
|
|
62069
62069
|
* @param {string} objectId Object id.
|
|
62070
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62070
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62071
62071
|
* @param {*} [axiosOptions] Override http request option.
|
|
62072
62072
|
* @throws {RequiredError}
|
|
62073
62073
|
*/
|
|
62074
|
-
deleteIcon(objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental
|
|
62074
|
+
deleteIcon(objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62075
62075
|
/**
|
|
62076
62076
|
* This API endpoint updates an icon by object type and object id. A token with ORG_ADMIN authority is required to call this API.
|
|
62077
62077
|
* @summary Update an icon
|
|
@@ -62129,7 +62129,7 @@ export interface IconsV2024ApiDeleteIconRequest {
|
|
|
62129
62129
|
* @type {string}
|
|
62130
62130
|
* @memberof IconsV2024ApiDeleteIcon
|
|
62131
62131
|
*/
|
|
62132
|
-
readonly xSailPointExperimental
|
|
62132
|
+
readonly xSailPointExperimental?: string;
|
|
62133
62133
|
}
|
|
62134
62134
|
/**
|
|
62135
62135
|
* Request parameters for setIcon operation in IconsV2024Api.
|
|
@@ -65837,12 +65837,12 @@ export declare const MachineAccountsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
65837
65837
|
* Use this API to update machine accounts details.
|
|
65838
65838
|
* @summary Update a machine account
|
|
65839
65839
|
* @param {string} id Machine Account ID.
|
|
65840
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
65841
65840
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
65841
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
65842
65842
|
* @param {*} [axiosOptions] Override http request option.
|
|
65843
65843
|
* @throws {RequiredError}
|
|
65844
65844
|
*/
|
|
65845
|
-
updateMachineAccount: (id: string,
|
|
65845
|
+
updateMachineAccount: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65846
65846
|
};
|
|
65847
65847
|
/**
|
|
65848
65848
|
* MachineAccountsV2024Api - functional programming interface
|
|
@@ -65875,12 +65875,12 @@ export declare const MachineAccountsV2024ApiFp: (configuration?: Configuration)
|
|
|
65875
65875
|
* Use this API to update machine accounts details.
|
|
65876
65876
|
* @summary Update a machine account
|
|
65877
65877
|
* @param {string} id Machine Account ID.
|
|
65878
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
65879
65878
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
65879
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
65880
65880
|
* @param {*} [axiosOptions] Override http request option.
|
|
65881
65881
|
* @throws {RequiredError}
|
|
65882
65882
|
*/
|
|
65883
|
-
updateMachineAccount(id: string,
|
|
65883
|
+
updateMachineAccount(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2024>>;
|
|
65884
65884
|
};
|
|
65885
65885
|
/**
|
|
65886
65886
|
* MachineAccountsV2024Api - factory interface
|
|
@@ -65986,18 +65986,18 @@ export interface MachineAccountsV2024ApiUpdateMachineAccountRequest {
|
|
|
65986
65986
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65987
65987
|
*/
|
|
65988
65988
|
readonly id: string;
|
|
65989
|
-
/**
|
|
65990
|
-
* Use this header to enable this experimental API.
|
|
65991
|
-
* @type {string}
|
|
65992
|
-
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65993
|
-
*/
|
|
65994
|
-
readonly xSailPointExperimental: string;
|
|
65995
65989
|
/**
|
|
65996
65990
|
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
65997
65991
|
* @type {Array<object>}
|
|
65998
65992
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65999
65993
|
*/
|
|
66000
65994
|
readonly requestBody: Array<object>;
|
|
65995
|
+
/**
|
|
65996
|
+
* Use this header to enable this experimental API.
|
|
65997
|
+
* @type {string}
|
|
65998
|
+
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65999
|
+
*/
|
|
66000
|
+
readonly xSailPointExperimental?: string;
|
|
66001
66001
|
}
|
|
66002
66002
|
/**
|
|
66003
66003
|
* MachineAccountsV2024Api - object-oriented interface
|
|
@@ -66214,21 +66214,21 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
66214
66214
|
/**
|
|
66215
66215
|
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
66216
66216
|
* @summary Create machine identities
|
|
66217
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66218
66217
|
* @param {MachineIdentityV2024} machineIdentityV2024
|
|
66218
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66219
66219
|
* @param {*} [axiosOptions] Override http request option.
|
|
66220
66220
|
* @throws {RequiredError}
|
|
66221
66221
|
*/
|
|
66222
|
-
createMachineIdentity: (
|
|
66222
|
+
createMachineIdentity: (machineIdentityV2024: MachineIdentityV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66223
66223
|
/**
|
|
66224
66224
|
* The API returns successful response if the requested machine identity was deleted.
|
|
66225
66225
|
* @summary Delete machine identity
|
|
66226
66226
|
* @param {string} id Machine Identity ID
|
|
66227
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66227
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66228
66228
|
* @param {*} [axiosOptions] Override http request option.
|
|
66229
66229
|
* @throws {RequiredError}
|
|
66230
66230
|
*/
|
|
66231
|
-
deleteMachineIdentity: (id: string, xSailPointExperimental
|
|
66231
|
+
deleteMachineIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66232
66232
|
/**
|
|
66233
66233
|
* This API returns a single machine identity using the Machine Identity ID.
|
|
66234
66234
|
* @summary Machine identity details
|
|
@@ -66255,12 +66255,12 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
66255
66255
|
* Use this API to update machine identity details.
|
|
66256
66256
|
* @summary Update a machine identity
|
|
66257
66257
|
* @param {string} id Machine Identity ID.
|
|
66258
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66259
66258
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
66259
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66260
66260
|
* @param {*} [axiosOptions] Override http request option.
|
|
66261
66261
|
* @throws {RequiredError}
|
|
66262
66262
|
*/
|
|
66263
|
-
updateMachineIdentity: (id: string,
|
|
66263
|
+
updateMachineIdentity: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66264
66264
|
};
|
|
66265
66265
|
/**
|
|
66266
66266
|
* MachineIdentitiesV2024Api - functional programming interface
|
|
@@ -66270,21 +66270,21 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
66270
66270
|
/**
|
|
66271
66271
|
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
66272
66272
|
* @summary Create machine identities
|
|
66273
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66274
66273
|
* @param {MachineIdentityV2024} machineIdentityV2024
|
|
66274
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66275
66275
|
* @param {*} [axiosOptions] Override http request option.
|
|
66276
66276
|
* @throws {RequiredError}
|
|
66277
66277
|
*/
|
|
66278
|
-
createMachineIdentity(
|
|
66278
|
+
createMachineIdentity(machineIdentityV2024: MachineIdentityV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityV2024>>;
|
|
66279
66279
|
/**
|
|
66280
66280
|
* The API returns successful response if the requested machine identity was deleted.
|
|
66281
66281
|
* @summary Delete machine identity
|
|
66282
66282
|
* @param {string} id Machine Identity ID
|
|
66283
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66283
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66284
66284
|
* @param {*} [axiosOptions] Override http request option.
|
|
66285
66285
|
* @throws {RequiredError}
|
|
66286
66286
|
*/
|
|
66287
|
-
deleteMachineIdentity(id: string, xSailPointExperimental
|
|
66287
|
+
deleteMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
66288
66288
|
/**
|
|
66289
66289
|
* This API returns a single machine identity using the Machine Identity ID.
|
|
66290
66290
|
* @summary Machine identity details
|
|
@@ -66311,12 +66311,12 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
66311
66311
|
* Use this API to update machine identity details.
|
|
66312
66312
|
* @summary Update a machine identity
|
|
66313
66313
|
* @param {string} id Machine Identity ID.
|
|
66314
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66315
66314
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
66315
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66316
66316
|
* @param {*} [axiosOptions] Override http request option.
|
|
66317
66317
|
* @throws {RequiredError}
|
|
66318
66318
|
*/
|
|
66319
|
-
updateMachineIdentity(id: string,
|
|
66319
|
+
updateMachineIdentity(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityV2024>>;
|
|
66320
66320
|
};
|
|
66321
66321
|
/**
|
|
66322
66322
|
* MachineIdentitiesV2024Api - factory interface
|
|
@@ -66370,18 +66370,18 @@ export declare const MachineIdentitiesV2024ApiFactory: (configuration?: Configur
|
|
|
66370
66370
|
* @interface MachineIdentitiesV2024ApiCreateMachineIdentityRequest
|
|
66371
66371
|
*/
|
|
66372
66372
|
export interface MachineIdentitiesV2024ApiCreateMachineIdentityRequest {
|
|
66373
|
-
/**
|
|
66374
|
-
* Use this header to enable this experimental API.
|
|
66375
|
-
* @type {string}
|
|
66376
|
-
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
66377
|
-
*/
|
|
66378
|
-
readonly xSailPointExperimental: string;
|
|
66379
66373
|
/**
|
|
66380
66374
|
*
|
|
66381
66375
|
* @type {MachineIdentityV2024}
|
|
66382
66376
|
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
66383
66377
|
*/
|
|
66384
66378
|
readonly machineIdentityV2024: MachineIdentityV2024;
|
|
66379
|
+
/**
|
|
66380
|
+
* Use this header to enable this experimental API.
|
|
66381
|
+
* @type {string}
|
|
66382
|
+
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
66383
|
+
*/
|
|
66384
|
+
readonly xSailPointExperimental?: string;
|
|
66385
66385
|
}
|
|
66386
66386
|
/**
|
|
66387
66387
|
* Request parameters for deleteMachineIdentity operation in MachineIdentitiesV2024Api.
|
|
@@ -66400,7 +66400,7 @@ export interface MachineIdentitiesV2024ApiDeleteMachineIdentityRequest {
|
|
|
66400
66400
|
* @type {string}
|
|
66401
66401
|
* @memberof MachineIdentitiesV2024ApiDeleteMachineIdentity
|
|
66402
66402
|
*/
|
|
66403
|
-
readonly xSailPointExperimental
|
|
66403
|
+
readonly xSailPointExperimental?: string;
|
|
66404
66404
|
}
|
|
66405
66405
|
/**
|
|
66406
66406
|
* Request parameters for getMachineIdentity operation in MachineIdentitiesV2024Api.
|
|
@@ -66476,18 +66476,18 @@ export interface MachineIdentitiesV2024ApiUpdateMachineIdentityRequest {
|
|
|
66476
66476
|
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66477
66477
|
*/
|
|
66478
66478
|
readonly id: string;
|
|
66479
|
-
/**
|
|
66480
|
-
* Use this header to enable this experimental API.
|
|
66481
|
-
* @type {string}
|
|
66482
|
-
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66483
|
-
*/
|
|
66484
|
-
readonly xSailPointExperimental: string;
|
|
66485
66479
|
/**
|
|
66486
66480
|
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
66487
66481
|
* @type {Array<object>}
|
|
66488
66482
|
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66489
66483
|
*/
|
|
66490
66484
|
readonly requestBody: Array<object>;
|
|
66485
|
+
/**
|
|
66486
|
+
* Use this header to enable this experimental API.
|
|
66487
|
+
* @type {string}
|
|
66488
|
+
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66489
|
+
*/
|
|
66490
|
+
readonly xSailPointExperimental?: string;
|
|
66491
66491
|
}
|
|
66492
66492
|
/**
|
|
66493
66493
|
* MachineIdentitiesV2024Api - object-oriented interface
|
|
@@ -70119,30 +70119,30 @@ export declare const NotificationsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
70119
70119
|
/**
|
|
70120
70120
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
70121
70121
|
* @summary Verify domain address via dkim
|
|
70122
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70123
70122
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
70123
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70124
70124
|
* @param {*} [axiosOptions] Override http request option.
|
|
70125
70125
|
* @throws {RequiredError}
|
|
70126
70126
|
*/
|
|
70127
|
-
createDomainDkim: (
|
|
70127
|
+
createDomainDkim: (domainAddressV2024: DomainAddressV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70128
70128
|
/**
|
|
70129
70129
|
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
70130
70130
|
* @summary Create notification template
|
|
70131
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70132
70131
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
70132
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70133
70133
|
* @param {*} [axiosOptions] Override http request option.
|
|
70134
70134
|
* @throws {RequiredError}
|
|
70135
70135
|
*/
|
|
70136
|
-
createNotificationTemplate: (
|
|
70136
|
+
createNotificationTemplate: (templateDtoV2024: TemplateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70137
70137
|
/**
|
|
70138
70138
|
* Create a new sender email address and initiate verification process.
|
|
70139
70139
|
* @summary Create verified from address
|
|
70140
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70141
70140
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
70141
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70142
70142
|
* @param {*} [axiosOptions] Override http request option.
|
|
70143
70143
|
* @throws {RequiredError}
|
|
70144
70144
|
*/
|
|
70145
|
-
createVerifiedFromAddress: (
|
|
70145
|
+
createVerifiedFromAddress: (emailStatusDtoV2024: EmailStatusDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70146
70146
|
/**
|
|
70147
70147
|
* This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
|
|
70148
70148
|
* @summary Bulk delete notification templates
|
|
@@ -70266,30 +70266,30 @@ export declare const NotificationsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
70266
70266
|
/**
|
|
70267
70267
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
70268
70268
|
* @summary Verify domain address via dkim
|
|
70269
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70270
70269
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
70270
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70271
70271
|
* @param {*} [axiosOptions] Override http request option.
|
|
70272
70272
|
* @throws {RequiredError}
|
|
70273
70273
|
*/
|
|
70274
|
-
createDomainDkim(
|
|
70274
|
+
createDomainDkim(domainAddressV2024: DomainAddressV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2024>>;
|
|
70275
70275
|
/**
|
|
70276
70276
|
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
70277
70277
|
* @summary Create notification template
|
|
70278
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70279
70278
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
70279
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70280
70280
|
* @param {*} [axiosOptions] Override http request option.
|
|
70281
70281
|
* @throws {RequiredError}
|
|
70282
70282
|
*/
|
|
70283
|
-
createNotificationTemplate(
|
|
70283
|
+
createNotificationTemplate(templateDtoV2024: TemplateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2024>>;
|
|
70284
70284
|
/**
|
|
70285
70285
|
* Create a new sender email address and initiate verification process.
|
|
70286
70286
|
* @summary Create verified from address
|
|
70287
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70288
70287
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
70288
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70289
70289
|
* @param {*} [axiosOptions] Override http request option.
|
|
70290
70290
|
* @throws {RequiredError}
|
|
70291
70291
|
*/
|
|
70292
|
-
createVerifiedFromAddress(
|
|
70292
|
+
createVerifiedFromAddress(emailStatusDtoV2024: EmailStatusDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoV2024>>;
|
|
70293
70293
|
/**
|
|
70294
70294
|
* This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
|
|
70295
70295
|
* @summary Bulk delete notification templates
|
|
@@ -70537,18 +70537,18 @@ export declare const NotificationsV2024ApiFactory: (configuration?: Configuratio
|
|
|
70537
70537
|
* @interface NotificationsV2024ApiCreateDomainDkimRequest
|
|
70538
70538
|
*/
|
|
70539
70539
|
export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
70540
|
-
/**
|
|
70541
|
-
* Use this header to enable this experimental API.
|
|
70542
|
-
* @type {string}
|
|
70543
|
-
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
70544
|
-
*/
|
|
70545
|
-
readonly xSailPointExperimental: string;
|
|
70546
70540
|
/**
|
|
70547
70541
|
*
|
|
70548
70542
|
* @type {DomainAddressV2024}
|
|
70549
70543
|
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
70550
70544
|
*/
|
|
70551
70545
|
readonly domainAddressV2024: DomainAddressV2024;
|
|
70546
|
+
/**
|
|
70547
|
+
* Use this header to enable this experimental API.
|
|
70548
|
+
* @type {string}
|
|
70549
|
+
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
70550
|
+
*/
|
|
70551
|
+
readonly xSailPointExperimental?: string;
|
|
70552
70552
|
}
|
|
70553
70553
|
/**
|
|
70554
70554
|
* Request parameters for createNotificationTemplate operation in NotificationsV2024Api.
|
|
@@ -70556,18 +70556,18 @@ export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
|
70556
70556
|
* @interface NotificationsV2024ApiCreateNotificationTemplateRequest
|
|
70557
70557
|
*/
|
|
70558
70558
|
export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
70559
|
-
/**
|
|
70560
|
-
* Use this header to enable this experimental API.
|
|
70561
|
-
* @type {string}
|
|
70562
|
-
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
70563
|
-
*/
|
|
70564
|
-
readonly xSailPointExperimental: string;
|
|
70565
70559
|
/**
|
|
70566
70560
|
*
|
|
70567
70561
|
* @type {TemplateDtoV2024}
|
|
70568
70562
|
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
70569
70563
|
*/
|
|
70570
70564
|
readonly templateDtoV2024: TemplateDtoV2024;
|
|
70565
|
+
/**
|
|
70566
|
+
* Use this header to enable this experimental API.
|
|
70567
|
+
* @type {string}
|
|
70568
|
+
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
70569
|
+
*/
|
|
70570
|
+
readonly xSailPointExperimental?: string;
|
|
70571
70571
|
}
|
|
70572
70572
|
/**
|
|
70573
70573
|
* Request parameters for createVerifiedFromAddress operation in NotificationsV2024Api.
|
|
@@ -70575,18 +70575,18 @@ export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
|
70575
70575
|
* @interface NotificationsV2024ApiCreateVerifiedFromAddressRequest
|
|
70576
70576
|
*/
|
|
70577
70577
|
export interface NotificationsV2024ApiCreateVerifiedFromAddressRequest {
|
|
70578
|
-
/**
|
|
70579
|
-
* Use this header to enable this experimental API.
|
|
70580
|
-
* @type {string}
|
|
70581
|
-
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
70582
|
-
*/
|
|
70583
|
-
readonly xSailPointExperimental: string;
|
|
70584
70578
|
/**
|
|
70585
70579
|
*
|
|
70586
70580
|
* @type {EmailStatusDtoV2024}
|
|
70587
70581
|
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
70588
70582
|
*/
|
|
70589
70583
|
readonly emailStatusDtoV2024: EmailStatusDtoV2024;
|
|
70584
|
+
/**
|
|
70585
|
+
* Use this header to enable this experimental API.
|
|
70586
|
+
* @type {string}
|
|
70587
|
+
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
70588
|
+
*/
|
|
70589
|
+
readonly xSailPointExperimental?: string;
|
|
70590
70590
|
}
|
|
70591
70591
|
/**
|
|
70592
70592
|
* Request parameters for deleteNotificationTemplatesInBulk operation in NotificationsV2024Api.
|
|
@@ -71286,12 +71286,12 @@ export declare const OrgConfigV2024ApiAxiosParamCreator: (configuration?: Config
|
|
|
71286
71286
|
/**
|
|
71287
71287
|
* Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
|
|
71288
71288
|
* @summary Patch org config
|
|
71289
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71290
71289
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
71290
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71291
71291
|
* @param {*} [axiosOptions] Override http request option.
|
|
71292
71292
|
* @throws {RequiredError}
|
|
71293
71293
|
*/
|
|
71294
|
-
patchOrgConfig: (
|
|
71294
|
+
patchOrgConfig: (jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71295
71295
|
};
|
|
71296
71296
|
/**
|
|
71297
71297
|
* OrgConfigV2024Api - functional programming interface
|
|
@@ -71320,12 +71320,12 @@ export declare const OrgConfigV2024ApiFp: (configuration?: Configuration) => {
|
|
|
71320
71320
|
/**
|
|
71321
71321
|
* Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
|
|
71322
71322
|
* @summary Patch org config
|
|
71323
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71324
71323
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
71324
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71325
71325
|
* @param {*} [axiosOptions] Override http request option.
|
|
71326
71326
|
* @throws {RequiredError}
|
|
71327
71327
|
*/
|
|
71328
|
-
patchOrgConfig(
|
|
71328
|
+
patchOrgConfig(jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2024>>;
|
|
71329
71329
|
};
|
|
71330
71330
|
/**
|
|
71331
71331
|
* OrgConfigV2024Api - factory interface
|
|
@@ -71407,18 +71407,18 @@ export interface OrgConfigV2024ApiGetValidTimeZonesRequest {
|
|
|
71407
71407
|
* @interface OrgConfigV2024ApiPatchOrgConfigRequest
|
|
71408
71408
|
*/
|
|
71409
71409
|
export interface OrgConfigV2024ApiPatchOrgConfigRequest {
|
|
71410
|
-
/**
|
|
71411
|
-
* Use this header to enable this experimental API.
|
|
71412
|
-
* @type {string}
|
|
71413
|
-
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
71414
|
-
*/
|
|
71415
|
-
readonly xSailPointExperimental: string;
|
|
71416
71410
|
/**
|
|
71417
71411
|
* A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
71418
71412
|
* @type {Array<JsonPatchOperationV2024>}
|
|
71419
71413
|
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
71420
71414
|
*/
|
|
71421
71415
|
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
71416
|
+
/**
|
|
71417
|
+
* Use this header to enable this experimental API.
|
|
71418
|
+
* @type {string}
|
|
71419
|
+
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
71420
|
+
*/
|
|
71421
|
+
readonly xSailPointExperimental?: string;
|
|
71422
71422
|
}
|
|
71423
71423
|
/**
|
|
71424
71424
|
* OrgConfigV2024Api - object-oriented interface
|
|
@@ -74939,30 +74939,30 @@ export declare const SIMIntegrationsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
74939
74939
|
/**
|
|
74940
74940
|
* Create a new SIM Integrations.
|
|
74941
74941
|
* @summary Create new sim integration
|
|
74942
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
74943
74942
|
* @param {SimIntegrationDetailsV2024} simIntegrationDetailsV2024 DTO containing the details of the SIM integration
|
|
74943
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74944
74944
|
* @param {*} [axiosOptions] Override http request option.
|
|
74945
74945
|
* @throws {RequiredError}
|
|
74946
74946
|
*/
|
|
74947
|
-
createSIMIntegration: (
|
|
74947
|
+
createSIMIntegration: (simIntegrationDetailsV2024: SimIntegrationDetailsV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74948
74948
|
/**
|
|
74949
74949
|
* Get the details of a SIM integration.
|
|
74950
74950
|
* @summary Delete a sim integration
|
|
74951
74951
|
* @param {string} id The id of the integration to delete.
|
|
74952
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
74952
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74953
74953
|
* @param {*} [axiosOptions] Override http request option.
|
|
74954
74954
|
* @throws {RequiredError}
|
|
74955
74955
|
*/
|
|
74956
|
-
deleteSIMIntegration: (id: string, xSailPointExperimental
|
|
74956
|
+
deleteSIMIntegration: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74957
74957
|
/**
|
|
74958
74958
|
* Get the details of a SIM integration.
|
|
74959
74959
|
* @summary Get a sim integration details.
|
|
74960
74960
|
* @param {string} id The id of the integration.
|
|
74961
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
74961
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74962
74962
|
* @param {*} [axiosOptions] Override http request option.
|
|
74963
74963
|
* @throws {RequiredError}
|
|
74964
74964
|
*/
|
|
74965
|
-
getSIMIntegration: (id: string, xSailPointExperimental
|
|
74965
|
+
getSIMIntegration: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74966
74966
|
/**
|
|
74967
74967
|
* List the existing SIM integrations.
|
|
74968
74968
|
* @summary List the existing sim integrations.
|
|
@@ -74985,12 +74985,12 @@ export declare const SIMIntegrationsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
74985
74985
|
* Patch a SIM attribute given a JsonPatch object.
|
|
74986
74986
|
* @summary Patch a sim attribute.
|
|
74987
74987
|
* @param {string} id SIM integration id
|
|
74988
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
74989
74988
|
* @param {JsonPatchV2024} jsonPatchV2024 The JsonPatch object that describes the changes of SIM
|
|
74989
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74990
74990
|
* @param {*} [axiosOptions] Override http request option.
|
|
74991
74991
|
* @throws {RequiredError}
|
|
74992
74992
|
*/
|
|
74993
|
-
patchSIMAttributes: (id: string,
|
|
74993
|
+
patchSIMAttributes: (id: string, jsonPatchV2024: JsonPatchV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74994
74994
|
/**
|
|
74995
74995
|
* Update an existing SIM integration.
|
|
74996
74996
|
* @summary Update an existing sim integration
|
|
@@ -75010,30 +75010,30 @@ export declare const SIMIntegrationsV2024ApiFp: (configuration?: Configuration)
|
|
|
75010
75010
|
/**
|
|
75011
75011
|
* Create a new SIM Integrations.
|
|
75012
75012
|
* @summary Create new sim integration
|
|
75013
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75014
75013
|
* @param {SimIntegrationDetailsV2024} simIntegrationDetailsV2024 DTO containing the details of the SIM integration
|
|
75014
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75015
75015
|
* @param {*} [axiosOptions] Override http request option.
|
|
75016
75016
|
* @throws {RequiredError}
|
|
75017
75017
|
*/
|
|
75018
|
-
createSIMIntegration(
|
|
75018
|
+
createSIMIntegration(simIntegrationDetailsV2024: SimIntegrationDetailsV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>>;
|
|
75019
75019
|
/**
|
|
75020
75020
|
* Get the details of a SIM integration.
|
|
75021
75021
|
* @summary Delete a sim integration
|
|
75022
75022
|
* @param {string} id The id of the integration to delete.
|
|
75023
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75023
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75024
75024
|
* @param {*} [axiosOptions] Override http request option.
|
|
75025
75025
|
* @throws {RequiredError}
|
|
75026
75026
|
*/
|
|
75027
|
-
deleteSIMIntegration(id: string, xSailPointExperimental
|
|
75027
|
+
deleteSIMIntegration(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
75028
75028
|
/**
|
|
75029
75029
|
* Get the details of a SIM integration.
|
|
75030
75030
|
* @summary Get a sim integration details.
|
|
75031
75031
|
* @param {string} id The id of the integration.
|
|
75032
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75032
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75033
75033
|
* @param {*} [axiosOptions] Override http request option.
|
|
75034
75034
|
* @throws {RequiredError}
|
|
75035
75035
|
*/
|
|
75036
|
-
getSIMIntegration(id: string, xSailPointExperimental
|
|
75036
|
+
getSIMIntegration(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>>;
|
|
75037
75037
|
/**
|
|
75038
75038
|
* List the existing SIM integrations.
|
|
75039
75039
|
* @summary List the existing sim integrations.
|
|
@@ -75056,12 +75056,12 @@ export declare const SIMIntegrationsV2024ApiFp: (configuration?: Configuration)
|
|
|
75056
75056
|
* Patch a SIM attribute given a JsonPatch object.
|
|
75057
75057
|
* @summary Patch a sim attribute.
|
|
75058
75058
|
* @param {string} id SIM integration id
|
|
75059
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75060
75059
|
* @param {JsonPatchV2024} jsonPatchV2024 The JsonPatch object that describes the changes of SIM
|
|
75060
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75061
75061
|
* @param {*} [axiosOptions] Override http request option.
|
|
75062
75062
|
* @throws {RequiredError}
|
|
75063
75063
|
*/
|
|
75064
|
-
patchSIMAttributes(id: string,
|
|
75064
|
+
patchSIMAttributes(id: string, jsonPatchV2024: JsonPatchV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>>;
|
|
75065
75065
|
/**
|
|
75066
75066
|
* Update an existing SIM integration.
|
|
75067
75067
|
* @summary Update an existing sim integration
|
|
@@ -75141,18 +75141,18 @@ export declare const SIMIntegrationsV2024ApiFactory: (configuration?: Configurat
|
|
|
75141
75141
|
* @interface SIMIntegrationsV2024ApiCreateSIMIntegrationRequest
|
|
75142
75142
|
*/
|
|
75143
75143
|
export interface SIMIntegrationsV2024ApiCreateSIMIntegrationRequest {
|
|
75144
|
-
/**
|
|
75145
|
-
* Use this header to enable this experimental API.
|
|
75146
|
-
* @type {string}
|
|
75147
|
-
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
75148
|
-
*/
|
|
75149
|
-
readonly xSailPointExperimental: string;
|
|
75150
75144
|
/**
|
|
75151
75145
|
* DTO containing the details of the SIM integration
|
|
75152
75146
|
* @type {SimIntegrationDetailsV2024}
|
|
75153
75147
|
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
75154
75148
|
*/
|
|
75155
75149
|
readonly simIntegrationDetailsV2024: SimIntegrationDetailsV2024;
|
|
75150
|
+
/**
|
|
75151
|
+
* Use this header to enable this experimental API.
|
|
75152
|
+
* @type {string}
|
|
75153
|
+
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
75154
|
+
*/
|
|
75155
|
+
readonly xSailPointExperimental?: string;
|
|
75156
75156
|
}
|
|
75157
75157
|
/**
|
|
75158
75158
|
* Request parameters for deleteSIMIntegration operation in SIMIntegrationsV2024Api.
|
|
@@ -75171,7 +75171,7 @@ export interface SIMIntegrationsV2024ApiDeleteSIMIntegrationRequest {
|
|
|
75171
75171
|
* @type {string}
|
|
75172
75172
|
* @memberof SIMIntegrationsV2024ApiDeleteSIMIntegration
|
|
75173
75173
|
*/
|
|
75174
|
-
readonly xSailPointExperimental
|
|
75174
|
+
readonly xSailPointExperimental?: string;
|
|
75175
75175
|
}
|
|
75176
75176
|
/**
|
|
75177
75177
|
* Request parameters for getSIMIntegration operation in SIMIntegrationsV2024Api.
|
|
@@ -75190,7 +75190,7 @@ export interface SIMIntegrationsV2024ApiGetSIMIntegrationRequest {
|
|
|
75190
75190
|
* @type {string}
|
|
75191
75191
|
* @memberof SIMIntegrationsV2024ApiGetSIMIntegration
|
|
75192
75192
|
*/
|
|
75193
|
-
readonly xSailPointExperimental
|
|
75193
|
+
readonly xSailPointExperimental?: string;
|
|
75194
75194
|
}
|
|
75195
75195
|
/**
|
|
75196
75196
|
* Request parameters for getSIMIntegrations operation in SIMIntegrationsV2024Api.
|
|
@@ -75242,18 +75242,18 @@ export interface SIMIntegrationsV2024ApiPatchSIMAttributesRequest {
|
|
|
75242
75242
|
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75243
75243
|
*/
|
|
75244
75244
|
readonly id: string;
|
|
75245
|
-
/**
|
|
75246
|
-
* Use this header to enable this experimental API.
|
|
75247
|
-
* @type {string}
|
|
75248
|
-
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75249
|
-
*/
|
|
75250
|
-
readonly xSailPointExperimental: string;
|
|
75251
75245
|
/**
|
|
75252
75246
|
* The JsonPatch object that describes the changes of SIM
|
|
75253
75247
|
* @type {JsonPatchV2024}
|
|
75254
75248
|
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75255
75249
|
*/
|
|
75256
75250
|
readonly jsonPatchV2024: JsonPatchV2024;
|
|
75251
|
+
/**
|
|
75252
|
+
* Use this header to enable this experimental API.
|
|
75253
|
+
* @type {string}
|
|
75254
|
+
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75255
|
+
*/
|
|
75256
|
+
readonly xSailPointExperimental?: string;
|
|
75257
75257
|
}
|
|
75258
75258
|
/**
|
|
75259
75259
|
* Request parameters for putSIMIntegration operation in SIMIntegrationsV2024Api.
|
|
@@ -77659,21 +77659,21 @@ export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (con
|
|
|
77659
77659
|
* Delete an extended attribute configuration by name.
|
|
77660
77660
|
* @summary Delete extended search attribute
|
|
77661
77661
|
* @param {string} name Name of the extended search attribute configuration to delete.
|
|
77662
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77662
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77663
77663
|
* @param {*} [axiosOptions] Override http request option.
|
|
77664
77664
|
* @throws {RequiredError}
|
|
77665
77665
|
*/
|
|
77666
|
-
deleteSearchAttributeConfig: (name: string, xSailPointExperimental
|
|
77666
|
+
deleteSearchAttributeConfig: (name: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77667
77667
|
/**
|
|
77668
77668
|
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
77669
77669
|
* @summary List extended search attributes
|
|
77670
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77671
77670
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77672
77671
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77672
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77673
77673
|
* @param {*} [axiosOptions] Override http request option.
|
|
77674
77674
|
* @throws {RequiredError}
|
|
77675
77675
|
*/
|
|
77676
|
-
getSearchAttributeConfig: (
|
|
77676
|
+
getSearchAttributeConfig: (limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77677
77677
|
/**
|
|
77678
77678
|
* Get an extended attribute configuration by name.
|
|
77679
77679
|
* @summary Get extended search attribute
|
|
@@ -77687,12 +77687,12 @@ export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (con
|
|
|
77687
77687
|
* Update an existing search attribute configuration. You can patch these fields: * name * displayName * applicationAttributes
|
|
77688
77688
|
* @summary Update extended search attribute
|
|
77689
77689
|
* @param {string} name Name of the search attribute configuration to patch.
|
|
77690
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77691
77690
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
77691
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77692
77692
|
* @param {*} [axiosOptions] Override http request option.
|
|
77693
77693
|
* @throws {RequiredError}
|
|
77694
77694
|
*/
|
|
77695
|
-
patchSearchAttributeConfig: (name: string,
|
|
77695
|
+
patchSearchAttributeConfig: (name: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77696
77696
|
};
|
|
77697
77697
|
/**
|
|
77698
77698
|
* SearchAttributeConfigurationV2024Api - functional programming interface
|
|
@@ -77712,21 +77712,21 @@ export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Co
|
|
|
77712
77712
|
* Delete an extended attribute configuration by name.
|
|
77713
77713
|
* @summary Delete extended search attribute
|
|
77714
77714
|
* @param {string} name Name of the extended search attribute configuration to delete.
|
|
77715
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77715
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77716
77716
|
* @param {*} [axiosOptions] Override http request option.
|
|
77717
77717
|
* @throws {RequiredError}
|
|
77718
77718
|
*/
|
|
77719
|
-
deleteSearchAttributeConfig(name: string, xSailPointExperimental
|
|
77719
|
+
deleteSearchAttributeConfig(name: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
77720
77720
|
/**
|
|
77721
77721
|
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
77722
77722
|
* @summary List extended search attributes
|
|
77723
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77724
77723
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77725
77724
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77725
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77726
77726
|
* @param {*} [axiosOptions] Override http request option.
|
|
77727
77727
|
* @throws {RequiredError}
|
|
77728
77728
|
*/
|
|
77729
|
-
getSearchAttributeConfig(
|
|
77729
|
+
getSearchAttributeConfig(limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>>;
|
|
77730
77730
|
/**
|
|
77731
77731
|
* Get an extended attribute configuration by name.
|
|
77732
77732
|
* @summary Get extended search attribute
|
|
@@ -77740,12 +77740,12 @@ export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Co
|
|
|
77740
77740
|
* Update an existing search attribute configuration. You can patch these fields: * name * displayName * applicationAttributes
|
|
77741
77741
|
* @summary Update extended search attribute
|
|
77742
77742
|
* @param {string} name Name of the search attribute configuration to patch.
|
|
77743
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77744
77743
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
77744
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77745
77745
|
* @param {*} [axiosOptions] Override http request option.
|
|
77746
77746
|
* @throws {RequiredError}
|
|
77747
77747
|
*/
|
|
77748
|
-
patchSearchAttributeConfig(name: string,
|
|
77748
|
+
patchSearchAttributeConfig(name: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchAttributeConfigV2024>>;
|
|
77749
77749
|
};
|
|
77750
77750
|
/**
|
|
77751
77751
|
* SearchAttributeConfigurationV2024Api - factory interface
|
|
@@ -77775,7 +77775,7 @@ export declare const SearchAttributeConfigurationV2024ApiFactory: (configuration
|
|
|
77775
77775
|
* @param {*} [axiosOptions] Override http request option.
|
|
77776
77776
|
* @throws {RequiredError}
|
|
77777
77777
|
*/
|
|
77778
|
-
getSearchAttributeConfig(requestParameters
|
|
77778
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigV2024>>;
|
|
77779
77779
|
/**
|
|
77780
77780
|
* Get an extended attribute configuration by name.
|
|
77781
77781
|
* @summary Get extended search attribute
|
|
@@ -77829,7 +77829,7 @@ export interface SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
|
77829
77829
|
* @type {string}
|
|
77830
77830
|
* @memberof SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
77831
77831
|
*/
|
|
77832
|
-
readonly xSailPointExperimental
|
|
77832
|
+
readonly xSailPointExperimental?: string;
|
|
77833
77833
|
}
|
|
77834
77834
|
/**
|
|
77835
77835
|
* Request parameters for getSearchAttributeConfig operation in SearchAttributeConfigurationV2024Api.
|
|
@@ -77837,12 +77837,6 @@ export interface SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
|
77837
77837
|
* @interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest
|
|
77838
77838
|
*/
|
|
77839
77839
|
export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest {
|
|
77840
|
-
/**
|
|
77841
|
-
* Use this header to enable this experimental API.
|
|
77842
|
-
* @type {string}
|
|
77843
|
-
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
77844
|
-
*/
|
|
77845
|
-
readonly xSailPointExperimental: string;
|
|
77846
77840
|
/**
|
|
77847
77841
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77848
77842
|
* @type {number}
|
|
@@ -77855,6 +77849,12 @@ export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigReq
|
|
|
77855
77849
|
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
77856
77850
|
*/
|
|
77857
77851
|
readonly offset?: number;
|
|
77852
|
+
/**
|
|
77853
|
+
* Use this header to enable this experimental API.
|
|
77854
|
+
* @type {string}
|
|
77855
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
77856
|
+
*/
|
|
77857
|
+
readonly xSailPointExperimental?: string;
|
|
77858
77858
|
}
|
|
77859
77859
|
/**
|
|
77860
77860
|
* Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationV2024Api.
|
|
@@ -77887,18 +77887,18 @@ export interface SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigR
|
|
|
77887
77887
|
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77888
77888
|
*/
|
|
77889
77889
|
readonly name: string;
|
|
77890
|
-
/**
|
|
77891
|
-
* Use this header to enable this experimental API.
|
|
77892
|
-
* @type {string}
|
|
77893
|
-
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77894
|
-
*/
|
|
77895
|
-
readonly xSailPointExperimental: string;
|
|
77896
77890
|
/**
|
|
77897
77891
|
*
|
|
77898
77892
|
* @type {Array<JsonPatchOperationV2024>}
|
|
77899
77893
|
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77900
77894
|
*/
|
|
77901
77895
|
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
77896
|
+
/**
|
|
77897
|
+
* Use this header to enable this experimental API.
|
|
77898
|
+
* @type {string}
|
|
77899
|
+
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77900
|
+
*/
|
|
77901
|
+
readonly xSailPointExperimental?: string;
|
|
77902
77902
|
}
|
|
77903
77903
|
/**
|
|
77904
77904
|
* SearchAttributeConfigurationV2024Api - object-oriented interface
|
|
@@ -77933,7 +77933,7 @@ export declare class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
77933
77933
|
* @throws {RequiredError}
|
|
77934
77934
|
* @memberof SearchAttributeConfigurationV2024Api
|
|
77935
77935
|
*/
|
|
77936
|
-
getSearchAttributeConfig(requestParameters
|
|
77936
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchAttributeConfigV2024[], any>>;
|
|
77937
77937
|
/**
|
|
77938
77938
|
* Get an extended attribute configuration by name.
|
|
77939
77939
|
* @summary Get extended search attribute
|
|
@@ -79230,12 +79230,12 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
79230
79230
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
79231
79231
|
* @summary Update attribute sync config
|
|
79232
79232
|
* @param {string} id The source id
|
|
79233
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79234
79233
|
* @param {AttrSyncSourceConfigV2024} attrSyncSourceConfigV2024
|
|
79234
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79235
79235
|
* @param {*} [axiosOptions] Override http request option.
|
|
79236
79236
|
* @throws {RequiredError}
|
|
79237
79237
|
*/
|
|
79238
|
-
putSourceAttrSyncConfig: (id: string,
|
|
79238
|
+
putSourceAttrSyncConfig: (id: string, attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79239
79239
|
/**
|
|
79240
79240
|
* This API will completely replace an existing Schema with the submitted payload. Some fields of the Schema cannot be updated. These fields are listed below. * id * name * created * modified Any attempt to modify these fields will result in an error response with a status code of 400. > `id` must remain in the request body, but it cannot be changed. If `id` is omitted from the request body, the result will be a 400 error.
|
|
79241
79241
|
* @summary Update source schema (full)
|
|
@@ -79320,12 +79320,12 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
79320
79320
|
/**
|
|
79321
79321
|
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
79322
79322
|
* @summary Update source entitlement request configuration
|
|
79323
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79324
79323
|
* @param {SourceEntitlementRequestConfigV2024} sourceEntitlementRequestConfigV2024
|
|
79324
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79325
79325
|
* @param {*} [axiosOptions] Override http request option.
|
|
79326
79326
|
* @throws {RequiredError}
|
|
79327
79327
|
*/
|
|
79328
|
-
updateSourceEntitlementRequestConfig: (
|
|
79328
|
+
updateSourceEntitlementRequestConfig: (sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79329
79329
|
/**
|
|
79330
79330
|
* Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
|
|
79331
79331
|
* @summary Update source schedule (partial)
|
|
@@ -79694,12 +79694,12 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
79694
79694
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
79695
79695
|
* @summary Update attribute sync config
|
|
79696
79696
|
* @param {string} id The source id
|
|
79697
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79698
79697
|
* @param {AttrSyncSourceConfigV2024} attrSyncSourceConfigV2024
|
|
79698
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79699
79699
|
* @param {*} [axiosOptions] Override http request option.
|
|
79700
79700
|
* @throws {RequiredError}
|
|
79701
79701
|
*/
|
|
79702
|
-
putSourceAttrSyncConfig(id: string,
|
|
79702
|
+
putSourceAttrSyncConfig(id: string, attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttrSyncSourceConfigV2024>>;
|
|
79703
79703
|
/**
|
|
79704
79704
|
* This API will completely replace an existing Schema with the submitted payload. Some fields of the Schema cannot be updated. These fields are listed below. * id * name * created * modified Any attempt to modify these fields will result in an error response with a status code of 400. > `id` must remain in the request body, but it cannot be changed. If `id` is omitted from the request body, the result will be a 400 error.
|
|
79705
79705
|
* @summary Update source schema (full)
|
|
@@ -79784,12 +79784,12 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
79784
79784
|
/**
|
|
79785
79785
|
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
79786
79786
|
* @summary Update source entitlement request configuration
|
|
79787
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79788
79787
|
* @param {SourceEntitlementRequestConfigV2024} sourceEntitlementRequestConfigV2024
|
|
79788
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79789
79789
|
* @param {*} [axiosOptions] Override http request option.
|
|
79790
79790
|
* @throws {RequiredError}
|
|
79791
79791
|
*/
|
|
79792
|
-
updateSourceEntitlementRequestConfig(
|
|
79792
|
+
updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2024>>;
|
|
79793
79793
|
/**
|
|
79794
79794
|
* Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
|
|
79795
79795
|
* @summary Update source schedule (partial)
|
|
@@ -80935,18 +80935,18 @@ export interface SourcesV2024ApiPutSourceAttrSyncConfigRequest {
|
|
|
80935
80935
|
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80936
80936
|
*/
|
|
80937
80937
|
readonly id: string;
|
|
80938
|
-
/**
|
|
80939
|
-
* Use this header to enable this experimental API.
|
|
80940
|
-
* @type {string}
|
|
80941
|
-
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80942
|
-
*/
|
|
80943
|
-
readonly xSailPointExperimental: string;
|
|
80944
80938
|
/**
|
|
80945
80939
|
*
|
|
80946
80940
|
* @type {AttrSyncSourceConfigV2024}
|
|
80947
80941
|
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80948
80942
|
*/
|
|
80949
80943
|
readonly attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024;
|
|
80944
|
+
/**
|
|
80945
|
+
* Use this header to enable this experimental API.
|
|
80946
|
+
* @type {string}
|
|
80947
|
+
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80948
|
+
*/
|
|
80949
|
+
readonly xSailPointExperimental?: string;
|
|
80950
80950
|
}
|
|
80951
80951
|
/**
|
|
80952
80952
|
* Request parameters for putSourceSchema operation in SourcesV2024Api.
|
|
@@ -81125,18 +81125,18 @@ export interface SourcesV2024ApiUpdateSourceRequest {
|
|
|
81125
81125
|
* @interface SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest
|
|
81126
81126
|
*/
|
|
81127
81127
|
export interface SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest {
|
|
81128
|
-
/**
|
|
81129
|
-
* Use this header to enable this experimental API.
|
|
81130
|
-
* @type {string}
|
|
81131
|
-
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
81132
|
-
*/
|
|
81133
|
-
readonly xSailPointExperimental: string;
|
|
81134
81128
|
/**
|
|
81135
81129
|
*
|
|
81136
81130
|
* @type {SourceEntitlementRequestConfigV2024}
|
|
81137
81131
|
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
81138
81132
|
*/
|
|
81139
81133
|
readonly sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024;
|
|
81134
|
+
/**
|
|
81135
|
+
* Use this header to enable this experimental API.
|
|
81136
|
+
* @type {string}
|
|
81137
|
+
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
81138
|
+
*/
|
|
81139
|
+
readonly xSailPointExperimental?: string;
|
|
81140
81140
|
}
|
|
81141
81141
|
/**
|
|
81142
81142
|
* Request parameters for updateSourceSchedule operation in SourcesV2024Api.
|
|
@@ -83093,12 +83093,12 @@ export declare const TenantContextV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
83093
83093
|
/**
|
|
83094
83094
|
* Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
|
|
83095
83095
|
* @summary Update tenant context
|
|
83096
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83097
83096
|
* @param {JsonPatchOperationV2024} jsonPatchOperationV2024
|
|
83097
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83098
83098
|
* @param {*} [axiosOptions] Override http request option.
|
|
83099
83099
|
* @throws {RequiredError}
|
|
83100
83100
|
*/
|
|
83101
|
-
patchTenantContext: (
|
|
83101
|
+
patchTenantContext: (jsonPatchOperationV2024: JsonPatchOperationV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83102
83102
|
};
|
|
83103
83103
|
/**
|
|
83104
83104
|
* TenantContextV2024Api - functional programming interface
|
|
@@ -83116,12 +83116,12 @@ export declare const TenantContextV2024ApiFp: (configuration?: Configuration) =>
|
|
|
83116
83116
|
/**
|
|
83117
83117
|
* Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
|
|
83118
83118
|
* @summary Update tenant context
|
|
83119
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83120
83119
|
* @param {JsonPatchOperationV2024} jsonPatchOperationV2024
|
|
83120
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83121
83121
|
* @param {*} [axiosOptions] Override http request option.
|
|
83122
83122
|
* @throws {RequiredError}
|
|
83123
83123
|
*/
|
|
83124
|
-
patchTenantContext(
|
|
83124
|
+
patchTenantContext(jsonPatchOperationV2024: JsonPatchOperationV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83125
83125
|
};
|
|
83126
83126
|
/**
|
|
83127
83127
|
* TenantContextV2024Api - factory interface
|
|
@@ -83164,18 +83164,18 @@ export interface TenantContextV2024ApiGetTenantContextRequest {
|
|
|
83164
83164
|
* @interface TenantContextV2024ApiPatchTenantContextRequest
|
|
83165
83165
|
*/
|
|
83166
83166
|
export interface TenantContextV2024ApiPatchTenantContextRequest {
|
|
83167
|
-
/**
|
|
83168
|
-
* Use this header to enable this experimental API.
|
|
83169
|
-
* @type {string}
|
|
83170
|
-
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
83171
|
-
*/
|
|
83172
|
-
readonly xSailPointExperimental: string;
|
|
83173
83167
|
/**
|
|
83174
83168
|
*
|
|
83175
83169
|
* @type {JsonPatchOperationV2024}
|
|
83176
83170
|
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
83177
83171
|
*/
|
|
83178
83172
|
readonly jsonPatchOperationV2024: JsonPatchOperationV2024;
|
|
83173
|
+
/**
|
|
83174
|
+
* Use this header to enable this experimental API.
|
|
83175
|
+
* @type {string}
|
|
83176
|
+
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
83177
|
+
*/
|
|
83178
|
+
readonly xSailPointExperimental?: string;
|
|
83179
83179
|
}
|
|
83180
83180
|
/**
|
|
83181
83181
|
* TenantContextV2024Api - object-oriented interface
|
|
@@ -83527,24 +83527,24 @@ export declare const TriggersV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
83527
83527
|
* Deletes an existing subscription to a trigger.
|
|
83528
83528
|
* @summary Delete a subscription
|
|
83529
83529
|
* @param {string} id Subscription ID
|
|
83530
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83530
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83531
83531
|
* @param {*} [axiosOptions] Override http request option.
|
|
83532
83532
|
* @throws {RequiredError}
|
|
83533
83533
|
*/
|
|
83534
|
-
deleteSubscription: (id: string, xSailPointExperimental
|
|
83534
|
+
deleteSubscription: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83535
83535
|
/**
|
|
83536
83536
|
* Gets a list of all trigger subscriptions.
|
|
83537
83537
|
* @summary List subscriptions
|
|
83538
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83539
83538
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83540
83539
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83541
83540
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83542
83541
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **triggerId**: *eq* **type**: *eq, le*
|
|
83543
83542
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **triggerId, triggerName**
|
|
83543
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83544
83544
|
* @param {*} [axiosOptions] Override http request option.
|
|
83545
83545
|
* @throws {RequiredError}
|
|
83546
83546
|
*/
|
|
83547
|
-
listSubscriptions: (
|
|
83547
|
+
listSubscriptions: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83548
83548
|
/**
|
|
83549
83549
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
83550
83550
|
* @summary List latest invocation statuses
|
|
@@ -83575,12 +83575,12 @@ export declare const TriggersV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
83575
83575
|
* This API updates a trigger subscription in IdentityNow, using a set of instructions to modify a subscription partially. The following fields are patchable: **name**, **description**, **enabled**, **type**, **filter**, **responseDeadline**, **httpConfig**, **eventBridgeConfig**, **workflowConfig**
|
|
83576
83576
|
* @summary Patch a subscription
|
|
83577
83577
|
* @param {string} id ID of the Subscription to patch
|
|
83578
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83579
83578
|
* @param {Array<SubscriptionPatchRequestInnerV2024>} subscriptionPatchRequestInnerV2024
|
|
83579
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83580
83580
|
* @param {*} [axiosOptions] Override http request option.
|
|
83581
83581
|
* @throws {RequiredError}
|
|
83582
83582
|
*/
|
|
83583
|
-
patchSubscription: (id: string,
|
|
83583
|
+
patchSubscription: (id: string, subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83584
83584
|
/**
|
|
83585
83585
|
* Initiate a test event for all subscribers of the specified event trigger. If there are no subscribers to the specified trigger in the tenant, then no test event will be sent.
|
|
83586
83586
|
* @summary Start a test invocation
|
|
@@ -83638,24 +83638,24 @@ export declare const TriggersV2024ApiFp: (configuration?: Configuration) => {
|
|
|
83638
83638
|
* Deletes an existing subscription to a trigger.
|
|
83639
83639
|
* @summary Delete a subscription
|
|
83640
83640
|
* @param {string} id Subscription ID
|
|
83641
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83641
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83642
83642
|
* @param {*} [axiosOptions] Override http request option.
|
|
83643
83643
|
* @throws {RequiredError}
|
|
83644
83644
|
*/
|
|
83645
|
-
deleteSubscription(id: string, xSailPointExperimental
|
|
83645
|
+
deleteSubscription(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83646
83646
|
/**
|
|
83647
83647
|
* Gets a list of all trigger subscriptions.
|
|
83648
83648
|
* @summary List subscriptions
|
|
83649
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83650
83649
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83651
83650
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83652
83651
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83653
83652
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **triggerId**: *eq* **type**: *eq, le*
|
|
83654
83653
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **triggerId, triggerName**
|
|
83654
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83655
83655
|
* @param {*} [axiosOptions] Override http request option.
|
|
83656
83656
|
* @throws {RequiredError}
|
|
83657
83657
|
*/
|
|
83658
|
-
listSubscriptions(
|
|
83658
|
+
listSubscriptions(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SubscriptionV2024>>>;
|
|
83659
83659
|
/**
|
|
83660
83660
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
83661
83661
|
* @summary List latest invocation statuses
|
|
@@ -83686,12 +83686,12 @@ export declare const TriggersV2024ApiFp: (configuration?: Configuration) => {
|
|
|
83686
83686
|
* This API updates a trigger subscription in IdentityNow, using a set of instructions to modify a subscription partially. The following fields are patchable: **name**, **description**, **enabled**, **type**, **filter**, **responseDeadline**, **httpConfig**, **eventBridgeConfig**, **workflowConfig**
|
|
83687
83687
|
* @summary Patch a subscription
|
|
83688
83688
|
* @param {string} id ID of the Subscription to patch
|
|
83689
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83690
83689
|
* @param {Array<SubscriptionPatchRequestInnerV2024>} subscriptionPatchRequestInnerV2024
|
|
83690
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83691
83691
|
* @param {*} [axiosOptions] Override http request option.
|
|
83692
83692
|
* @throws {RequiredError}
|
|
83693
83693
|
*/
|
|
83694
|
-
patchSubscription(id: string,
|
|
83694
|
+
patchSubscription(id: string, subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriptionV2024>>;
|
|
83695
83695
|
/**
|
|
83696
83696
|
* Initiate a test event for all subscribers of the specified event trigger. If there are no subscribers to the specified trigger in the tenant, then no test event will be sent.
|
|
83697
83697
|
* @summary Start a test invocation
|
|
@@ -83757,7 +83757,7 @@ export declare const TriggersV2024ApiFactory: (configuration?: Configuration, ba
|
|
|
83757
83757
|
* @param {*} [axiosOptions] Override http request option.
|
|
83758
83758
|
* @throws {RequiredError}
|
|
83759
83759
|
*/
|
|
83760
|
-
listSubscriptions(requestParameters
|
|
83760
|
+
listSubscriptions(requestParameters?: TriggersV2024ApiListSubscriptionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SubscriptionV2024>>;
|
|
83761
83761
|
/**
|
|
83762
83762
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
83763
83763
|
* @summary List latest invocation statuses
|
|
@@ -83868,7 +83868,7 @@ export interface TriggersV2024ApiDeleteSubscriptionRequest {
|
|
|
83868
83868
|
* @type {string}
|
|
83869
83869
|
* @memberof TriggersV2024ApiDeleteSubscription
|
|
83870
83870
|
*/
|
|
83871
|
-
readonly xSailPointExperimental
|
|
83871
|
+
readonly xSailPointExperimental?: string;
|
|
83872
83872
|
}
|
|
83873
83873
|
/**
|
|
83874
83874
|
* Request parameters for listSubscriptions operation in TriggersV2024Api.
|
|
@@ -83876,12 +83876,6 @@ export interface TriggersV2024ApiDeleteSubscriptionRequest {
|
|
|
83876
83876
|
* @interface TriggersV2024ApiListSubscriptionsRequest
|
|
83877
83877
|
*/
|
|
83878
83878
|
export interface TriggersV2024ApiListSubscriptionsRequest {
|
|
83879
|
-
/**
|
|
83880
|
-
* Use this header to enable this experimental API.
|
|
83881
|
-
* @type {string}
|
|
83882
|
-
* @memberof TriggersV2024ApiListSubscriptions
|
|
83883
|
-
*/
|
|
83884
|
-
readonly xSailPointExperimental: string;
|
|
83885
83879
|
/**
|
|
83886
83880
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83887
83881
|
* @type {number}
|
|
@@ -83912,6 +83906,12 @@ export interface TriggersV2024ApiListSubscriptionsRequest {
|
|
|
83912
83906
|
* @memberof TriggersV2024ApiListSubscriptions
|
|
83913
83907
|
*/
|
|
83914
83908
|
readonly sorters?: string;
|
|
83909
|
+
/**
|
|
83910
|
+
* Use this header to enable this experimental API.
|
|
83911
|
+
* @type {string}
|
|
83912
|
+
* @memberof TriggersV2024ApiListSubscriptions
|
|
83913
|
+
*/
|
|
83914
|
+
readonly xSailPointExperimental?: string;
|
|
83915
83915
|
}
|
|
83916
83916
|
/**
|
|
83917
83917
|
* Request parameters for listTriggerInvocationStatus operation in TriggersV2024Api.
|
|
@@ -84011,18 +84011,18 @@ export interface TriggersV2024ApiPatchSubscriptionRequest {
|
|
|
84011
84011
|
* @memberof TriggersV2024ApiPatchSubscription
|
|
84012
84012
|
*/
|
|
84013
84013
|
readonly id: string;
|
|
84014
|
-
/**
|
|
84015
|
-
* Use this header to enable this experimental API.
|
|
84016
|
-
* @type {string}
|
|
84017
|
-
* @memberof TriggersV2024ApiPatchSubscription
|
|
84018
|
-
*/
|
|
84019
|
-
readonly xSailPointExperimental: string;
|
|
84020
84014
|
/**
|
|
84021
84015
|
*
|
|
84022
84016
|
* @type {Array<SubscriptionPatchRequestInnerV2024>}
|
|
84023
84017
|
* @memberof TriggersV2024ApiPatchSubscription
|
|
84024
84018
|
*/
|
|
84025
84019
|
readonly subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>;
|
|
84020
|
+
/**
|
|
84021
|
+
* Use this header to enable this experimental API.
|
|
84022
|
+
* @type {string}
|
|
84023
|
+
* @memberof TriggersV2024ApiPatchSubscription
|
|
84024
|
+
*/
|
|
84025
|
+
readonly xSailPointExperimental?: string;
|
|
84026
84026
|
}
|
|
84027
84027
|
/**
|
|
84028
84028
|
* Request parameters for startTestTriggerInvocation operation in TriggersV2024Api.
|
|
@@ -84129,7 +84129,7 @@ export declare class TriggersV2024Api extends BaseAPI {
|
|
|
84129
84129
|
* @throws {RequiredError}
|
|
84130
84130
|
* @memberof TriggersV2024Api
|
|
84131
84131
|
*/
|
|
84132
|
-
listSubscriptions(requestParameters
|
|
84132
|
+
listSubscriptions(requestParameters?: TriggersV2024ApiListSubscriptionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SubscriptionV2024[], any>>;
|
|
84133
84133
|
/**
|
|
84134
84134
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
84135
84135
|
* @summary List latest invocation statuses
|
|
@@ -84201,12 +84201,12 @@ export declare const UIMetadataV2024ApiAxiosParamCreator: (configuration?: Confi
|
|
|
84201
84201
|
/**
|
|
84202
84202
|
* This API endpoint updates UI metadata for your tenant. These changes may require up to 5 minutes to take effect on the UI.
|
|
84203
84203
|
* @summary Update tenant ui metadata
|
|
84204
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
84205
84204
|
* @param {TenantUiMetadataItemUpdateRequestV2024} tenantUiMetadataItemUpdateRequestV2024
|
|
84205
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
84206
84206
|
* @param {*} [axiosOptions] Override http request option.
|
|
84207
84207
|
* @throws {RequiredError}
|
|
84208
84208
|
*/
|
|
84209
|
-
setTenantUiMetadata: (
|
|
84209
|
+
setTenantUiMetadata: (tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
84210
84210
|
};
|
|
84211
84211
|
/**
|
|
84212
84212
|
* UIMetadataV2024Api - functional programming interface
|
|
@@ -84224,12 +84224,12 @@ export declare const UIMetadataV2024ApiFp: (configuration?: Configuration) => {
|
|
|
84224
84224
|
/**
|
|
84225
84225
|
* This API endpoint updates UI metadata for your tenant. These changes may require up to 5 minutes to take effect on the UI.
|
|
84226
84226
|
* @summary Update tenant ui metadata
|
|
84227
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
84228
84227
|
* @param {TenantUiMetadataItemUpdateRequestV2024} tenantUiMetadataItemUpdateRequestV2024
|
|
84228
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
84229
84229
|
* @param {*} [axiosOptions] Override http request option.
|
|
84230
84230
|
* @throws {RequiredError}
|
|
84231
84231
|
*/
|
|
84232
|
-
setTenantUiMetadata(
|
|
84232
|
+
setTenantUiMetadata(tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantUiMetadataItemResponseV2024>>;
|
|
84233
84233
|
};
|
|
84234
84234
|
/**
|
|
84235
84235
|
* UIMetadataV2024Api - factory interface
|
|
@@ -84272,18 +84272,18 @@ export interface UIMetadataV2024ApiGetTenantUiMetadataRequest {
|
|
|
84272
84272
|
* @interface UIMetadataV2024ApiSetTenantUiMetadataRequest
|
|
84273
84273
|
*/
|
|
84274
84274
|
export interface UIMetadataV2024ApiSetTenantUiMetadataRequest {
|
|
84275
|
-
/**
|
|
84276
|
-
* Use this header to enable this experimental API.
|
|
84277
|
-
* @type {string}
|
|
84278
|
-
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
84279
|
-
*/
|
|
84280
|
-
readonly xSailPointExperimental: string;
|
|
84281
84275
|
/**
|
|
84282
84276
|
*
|
|
84283
84277
|
* @type {TenantUiMetadataItemUpdateRequestV2024}
|
|
84284
84278
|
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
84285
84279
|
*/
|
|
84286
84280
|
readonly tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024;
|
|
84281
|
+
/**
|
|
84282
|
+
* Use this header to enable this experimental API.
|
|
84283
|
+
* @type {string}
|
|
84284
|
+
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
84285
|
+
*/
|
|
84286
|
+
readonly xSailPointExperimental?: string;
|
|
84287
84287
|
}
|
|
84288
84288
|
/**
|
|
84289
84289
|
* UIMetadataV2024Api - object-oriented interface
|
|
@@ -85200,12 +85200,12 @@ export declare const WorkReassignmentV2024ApiAxiosParamCreator: (configuration?:
|
|
|
85200
85200
|
/**
|
|
85201
85201
|
* Creates a new Reassignment Configuration for the specified identity.
|
|
85202
85202
|
* @summary Create a reassignment configuration
|
|
85203
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85204
85203
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
85204
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85205
85205
|
* @param {*} [axiosOptions] Override http request option.
|
|
85206
85206
|
* @throws {RequiredError}
|
|
85207
85207
|
*/
|
|
85208
|
-
createReassignmentConfiguration: (
|
|
85208
|
+
createReassignmentConfiguration: (configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85209
85209
|
/**
|
|
85210
85210
|
* Deletes a single reassignment configuration for the specified identity
|
|
85211
85211
|
* @summary Delete reassignment configuration
|
|
@@ -85264,21 +85264,21 @@ export declare const WorkReassignmentV2024ApiAxiosParamCreator: (configuration?:
|
|
|
85264
85264
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
85265
85265
|
* @summary Update reassignment configuration
|
|
85266
85266
|
* @param {string} identityId unique identity id
|
|
85267
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85268
85267
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
85268
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85269
85269
|
* @param {*} [axiosOptions] Override http request option.
|
|
85270
85270
|
* @throws {RequiredError}
|
|
85271
85271
|
*/
|
|
85272
|
-
putReassignmentConfig: (identityId: string,
|
|
85272
|
+
putReassignmentConfig: (identityId: string, configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85273
85273
|
/**
|
|
85274
85274
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
85275
85275
|
* @summary Update tenant-wide reassignment configuration settings
|
|
85276
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85277
85276
|
* @param {TenantConfigurationRequestV2024} tenantConfigurationRequestV2024
|
|
85277
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85278
85278
|
* @param {*} [axiosOptions] Override http request option.
|
|
85279
85279
|
* @throws {RequiredError}
|
|
85280
85280
|
*/
|
|
85281
|
-
putTenantConfiguration: (
|
|
85281
|
+
putTenantConfiguration: (tenantConfigurationRequestV2024: TenantConfigurationRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85282
85282
|
};
|
|
85283
85283
|
/**
|
|
85284
85284
|
* WorkReassignmentV2024Api - functional programming interface
|
|
@@ -85288,12 +85288,12 @@ export declare const WorkReassignmentV2024ApiFp: (configuration?: Configuration)
|
|
|
85288
85288
|
/**
|
|
85289
85289
|
* Creates a new Reassignment Configuration for the specified identity.
|
|
85290
85290
|
* @summary Create a reassignment configuration
|
|
85291
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85292
85291
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
85292
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85293
85293
|
* @param {*} [axiosOptions] Override http request option.
|
|
85294
85294
|
* @throws {RequiredError}
|
|
85295
85295
|
*/
|
|
85296
|
-
createReassignmentConfiguration(
|
|
85296
|
+
createReassignmentConfiguration(configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponseV2024>>;
|
|
85297
85297
|
/**
|
|
85298
85298
|
* Deletes a single reassignment configuration for the specified identity
|
|
85299
85299
|
* @summary Delete reassignment configuration
|
|
@@ -85352,21 +85352,21 @@ export declare const WorkReassignmentV2024ApiFp: (configuration?: Configuration)
|
|
|
85352
85352
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
85353
85353
|
* @summary Update reassignment configuration
|
|
85354
85354
|
* @param {string} identityId unique identity id
|
|
85355
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85356
85355
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
85356
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85357
85357
|
* @param {*} [axiosOptions] Override http request option.
|
|
85358
85358
|
* @throws {RequiredError}
|
|
85359
85359
|
*/
|
|
85360
|
-
putReassignmentConfig(identityId: string,
|
|
85360
|
+
putReassignmentConfig(identityId: string, configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponseV2024>>;
|
|
85361
85361
|
/**
|
|
85362
85362
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
85363
85363
|
* @summary Update tenant-wide reassignment configuration settings
|
|
85364
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85365
85364
|
* @param {TenantConfigurationRequestV2024} tenantConfigurationRequestV2024
|
|
85365
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85366
85366
|
* @param {*} [axiosOptions] Override http request option.
|
|
85367
85367
|
* @throws {RequiredError}
|
|
85368
85368
|
*/
|
|
85369
|
-
putTenantConfiguration(
|
|
85369
|
+
putTenantConfiguration(tenantConfigurationRequestV2024: TenantConfigurationRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponseV2024>>;
|
|
85370
85370
|
};
|
|
85371
85371
|
/**
|
|
85372
85372
|
* WorkReassignmentV2024Api - factory interface
|
|
@@ -85452,18 +85452,18 @@ export declare const WorkReassignmentV2024ApiFactory: (configuration?: Configura
|
|
|
85452
85452
|
* @interface WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest
|
|
85453
85453
|
*/
|
|
85454
85454
|
export interface WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest {
|
|
85455
|
-
/**
|
|
85456
|
-
* Use this header to enable this experimental API.
|
|
85457
|
-
* @type {string}
|
|
85458
|
-
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
85459
|
-
*/
|
|
85460
|
-
readonly xSailPointExperimental: string;
|
|
85461
85455
|
/**
|
|
85462
85456
|
*
|
|
85463
85457
|
* @type {ConfigurationItemRequestV2024}
|
|
85464
85458
|
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
85465
85459
|
*/
|
|
85466
85460
|
readonly configurationItemRequestV2024: ConfigurationItemRequestV2024;
|
|
85461
|
+
/**
|
|
85462
|
+
* Use this header to enable this experimental API.
|
|
85463
|
+
* @type {string}
|
|
85464
|
+
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
85465
|
+
*/
|
|
85466
|
+
readonly xSailPointExperimental?: string;
|
|
85467
85467
|
}
|
|
85468
85468
|
/**
|
|
85469
85469
|
* Request parameters for deleteReassignmentConfiguration operation in WorkReassignmentV2024Api.
|
|
@@ -85591,18 +85591,18 @@ export interface WorkReassignmentV2024ApiPutReassignmentConfigRequest {
|
|
|
85591
85591
|
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85592
85592
|
*/
|
|
85593
85593
|
readonly identityId: string;
|
|
85594
|
-
/**
|
|
85595
|
-
* Use this header to enable this experimental API.
|
|
85596
|
-
* @type {string}
|
|
85597
|
-
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85598
|
-
*/
|
|
85599
|
-
readonly xSailPointExperimental: string;
|
|
85600
85594
|
/**
|
|
85601
85595
|
*
|
|
85602
85596
|
* @type {ConfigurationItemRequestV2024}
|
|
85603
85597
|
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85604
85598
|
*/
|
|
85605
85599
|
readonly configurationItemRequestV2024: ConfigurationItemRequestV2024;
|
|
85600
|
+
/**
|
|
85601
|
+
* Use this header to enable this experimental API.
|
|
85602
|
+
* @type {string}
|
|
85603
|
+
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85604
|
+
*/
|
|
85605
|
+
readonly xSailPointExperimental?: string;
|
|
85606
85606
|
}
|
|
85607
85607
|
/**
|
|
85608
85608
|
* Request parameters for putTenantConfiguration operation in WorkReassignmentV2024Api.
|
|
@@ -85610,18 +85610,18 @@ export interface WorkReassignmentV2024ApiPutReassignmentConfigRequest {
|
|
|
85610
85610
|
* @interface WorkReassignmentV2024ApiPutTenantConfigurationRequest
|
|
85611
85611
|
*/
|
|
85612
85612
|
export interface WorkReassignmentV2024ApiPutTenantConfigurationRequest {
|
|
85613
|
-
/**
|
|
85614
|
-
* Use this header to enable this experimental API.
|
|
85615
|
-
* @type {string}
|
|
85616
|
-
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
85617
|
-
*/
|
|
85618
|
-
readonly xSailPointExperimental: string;
|
|
85619
85613
|
/**
|
|
85620
85614
|
*
|
|
85621
85615
|
* @type {TenantConfigurationRequestV2024}
|
|
85622
85616
|
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
85623
85617
|
*/
|
|
85624
85618
|
readonly tenantConfigurationRequestV2024: TenantConfigurationRequestV2024;
|
|
85619
|
+
/**
|
|
85620
|
+
* Use this header to enable this experimental API.
|
|
85621
|
+
* @type {string}
|
|
85622
|
+
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
85623
|
+
*/
|
|
85624
|
+
readonly xSailPointExperimental?: string;
|
|
85625
85625
|
}
|
|
85626
85626
|
/**
|
|
85627
85627
|
* WorkReassignmentV2024Api - object-oriented interface
|