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/v2024/api.ts
CHANGED
|
@@ -51774,20 +51774,18 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
51774
51774
|
/**
|
|
51775
51775
|
* This endpoint creates a source app using the given source app payload
|
|
51776
51776
|
* @summary Create source app
|
|
51777
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
51778
51777
|
* @param {SourceAppCreateDtoV2024} sourceAppCreateDtoV2024
|
|
51778
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
51779
51779
|
* @param {*} [axiosOptions] Override http request option.
|
|
51780
51780
|
* @throws {RequiredError}
|
|
51781
51781
|
*/
|
|
51782
|
-
createSourceApp: async (
|
|
51782
|
+
createSourceApp: async (sourceAppCreateDtoV2024: SourceAppCreateDtoV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51783
|
+
// verify required parameter 'sourceAppCreateDtoV2024' is not null or undefined
|
|
51784
|
+
assertParamExists('createSourceApp', 'sourceAppCreateDtoV2024', sourceAppCreateDtoV2024)
|
|
51783
51785
|
if (xSailPointExperimental === undefined) {
|
|
51784
51786
|
xSailPointExperimental = 'true';
|
|
51785
51787
|
}
|
|
51786
51788
|
|
|
51787
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
51788
|
-
assertParamExists('createSourceApp', 'xSailPointExperimental', xSailPointExperimental)
|
|
51789
|
-
// verify required parameter 'sourceAppCreateDtoV2024' is not null or undefined
|
|
51790
|
-
assertParamExists('createSourceApp', 'sourceAppCreateDtoV2024', sourceAppCreateDtoV2024)
|
|
51791
51789
|
const localVarPath = `/source-apps`;
|
|
51792
51790
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51793
51791
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -51890,19 +51888,17 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
51890
51888
|
* Use this API to delete a specific source app
|
|
51891
51889
|
* @summary Delete source app by id
|
|
51892
51890
|
* @param {string} id source app ID.
|
|
51893
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
51891
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
51894
51892
|
* @param {*} [axiosOptions] Override http request option.
|
|
51895
51893
|
* @throws {RequiredError}
|
|
51896
51894
|
*/
|
|
51897
|
-
deleteSourceApp: async (id: string, xSailPointExperimental
|
|
51895
|
+
deleteSourceApp: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51898
51896
|
// verify required parameter 'id' is not null or undefined
|
|
51899
51897
|
assertParamExists('deleteSourceApp', 'id', id)
|
|
51900
51898
|
if (xSailPointExperimental === undefined) {
|
|
51901
51899
|
xSailPointExperimental = 'true';
|
|
51902
51900
|
}
|
|
51903
51901
|
|
|
51904
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
51905
|
-
assertParamExists('deleteSourceApp', 'xSailPointExperimental', xSailPointExperimental)
|
|
51906
51902
|
const localVarPath = `/source-apps/{id}`
|
|
51907
51903
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
51908
51904
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -52464,20 +52460,18 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52464
52460
|
* 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.
|
|
52465
52461
|
* @summary Patch source app by id
|
|
52466
52462
|
* @param {string} id ID of the source app to patch
|
|
52467
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
52463
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52468
52464
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
52469
52465
|
* @param {*} [axiosOptions] Override http request option.
|
|
52470
52466
|
* @throws {RequiredError}
|
|
52471
52467
|
*/
|
|
52472
|
-
patchSourceApp: async (id: string, xSailPointExperimental
|
|
52468
|
+
patchSourceApp: async (id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52473
52469
|
// verify required parameter 'id' is not null or undefined
|
|
52474
52470
|
assertParamExists('patchSourceApp', 'id', id)
|
|
52475
52471
|
if (xSailPointExperimental === undefined) {
|
|
52476
52472
|
xSailPointExperimental = 'true';
|
|
52477
52473
|
}
|
|
52478
52474
|
|
|
52479
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
52480
|
-
assertParamExists('patchSourceApp', 'xSailPointExperimental', xSailPointExperimental)
|
|
52481
52475
|
const localVarPath = `/source-apps/{id}`
|
|
52482
52476
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
52483
52477
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -52633,13 +52627,13 @@ export const AppsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
52633
52627
|
/**
|
|
52634
52628
|
* This endpoint creates a source app using the given source app payload
|
|
52635
52629
|
* @summary Create source app
|
|
52636
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
52637
52630
|
* @param {SourceAppCreateDtoV2024} sourceAppCreateDtoV2024
|
|
52631
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52638
52632
|
* @param {*} [axiosOptions] Override http request option.
|
|
52639
52633
|
* @throws {RequiredError}
|
|
52640
52634
|
*/
|
|
52641
|
-
async createSourceApp(
|
|
52642
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createSourceApp(
|
|
52635
|
+
async createSourceApp(sourceAppCreateDtoV2024: SourceAppCreateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppV2024>> {
|
|
52636
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSourceApp(sourceAppCreateDtoV2024, xSailPointExperimental, axiosOptions);
|
|
52643
52637
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52644
52638
|
const localVarOperationServerBasePath = operationServerMap['AppsV2024Api.createSourceApp']?.[localVarOperationServerIndex]?.url;
|
|
52645
52639
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -52664,11 +52658,11 @@ export const AppsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
52664
52658
|
* Use this API to delete a specific source app
|
|
52665
52659
|
* @summary Delete source app by id
|
|
52666
52660
|
* @param {string} id source app ID.
|
|
52667
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
52661
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52668
52662
|
* @param {*} [axiosOptions] Override http request option.
|
|
52669
52663
|
* @throws {RequiredError}
|
|
52670
52664
|
*/
|
|
52671
|
-
async deleteSourceApp(id: string, xSailPointExperimental
|
|
52665
|
+
async deleteSourceApp(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppV2024>> {
|
|
52672
52666
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSourceApp(id, xSailPointExperimental, axiosOptions);
|
|
52673
52667
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52674
52668
|
const localVarOperationServerBasePath = operationServerMap['AppsV2024Api.deleteSourceApp']?.[localVarOperationServerIndex]?.url;
|
|
@@ -52813,12 +52807,12 @@ export const AppsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
52813
52807
|
* 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.
|
|
52814
52808
|
* @summary Patch source app by id
|
|
52815
52809
|
* @param {string} id ID of the source app to patch
|
|
52816
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
52810
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52817
52811
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
52818
52812
|
* @param {*} [axiosOptions] Override http request option.
|
|
52819
52813
|
* @throws {RequiredError}
|
|
52820
52814
|
*/
|
|
52821
|
-
async patchSourceApp(id: string, xSailPointExperimental
|
|
52815
|
+
async patchSourceApp(id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppPatchDtoV2024>> {
|
|
52822
52816
|
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSourceApp(id, xSailPointExperimental, jsonPatchOperationV2024, axiosOptions);
|
|
52823
52817
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52824
52818
|
const localVarOperationServerBasePath = operationServerMap['AppsV2024Api.patchSourceApp']?.[localVarOperationServerIndex]?.url;
|
|
@@ -52871,7 +52865,7 @@ export const AppsV2024ApiFactory = function (configuration?: Configuration, base
|
|
|
52871
52865
|
* @throws {RequiredError}
|
|
52872
52866
|
*/
|
|
52873
52867
|
createSourceApp(requestParameters: AppsV2024ApiCreateSourceAppRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceAppV2024> {
|
|
52874
|
-
return localVarFp.createSourceApp(requestParameters.
|
|
52868
|
+
return localVarFp.createSourceApp(requestParameters.sourceAppCreateDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
52875
52869
|
},
|
|
52876
52870
|
/**
|
|
52877
52871
|
* This API returns the final list of access profiles for the specified source app after removing
|
|
@@ -53013,18 +53007,18 @@ export const AppsV2024ApiFactory = function (configuration?: Configuration, base
|
|
|
53013
53007
|
*/
|
|
53014
53008
|
export interface AppsV2024ApiCreateSourceAppRequest {
|
|
53015
53009
|
/**
|
|
53016
|
-
*
|
|
53017
|
-
* @type {
|
|
53010
|
+
*
|
|
53011
|
+
* @type {SourceAppCreateDtoV2024}
|
|
53018
53012
|
* @memberof AppsV2024ApiCreateSourceApp
|
|
53019
53013
|
*/
|
|
53020
|
-
readonly
|
|
53014
|
+
readonly sourceAppCreateDtoV2024: SourceAppCreateDtoV2024
|
|
53021
53015
|
|
|
53022
53016
|
/**
|
|
53023
|
-
*
|
|
53024
|
-
* @type {
|
|
53017
|
+
* Use this header to enable this experimental API.
|
|
53018
|
+
* @type {string}
|
|
53025
53019
|
* @memberof AppsV2024ApiCreateSourceApp
|
|
53026
53020
|
*/
|
|
53027
|
-
readonly
|
|
53021
|
+
readonly xSailPointExperimental?: string
|
|
53028
53022
|
}
|
|
53029
53023
|
|
|
53030
53024
|
/**
|
|
@@ -53080,7 +53074,7 @@ export interface AppsV2024ApiDeleteSourceAppRequest {
|
|
|
53080
53074
|
* @type {string}
|
|
53081
53075
|
* @memberof AppsV2024ApiDeleteSourceApp
|
|
53082
53076
|
*/
|
|
53083
|
-
readonly xSailPointExperimental
|
|
53077
|
+
readonly xSailPointExperimental?: string
|
|
53084
53078
|
}
|
|
53085
53079
|
|
|
53086
53080
|
/**
|
|
@@ -53430,7 +53424,7 @@ export interface AppsV2024ApiPatchSourceAppRequest {
|
|
|
53430
53424
|
* @type {string}
|
|
53431
53425
|
* @memberof AppsV2024ApiPatchSourceApp
|
|
53432
53426
|
*/
|
|
53433
|
-
readonly xSailPointExperimental
|
|
53427
|
+
readonly xSailPointExperimental?: string
|
|
53434
53428
|
|
|
53435
53429
|
/**
|
|
53436
53430
|
*
|
|
@@ -53505,7 +53499,7 @@ export class AppsV2024Api extends BaseAPI {
|
|
|
53505
53499
|
* @memberof AppsV2024Api
|
|
53506
53500
|
*/
|
|
53507
53501
|
public createSourceApp(requestParameters: AppsV2024ApiCreateSourceAppRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
53508
|
-
return AppsV2024ApiFp(this.configuration).createSourceApp(requestParameters.
|
|
53502
|
+
return AppsV2024ApiFp(this.configuration).createSourceApp(requestParameters.sourceAppCreateDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
53509
53503
|
}
|
|
53510
53504
|
|
|
53511
53505
|
/**
|
|
@@ -53773,22 +53767,20 @@ export const AuthProfileV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
53773
53767
|
* This API updates an existing Auth Profile. The following fields are patchable: **offNetwork**, **untrustedGeography**, **applicationId**, **applicationName**, **type**
|
|
53774
53768
|
* @summary Patch a specified auth profile
|
|
53775
53769
|
* @param {string} id ID of the Auth Profile to patch.
|
|
53776
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53777
53770
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
53771
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53778
53772
|
* @param {*} [axiosOptions] Override http request option.
|
|
53779
53773
|
* @throws {RequiredError}
|
|
53780
53774
|
*/
|
|
53781
|
-
patchProfileConfig: async (id: string,
|
|
53775
|
+
patchProfileConfig: async (id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53782
53776
|
// verify required parameter 'id' is not null or undefined
|
|
53783
53777
|
assertParamExists('patchProfileConfig', 'id', id)
|
|
53778
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
53779
|
+
assertParamExists('patchProfileConfig', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
53784
53780
|
if (xSailPointExperimental === undefined) {
|
|
53785
53781
|
xSailPointExperimental = 'true';
|
|
53786
53782
|
}
|
|
53787
53783
|
|
|
53788
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
53789
|
-
assertParamExists('patchProfileConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
53790
|
-
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
53791
|
-
assertParamExists('patchProfileConfig', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
53792
53784
|
const localVarPath = `/auth-profiles/{id}`
|
|
53793
53785
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
53794
53786
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -53868,13 +53860,13 @@ export const AuthProfileV2024ApiFp = function(configuration?: Configuration) {
|
|
|
53868
53860
|
* This API updates an existing Auth Profile. The following fields are patchable: **offNetwork**, **untrustedGeography**, **applicationId**, **applicationName**, **type**
|
|
53869
53861
|
* @summary Patch a specified auth profile
|
|
53870
53862
|
* @param {string} id ID of the Auth Profile to patch.
|
|
53871
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53872
53863
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
53864
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53873
53865
|
* @param {*} [axiosOptions] Override http request option.
|
|
53874
53866
|
* @throws {RequiredError}
|
|
53875
53867
|
*/
|
|
53876
|
-
async patchProfileConfig(id: string,
|
|
53877
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchProfileConfig(id,
|
|
53868
|
+
async patchProfileConfig(id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthProfileV2024>> {
|
|
53869
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchProfileConfig(id, jsonPatchOperationV2024, xSailPointExperimental, axiosOptions);
|
|
53878
53870
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53879
53871
|
const localVarOperationServerBasePath = operationServerMap['AuthProfileV2024Api.patchProfileConfig']?.[localVarOperationServerIndex]?.url;
|
|
53880
53872
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -53917,7 +53909,7 @@ export const AuthProfileV2024ApiFactory = function (configuration?: Configuratio
|
|
|
53917
53909
|
* @throws {RequiredError}
|
|
53918
53910
|
*/
|
|
53919
53911
|
patchProfileConfig(requestParameters: AuthProfileV2024ApiPatchProfileConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AuthProfileV2024> {
|
|
53920
|
-
return localVarFp.patchProfileConfig(requestParameters.id, requestParameters.
|
|
53912
|
+
return localVarFp.patchProfileConfig(requestParameters.id, requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
53921
53913
|
},
|
|
53922
53914
|
};
|
|
53923
53915
|
};
|
|
@@ -53971,18 +53963,18 @@ export interface AuthProfileV2024ApiPatchProfileConfigRequest {
|
|
|
53971
53963
|
readonly id: string
|
|
53972
53964
|
|
|
53973
53965
|
/**
|
|
53974
|
-
*
|
|
53975
|
-
* @type {
|
|
53966
|
+
*
|
|
53967
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
53976
53968
|
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
53977
53969
|
*/
|
|
53978
|
-
readonly
|
|
53970
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>
|
|
53979
53971
|
|
|
53980
53972
|
/**
|
|
53981
|
-
*
|
|
53982
|
-
* @type {
|
|
53973
|
+
* Use this header to enable this experimental API.
|
|
53974
|
+
* @type {string}
|
|
53983
53975
|
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
53984
53976
|
*/
|
|
53985
|
-
readonly
|
|
53977
|
+
readonly xSailPointExperimental?: string
|
|
53986
53978
|
}
|
|
53987
53979
|
|
|
53988
53980
|
/**
|
|
@@ -54025,7 +54017,7 @@ export class AuthProfileV2024Api extends BaseAPI {
|
|
|
54025
54017
|
* @memberof AuthProfileV2024Api
|
|
54026
54018
|
*/
|
|
54027
54019
|
public patchProfileConfig(requestParameters: AuthProfileV2024ApiPatchProfileConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
54028
|
-
return AuthProfileV2024ApiFp(this.configuration).patchProfileConfig(requestParameters.id, requestParameters.
|
|
54020
|
+
return AuthProfileV2024ApiFp(this.configuration).patchProfileConfig(requestParameters.id, requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
54029
54021
|
}
|
|
54030
54022
|
}
|
|
54031
54023
|
|
|
@@ -66375,20 +66367,18 @@ export const CustomPasswordInstructionsV2024ApiAxiosParamCreator = function (con
|
|
|
66375
66367
|
* This API delete the custom password instructions for the specified page ID.
|
|
66376
66368
|
* @summary Delete custom password instructions by page id
|
|
66377
66369
|
* @param {DeleteCustomPasswordInstructionsPageIdV2024} pageId The page ID of custom password instructions to delete.
|
|
66378
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66379
66370
|
* @param {string} [locale] The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
66371
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66380
66372
|
* @param {*} [axiosOptions] Override http request option.
|
|
66381
66373
|
* @throws {RequiredError}
|
|
66382
66374
|
*/
|
|
66383
|
-
deleteCustomPasswordInstructions: async (pageId: DeleteCustomPasswordInstructionsPageIdV2024,
|
|
66375
|
+
deleteCustomPasswordInstructions: async (pageId: DeleteCustomPasswordInstructionsPageIdV2024, locale?: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
66384
66376
|
// verify required parameter 'pageId' is not null or undefined
|
|
66385
66377
|
assertParamExists('deleteCustomPasswordInstructions', 'pageId', pageId)
|
|
66386
66378
|
if (xSailPointExperimental === undefined) {
|
|
66387
66379
|
xSailPointExperimental = 'true';
|
|
66388
66380
|
}
|
|
66389
66381
|
|
|
66390
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
66391
|
-
assertParamExists('deleteCustomPasswordInstructions', 'xSailPointExperimental', xSailPointExperimental)
|
|
66392
66382
|
const localVarPath = `/custom-password-instructions/{pageId}`
|
|
66393
66383
|
.replace(`{${"pageId"}}`, encodeURIComponent(String(pageId)));
|
|
66394
66384
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -66511,13 +66501,13 @@ export const CustomPasswordInstructionsV2024ApiFp = function(configuration?: Con
|
|
|
66511
66501
|
* This API delete the custom password instructions for the specified page ID.
|
|
66512
66502
|
* @summary Delete custom password instructions by page id
|
|
66513
66503
|
* @param {DeleteCustomPasswordInstructionsPageIdV2024} pageId The page ID of custom password instructions to delete.
|
|
66514
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66515
66504
|
* @param {string} [locale] The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
66505
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66516
66506
|
* @param {*} [axiosOptions] Override http request option.
|
|
66517
66507
|
* @throws {RequiredError}
|
|
66518
66508
|
*/
|
|
66519
|
-
async deleteCustomPasswordInstructions(pageId: DeleteCustomPasswordInstructionsPageIdV2024,
|
|
66520
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCustomPasswordInstructions(pageId,
|
|
66509
|
+
async deleteCustomPasswordInstructions(pageId: DeleteCustomPasswordInstructionsPageIdV2024, locale?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
66510
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCustomPasswordInstructions(pageId, locale, xSailPointExperimental, axiosOptions);
|
|
66521
66511
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
66522
66512
|
const localVarOperationServerBasePath = operationServerMap['CustomPasswordInstructionsV2024Api.deleteCustomPasswordInstructions']?.[localVarOperationServerIndex]?.url;
|
|
66523
66513
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -66565,7 +66555,7 @@ export const CustomPasswordInstructionsV2024ApiFactory = function (configuration
|
|
|
66565
66555
|
* @throws {RequiredError}
|
|
66566
66556
|
*/
|
|
66567
66557
|
deleteCustomPasswordInstructions(requestParameters: CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
66568
|
-
return localVarFp.deleteCustomPasswordInstructions(requestParameters.pageId, requestParameters.
|
|
66558
|
+
return localVarFp.deleteCustomPasswordInstructions(requestParameters.pageId, requestParameters.locale, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
66569
66559
|
},
|
|
66570
66560
|
/**
|
|
66571
66561
|
* This API returns the custom password instructions for the specified page ID.
|
|
@@ -66615,18 +66605,18 @@ export interface CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructi
|
|
|
66615
66605
|
readonly pageId: DeleteCustomPasswordInstructionsPageIdV2024
|
|
66616
66606
|
|
|
66617
66607
|
/**
|
|
66618
|
-
*
|
|
66608
|
+
* The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
66619
66609
|
* @type {string}
|
|
66620
66610
|
* @memberof CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructions
|
|
66621
66611
|
*/
|
|
66622
|
-
readonly
|
|
66612
|
+
readonly locale?: string
|
|
66623
66613
|
|
|
66624
66614
|
/**
|
|
66625
|
-
*
|
|
66615
|
+
* Use this header to enable this experimental API.
|
|
66626
66616
|
* @type {string}
|
|
66627
66617
|
* @memberof CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructions
|
|
66628
66618
|
*/
|
|
66629
|
-
readonly
|
|
66619
|
+
readonly xSailPointExperimental?: string
|
|
66630
66620
|
}
|
|
66631
66621
|
|
|
66632
66622
|
/**
|
|
@@ -66685,7 +66675,7 @@ export class CustomPasswordInstructionsV2024Api extends BaseAPI {
|
|
|
66685
66675
|
* @memberof CustomPasswordInstructionsV2024Api
|
|
66686
66676
|
*/
|
|
66687
66677
|
public deleteCustomPasswordInstructions(requestParameters: CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructionsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
66688
|
-
return CustomPasswordInstructionsV2024ApiFp(this.configuration).deleteCustomPasswordInstructions(requestParameters.pageId, requestParameters.
|
|
66678
|
+
return CustomPasswordInstructionsV2024ApiFp(this.configuration).deleteCustomPasswordInstructions(requestParameters.pageId, requestParameters.locale, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
66689
66679
|
}
|
|
66690
66680
|
|
|
66691
66681
|
/**
|
|
@@ -66797,20 +66787,18 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
66797
66787
|
* This API deletes the segment specified by the given ID.
|
|
66798
66788
|
* @summary Delete segment by id
|
|
66799
66789
|
* @param {string} id The segment ID to delete.
|
|
66800
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66801
66790
|
* @param {boolean} [published] This determines which version of the segment to delete
|
|
66791
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66802
66792
|
* @param {*} [axiosOptions] Override http request option.
|
|
66803
66793
|
* @throws {RequiredError}
|
|
66804
66794
|
*/
|
|
66805
|
-
deleteDataSegment: async (id: string,
|
|
66795
|
+
deleteDataSegment: async (id: string, published?: boolean, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
66806
66796
|
// verify required parameter 'id' is not null or undefined
|
|
66807
66797
|
assertParamExists('deleteDataSegment', 'id', id)
|
|
66808
66798
|
if (xSailPointExperimental === undefined) {
|
|
66809
66799
|
xSailPointExperimental = 'true';
|
|
66810
66800
|
}
|
|
66811
66801
|
|
|
66812
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
66813
|
-
assertParamExists('deleteDataSegment', 'xSailPointExperimental', xSailPointExperimental)
|
|
66814
66802
|
const localVarPath = `/data-segments/{segmentId}`
|
|
66815
66803
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
66816
66804
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -67105,22 +67093,20 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67105
67093
|
* Use this API to update segment fields by using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
67106
67094
|
* @summary Update segment
|
|
67107
67095
|
* @param {string} id The segment ID to modify.
|
|
67108
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67109
67096
|
* @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
|
|
67097
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67110
67098
|
* @param {*} [axiosOptions] Override http request option.
|
|
67111
67099
|
* @throws {RequiredError}
|
|
67112
67100
|
*/
|
|
67113
|
-
patchDataSegment: async (id: string,
|
|
67101
|
+
patchDataSegment: async (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
67114
67102
|
// verify required parameter 'id' is not null or undefined
|
|
67115
67103
|
assertParamExists('patchDataSegment', 'id', id)
|
|
67104
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
67105
|
+
assertParamExists('patchDataSegment', 'requestBody', requestBody)
|
|
67116
67106
|
if (xSailPointExperimental === undefined) {
|
|
67117
67107
|
xSailPointExperimental = 'true';
|
|
67118
67108
|
}
|
|
67119
67109
|
|
|
67120
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
67121
|
-
assertParamExists('patchDataSegment', 'xSailPointExperimental', xSailPointExperimental)
|
|
67122
|
-
// verify required parameter 'requestBody' is not null or undefined
|
|
67123
|
-
assertParamExists('patchDataSegment', 'requestBody', requestBody)
|
|
67124
67110
|
const localVarPath = `/data-segments/{segmentId}`
|
|
67125
67111
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
67126
67112
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -67166,21 +67152,19 @@ export const DataSegmentationV2024ApiAxiosParamCreator = function (configuration
|
|
|
67166
67152
|
/**
|
|
67167
67153
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
67168
67154
|
* @summary Publish segment by id
|
|
67169
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67170
67155
|
* @param {Array<string>} requestBody A list of segment ids that you wish to publish
|
|
67171
67156
|
* @param {boolean} [publishAll] This flag decides whether you want to publish all unpublished or a list of specific segment ids
|
|
67157
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67172
67158
|
* @param {*} [axiosOptions] Override http request option.
|
|
67173
67159
|
* @throws {RequiredError}
|
|
67174
67160
|
*/
|
|
67175
|
-
publishDataSegment: async (
|
|
67161
|
+
publishDataSegment: async (requestBody: Array<string>, publishAll?: boolean, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
67162
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
67163
|
+
assertParamExists('publishDataSegment', 'requestBody', requestBody)
|
|
67176
67164
|
if (xSailPointExperimental === undefined) {
|
|
67177
67165
|
xSailPointExperimental = 'true';
|
|
67178
67166
|
}
|
|
67179
67167
|
|
|
67180
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
67181
|
-
assertParamExists('publishDataSegment', 'xSailPointExperimental', xSailPointExperimental)
|
|
67182
|
-
// verify required parameter 'requestBody' is not null or undefined
|
|
67183
|
-
assertParamExists('publishDataSegment', 'requestBody', requestBody)
|
|
67184
67168
|
const localVarPath = `/data-segments/{segmentId}`;
|
|
67185
67169
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
67186
67170
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -67253,13 +67237,13 @@ export const DataSegmentationV2024ApiFp = function(configuration?: Configuration
|
|
|
67253
67237
|
* This API deletes the segment specified by the given ID.
|
|
67254
67238
|
* @summary Delete segment by id
|
|
67255
67239
|
* @param {string} id The segment ID to delete.
|
|
67256
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67257
67240
|
* @param {boolean} [published] This determines which version of the segment to delete
|
|
67241
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67258
67242
|
* @param {*} [axiosOptions] Override http request option.
|
|
67259
67243
|
* @throws {RequiredError}
|
|
67260
67244
|
*/
|
|
67261
|
-
async deleteDataSegment(id: string,
|
|
67262
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDataSegment(id,
|
|
67245
|
+
async deleteDataSegment(id: string, published?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
67246
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDataSegment(id, published, xSailPointExperimental, axiosOptions);
|
|
67263
67247
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
67264
67248
|
const localVarOperationServerBasePath = operationServerMap['DataSegmentationV2024Api.deleteDataSegment']?.[localVarOperationServerIndex]?.url;
|
|
67265
67249
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -67330,13 +67314,13 @@ export const DataSegmentationV2024ApiFp = function(configuration?: Configuration
|
|
|
67330
67314
|
* Use this API to update segment fields by using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
67331
67315
|
* @summary Update segment
|
|
67332
67316
|
* @param {string} id The segment ID to modify.
|
|
67333
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67334
67317
|
* @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
|
|
67318
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67335
67319
|
* @param {*} [axiosOptions] Override http request option.
|
|
67336
67320
|
* @throws {RequiredError}
|
|
67337
67321
|
*/
|
|
67338
|
-
async patchDataSegment(id: string,
|
|
67339
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchDataSegment(id,
|
|
67322
|
+
async patchDataSegment(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataSegmentV2024>> {
|
|
67323
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchDataSegment(id, requestBody, xSailPointExperimental, axiosOptions);
|
|
67340
67324
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
67341
67325
|
const localVarOperationServerBasePath = operationServerMap['DataSegmentationV2024Api.patchDataSegment']?.[localVarOperationServerIndex]?.url;
|
|
67342
67326
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -67344,14 +67328,14 @@ export const DataSegmentationV2024ApiFp = function(configuration?: Configuration
|
|
|
67344
67328
|
/**
|
|
67345
67329
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
67346
67330
|
* @summary Publish segment by id
|
|
67347
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67348
67331
|
* @param {Array<string>} requestBody A list of segment ids that you wish to publish
|
|
67349
67332
|
* @param {boolean} [publishAll] This flag decides whether you want to publish all unpublished or a list of specific segment ids
|
|
67333
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
67350
67334
|
* @param {*} [axiosOptions] Override http request option.
|
|
67351
67335
|
* @throws {RequiredError}
|
|
67352
67336
|
*/
|
|
67353
|
-
async publishDataSegment(
|
|
67354
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.publishDataSegment(
|
|
67337
|
+
async publishDataSegment(requestBody: Array<string>, publishAll?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
67338
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.publishDataSegment(requestBody, publishAll, xSailPointExperimental, axiosOptions);
|
|
67355
67339
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
67356
67340
|
const localVarOperationServerBasePath = operationServerMap['DataSegmentationV2024Api.publishDataSegment']?.[localVarOperationServerIndex]?.url;
|
|
67357
67341
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -67384,7 +67368,7 @@ export const DataSegmentationV2024ApiFactory = function (configuration?: Configu
|
|
|
67384
67368
|
* @throws {RequiredError}
|
|
67385
67369
|
*/
|
|
67386
67370
|
deleteDataSegment(requestParameters: DataSegmentationV2024ApiDeleteDataSegmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
67387
|
-
return localVarFp.deleteDataSegment(requestParameters.id, requestParameters.
|
|
67371
|
+
return localVarFp.deleteDataSegment(requestParameters.id, requestParameters.published, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
67388
67372
|
},
|
|
67389
67373
|
/**
|
|
67390
67374
|
* This API returns the segment specified by the given ID.
|
|
@@ -67434,7 +67418,7 @@ export const DataSegmentationV2024ApiFactory = function (configuration?: Configu
|
|
|
67434
67418
|
* @throws {RequiredError}
|
|
67435
67419
|
*/
|
|
67436
67420
|
patchDataSegment(requestParameters: DataSegmentationV2024ApiPatchDataSegmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DataSegmentV2024> {
|
|
67437
|
-
return localVarFp.patchDataSegment(requestParameters.id, requestParameters.
|
|
67421
|
+
return localVarFp.patchDataSegment(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
67438
67422
|
},
|
|
67439
67423
|
/**
|
|
67440
67424
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
@@ -67444,7 +67428,7 @@ export const DataSegmentationV2024ApiFactory = function (configuration?: Configu
|
|
|
67444
67428
|
* @throws {RequiredError}
|
|
67445
67429
|
*/
|
|
67446
67430
|
publishDataSegment(requestParameters: DataSegmentationV2024ApiPublishDataSegmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
67447
|
-
return localVarFp.publishDataSegment(requestParameters.
|
|
67431
|
+
return localVarFp.publishDataSegment(requestParameters.requestBody, requestParameters.publishAll, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
67448
67432
|
},
|
|
67449
67433
|
};
|
|
67450
67434
|
};
|
|
@@ -67477,18 +67461,18 @@ export interface DataSegmentationV2024ApiDeleteDataSegmentRequest {
|
|
|
67477
67461
|
readonly id: string
|
|
67478
67462
|
|
|
67479
67463
|
/**
|
|
67480
|
-
*
|
|
67481
|
-
* @type {
|
|
67464
|
+
* This determines which version of the segment to delete
|
|
67465
|
+
* @type {boolean}
|
|
67482
67466
|
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
67483
67467
|
*/
|
|
67484
|
-
readonly
|
|
67468
|
+
readonly published?: boolean
|
|
67485
67469
|
|
|
67486
67470
|
/**
|
|
67487
|
-
*
|
|
67488
|
-
* @type {
|
|
67471
|
+
* Use this header to enable this experimental API.
|
|
67472
|
+
* @type {string}
|
|
67489
67473
|
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
67490
67474
|
*/
|
|
67491
|
-
readonly
|
|
67475
|
+
readonly xSailPointExperimental?: string
|
|
67492
67476
|
}
|
|
67493
67477
|
|
|
67494
67478
|
/**
|
|
@@ -67631,18 +67615,18 @@ export interface DataSegmentationV2024ApiPatchDataSegmentRequest {
|
|
|
67631
67615
|
readonly id: string
|
|
67632
67616
|
|
|
67633
67617
|
/**
|
|
67634
|
-
*
|
|
67635
|
-
* @type {
|
|
67618
|
+
* 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
|
|
67619
|
+
* @type {Array<object>}
|
|
67636
67620
|
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
67637
67621
|
*/
|
|
67638
|
-
readonly
|
|
67622
|
+
readonly requestBody: Array<object>
|
|
67639
67623
|
|
|
67640
67624
|
/**
|
|
67641
|
-
*
|
|
67642
|
-
* @type {
|
|
67625
|
+
* Use this header to enable this experimental API.
|
|
67626
|
+
* @type {string}
|
|
67643
67627
|
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
67644
67628
|
*/
|
|
67645
|
-
readonly
|
|
67629
|
+
readonly xSailPointExperimental?: string
|
|
67646
67630
|
}
|
|
67647
67631
|
|
|
67648
67632
|
/**
|
|
@@ -67651,13 +67635,6 @@ export interface DataSegmentationV2024ApiPatchDataSegmentRequest {
|
|
|
67651
67635
|
* @interface DataSegmentationV2024ApiPublishDataSegmentRequest
|
|
67652
67636
|
*/
|
|
67653
67637
|
export interface DataSegmentationV2024ApiPublishDataSegmentRequest {
|
|
67654
|
-
/**
|
|
67655
|
-
* Use this header to enable this experimental API.
|
|
67656
|
-
* @type {string}
|
|
67657
|
-
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
67658
|
-
*/
|
|
67659
|
-
readonly xSailPointExperimental: string
|
|
67660
|
-
|
|
67661
67638
|
/**
|
|
67662
67639
|
* A list of segment ids that you wish to publish
|
|
67663
67640
|
* @type {Array<string>}
|
|
@@ -67671,6 +67648,13 @@ export interface DataSegmentationV2024ApiPublishDataSegmentRequest {
|
|
|
67671
67648
|
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
67672
67649
|
*/
|
|
67673
67650
|
readonly publishAll?: boolean
|
|
67651
|
+
|
|
67652
|
+
/**
|
|
67653
|
+
* Use this header to enable this experimental API.
|
|
67654
|
+
* @type {string}
|
|
67655
|
+
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
67656
|
+
*/
|
|
67657
|
+
readonly xSailPointExperimental?: string
|
|
67674
67658
|
}
|
|
67675
67659
|
|
|
67676
67660
|
/**
|
|
@@ -67701,7 +67685,7 @@ export class DataSegmentationV2024Api extends BaseAPI {
|
|
|
67701
67685
|
* @memberof DataSegmentationV2024Api
|
|
67702
67686
|
*/
|
|
67703
67687
|
public deleteDataSegment(requestParameters: DataSegmentationV2024ApiDeleteDataSegmentRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
67704
|
-
return DataSegmentationV2024ApiFp(this.configuration).deleteDataSegment(requestParameters.id, requestParameters.
|
|
67688
|
+
return DataSegmentationV2024ApiFp(this.configuration).deleteDataSegment(requestParameters.id, requestParameters.published, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
67705
67689
|
}
|
|
67706
67690
|
|
|
67707
67691
|
/**
|
|
@@ -67761,7 +67745,7 @@ export class DataSegmentationV2024Api extends BaseAPI {
|
|
|
67761
67745
|
* @memberof DataSegmentationV2024Api
|
|
67762
67746
|
*/
|
|
67763
67747
|
public patchDataSegment(requestParameters: DataSegmentationV2024ApiPatchDataSegmentRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
67764
|
-
return DataSegmentationV2024ApiFp(this.configuration).patchDataSegment(requestParameters.id, requestParameters.
|
|
67748
|
+
return DataSegmentationV2024ApiFp(this.configuration).patchDataSegment(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
67765
67749
|
}
|
|
67766
67750
|
|
|
67767
67751
|
/**
|
|
@@ -67773,7 +67757,7 @@ export class DataSegmentationV2024Api extends BaseAPI {
|
|
|
67773
67757
|
* @memberof DataSegmentationV2024Api
|
|
67774
67758
|
*/
|
|
67775
67759
|
public publishDataSegment(requestParameters: DataSegmentationV2024ApiPublishDataSegmentRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
67776
|
-
return DataSegmentationV2024ApiFp(this.configuration).publishDataSegment(requestParameters.
|
|
67760
|
+
return DataSegmentationV2024ApiFp(this.configuration).publishDataSegment(requestParameters.requestBody, requestParameters.publishAll, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
67777
67761
|
}
|
|
67778
67762
|
}
|
|
67779
67763
|
|
|
@@ -71112,20 +71096,18 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
71112
71096
|
/**
|
|
71113
71097
|
* This API creates a new Governance Group.
|
|
71114
71098
|
* @summary Create a new governance group.
|
|
71115
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71116
71099
|
* @param {WorkgroupDtoV2024} workgroupDtoV2024
|
|
71100
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71117
71101
|
* @param {*} [axiosOptions] Override http request option.
|
|
71118
71102
|
* @throws {RequiredError}
|
|
71119
71103
|
*/
|
|
71120
|
-
createWorkgroup: async (
|
|
71104
|
+
createWorkgroup: async (workgroupDtoV2024: WorkgroupDtoV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
71105
|
+
// verify required parameter 'workgroupDtoV2024' is not null or undefined
|
|
71106
|
+
assertParamExists('createWorkgroup', 'workgroupDtoV2024', workgroupDtoV2024)
|
|
71121
71107
|
if (xSailPointExperimental === undefined) {
|
|
71122
71108
|
xSailPointExperimental = 'true';
|
|
71123
71109
|
}
|
|
71124
71110
|
|
|
71125
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
71126
|
-
assertParamExists('createWorkgroup', 'xSailPointExperimental', xSailPointExperimental)
|
|
71127
|
-
// verify required parameter 'workgroupDtoV2024' is not null or undefined
|
|
71128
|
-
assertParamExists('createWorkgroup', 'workgroupDtoV2024', workgroupDtoV2024)
|
|
71129
71111
|
const localVarPath = `/workgroups`;
|
|
71130
71112
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
71131
71113
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -71167,19 +71149,17 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
71167
71149
|
* This API deletes a Governance Group by its ID.
|
|
71168
71150
|
* @summary Delete a governance group
|
|
71169
71151
|
* @param {string} id ID of the Governance Group
|
|
71170
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71152
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71171
71153
|
* @param {*} [axiosOptions] Override http request option.
|
|
71172
71154
|
* @throws {RequiredError}
|
|
71173
71155
|
*/
|
|
71174
|
-
deleteWorkgroup: async (id: string, xSailPointExperimental
|
|
71156
|
+
deleteWorkgroup: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
71175
71157
|
// verify required parameter 'id' is not null or undefined
|
|
71176
71158
|
assertParamExists('deleteWorkgroup', 'id', id)
|
|
71177
71159
|
if (xSailPointExperimental === undefined) {
|
|
71178
71160
|
xSailPointExperimental = 'true';
|
|
71179
71161
|
}
|
|
71180
71162
|
|
|
71181
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
71182
|
-
assertParamExists('deleteWorkgroup', 'xSailPointExperimental', xSailPointExperimental)
|
|
71183
71163
|
const localVarPath = `/workgroups/{id}`
|
|
71184
71164
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
71185
71165
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -71600,20 +71580,18 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
71600
71580
|
* This API updates an existing governance group by ID. The following fields and objects are patchable: * name * description * owner
|
|
71601
71581
|
* @summary Patch a governance group
|
|
71602
71582
|
* @param {string} id ID of the Governance Group
|
|
71603
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71583
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71604
71584
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
71605
71585
|
* @param {*} [axiosOptions] Override http request option.
|
|
71606
71586
|
* @throws {RequiredError}
|
|
71607
71587
|
*/
|
|
71608
|
-
patchWorkgroup: async (id: string, xSailPointExperimental
|
|
71588
|
+
patchWorkgroup: async (id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
71609
71589
|
// verify required parameter 'id' is not null or undefined
|
|
71610
71590
|
assertParamExists('patchWorkgroup', 'id', id)
|
|
71611
71591
|
if (xSailPointExperimental === undefined) {
|
|
71612
71592
|
xSailPointExperimental = 'true';
|
|
71613
71593
|
}
|
|
71614
71594
|
|
|
71615
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
71616
|
-
assertParamExists('patchWorkgroup', 'xSailPointExperimental', xSailPointExperimental)
|
|
71617
71595
|
const localVarPath = `/workgroups/{id}`
|
|
71618
71596
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
71619
71597
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -71725,13 +71703,13 @@ export const GovernanceGroupsV2024ApiFp = function(configuration?: Configuration
|
|
|
71725
71703
|
/**
|
|
71726
71704
|
* This API creates a new Governance Group.
|
|
71727
71705
|
* @summary Create a new governance group.
|
|
71728
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71729
71706
|
* @param {WorkgroupDtoV2024} workgroupDtoV2024
|
|
71707
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71730
71708
|
* @param {*} [axiosOptions] Override http request option.
|
|
71731
71709
|
* @throws {RequiredError}
|
|
71732
71710
|
*/
|
|
71733
|
-
async createWorkgroup(
|
|
71734
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createWorkgroup(
|
|
71711
|
+
async createWorkgroup(workgroupDtoV2024: WorkgroupDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkgroupDtoV2024>> {
|
|
71712
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createWorkgroup(workgroupDtoV2024, xSailPointExperimental, axiosOptions);
|
|
71735
71713
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
71736
71714
|
const localVarOperationServerBasePath = operationServerMap['GovernanceGroupsV2024Api.createWorkgroup']?.[localVarOperationServerIndex]?.url;
|
|
71737
71715
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -71740,11 +71718,11 @@ export const GovernanceGroupsV2024ApiFp = function(configuration?: Configuration
|
|
|
71740
71718
|
* This API deletes a Governance Group by its ID.
|
|
71741
71719
|
* @summary Delete a governance group
|
|
71742
71720
|
* @param {string} id ID of the Governance Group
|
|
71743
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71721
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71744
71722
|
* @param {*} [axiosOptions] Override http request option.
|
|
71745
71723
|
* @throws {RequiredError}
|
|
71746
71724
|
*/
|
|
71747
|
-
async deleteWorkgroup(id: string, xSailPointExperimental
|
|
71725
|
+
async deleteWorkgroup(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
71748
71726
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteWorkgroup(id, xSailPointExperimental, axiosOptions);
|
|
71749
71727
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
71750
71728
|
const localVarOperationServerBasePath = operationServerMap['GovernanceGroupsV2024Api.deleteWorkgroup']?.[localVarOperationServerIndex]?.url;
|
|
@@ -71851,12 +71829,12 @@ export const GovernanceGroupsV2024ApiFp = function(configuration?: Configuration
|
|
|
71851
71829
|
* This API updates an existing governance group by ID. The following fields and objects are patchable: * name * description * owner
|
|
71852
71830
|
* @summary Patch a governance group
|
|
71853
71831
|
* @param {string} id ID of the Governance Group
|
|
71854
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71832
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71855
71833
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
71856
71834
|
* @param {*} [axiosOptions] Override http request option.
|
|
71857
71835
|
* @throws {RequiredError}
|
|
71858
71836
|
*/
|
|
71859
|
-
async patchWorkgroup(id: string, xSailPointExperimental
|
|
71837
|
+
async patchWorkgroup(id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkgroupDtoV2024>> {
|
|
71860
71838
|
const localVarAxiosArgs = await localVarAxiosParamCreator.patchWorkgroup(id, xSailPointExperimental, jsonPatchOperationV2024, axiosOptions);
|
|
71861
71839
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
71862
71840
|
const localVarOperationServerBasePath = operationServerMap['GovernanceGroupsV2024Api.patchWorkgroup']?.[localVarOperationServerIndex]?.url;
|
|
@@ -71895,7 +71873,7 @@ export const GovernanceGroupsV2024ApiFactory = function (configuration?: Configu
|
|
|
71895
71873
|
* @throws {RequiredError}
|
|
71896
71874
|
*/
|
|
71897
71875
|
createWorkgroup(requestParameters: GovernanceGroupsV2024ApiCreateWorkgroupRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkgroupDtoV2024> {
|
|
71898
|
-
return localVarFp.createWorkgroup(requestParameters.
|
|
71876
|
+
return localVarFp.createWorkgroup(requestParameters.workgroupDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
71899
71877
|
},
|
|
71900
71878
|
/**
|
|
71901
71879
|
* This API deletes a Governance Group by its ID.
|
|
@@ -71997,18 +71975,18 @@ export const GovernanceGroupsV2024ApiFactory = function (configuration?: Configu
|
|
|
71997
71975
|
*/
|
|
71998
71976
|
export interface GovernanceGroupsV2024ApiCreateWorkgroupRequest {
|
|
71999
71977
|
/**
|
|
72000
|
-
*
|
|
72001
|
-
* @type {
|
|
71978
|
+
*
|
|
71979
|
+
* @type {WorkgroupDtoV2024}
|
|
72002
71980
|
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
72003
71981
|
*/
|
|
72004
|
-
readonly
|
|
71982
|
+
readonly workgroupDtoV2024: WorkgroupDtoV2024
|
|
72005
71983
|
|
|
72006
71984
|
/**
|
|
72007
|
-
*
|
|
72008
|
-
* @type {
|
|
71985
|
+
* Use this header to enable this experimental API.
|
|
71986
|
+
* @type {string}
|
|
72009
71987
|
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
72010
71988
|
*/
|
|
72011
|
-
readonly
|
|
71989
|
+
readonly xSailPointExperimental?: string
|
|
72012
71990
|
}
|
|
72013
71991
|
|
|
72014
71992
|
/**
|
|
@@ -72029,7 +72007,7 @@ export interface GovernanceGroupsV2024ApiDeleteWorkgroupRequest {
|
|
|
72029
72007
|
* @type {string}
|
|
72030
72008
|
* @memberof GovernanceGroupsV2024ApiDeleteWorkgroup
|
|
72031
72009
|
*/
|
|
72032
|
-
readonly xSailPointExperimental
|
|
72010
|
+
readonly xSailPointExperimental?: string
|
|
72033
72011
|
}
|
|
72034
72012
|
|
|
72035
72013
|
/**
|
|
@@ -72267,7 +72245,7 @@ export interface GovernanceGroupsV2024ApiPatchWorkgroupRequest {
|
|
|
72267
72245
|
* @type {string}
|
|
72268
72246
|
* @memberof GovernanceGroupsV2024ApiPatchWorkgroup
|
|
72269
72247
|
*/
|
|
72270
|
-
readonly xSailPointExperimental
|
|
72248
|
+
readonly xSailPointExperimental?: string
|
|
72271
72249
|
|
|
72272
72250
|
/**
|
|
72273
72251
|
*
|
|
@@ -72321,7 +72299,7 @@ export class GovernanceGroupsV2024Api extends BaseAPI {
|
|
|
72321
72299
|
* @memberof GovernanceGroupsV2024Api
|
|
72322
72300
|
*/
|
|
72323
72301
|
public createWorkgroup(requestParameters: GovernanceGroupsV2024ApiCreateWorkgroupRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
72324
|
-
return GovernanceGroupsV2024ApiFp(this.configuration).createWorkgroup(requestParameters.
|
|
72302
|
+
return GovernanceGroupsV2024ApiFp(this.configuration).createWorkgroup(requestParameters.workgroupDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
72325
72303
|
}
|
|
72326
72304
|
|
|
72327
72305
|
/**
|
|
@@ -72779,22 +72757,20 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
72779
72757
|
/**
|
|
72780
72758
|
* This API returns the list of ignored access request recommendations.
|
|
72781
72759
|
* @summary List ignored access request recommendations
|
|
72782
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
72783
72760
|
* @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.
|
|
72784
72761
|
* @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.
|
|
72785
72762
|
* @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.
|
|
72786
72763
|
* @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*
|
|
72787
72764
|
* @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**
|
|
72765
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
72788
72766
|
* @param {*} [axiosOptions] Override http request option.
|
|
72789
72767
|
* @throws {RequiredError}
|
|
72790
72768
|
*/
|
|
72791
|
-
getAccessRequestRecommendationsIgnoredItems: async (
|
|
72769
|
+
getAccessRequestRecommendationsIgnoredItems: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
72792
72770
|
if (xSailPointExperimental === undefined) {
|
|
72793
72771
|
xSailPointExperimental = 'true';
|
|
72794
72772
|
}
|
|
72795
72773
|
|
|
72796
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
72797
|
-
assertParamExists('getAccessRequestRecommendationsIgnoredItems', 'xSailPointExperimental', xSailPointExperimental)
|
|
72798
72774
|
const localVarPath = `/ai-access-request-recommendations/ignored-items`;
|
|
72799
72775
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
72800
72776
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -72852,22 +72828,20 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
72852
72828
|
/**
|
|
72853
72829
|
* This API returns a list of requested access request recommendations.
|
|
72854
72830
|
* @summary List accepted access request recommendations
|
|
72855
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
72856
72831
|
* @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.
|
|
72857
72832
|
* @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.
|
|
72858
72833
|
* @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.
|
|
72859
72834
|
* @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*
|
|
72860
72835
|
* @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**
|
|
72836
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
72861
72837
|
* @param {*} [axiosOptions] Override http request option.
|
|
72862
72838
|
* @throws {RequiredError}
|
|
72863
72839
|
*/
|
|
72864
|
-
getAccessRequestRecommendationsRequestedItems: async (
|
|
72840
|
+
getAccessRequestRecommendationsRequestedItems: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
72865
72841
|
if (xSailPointExperimental === undefined) {
|
|
72866
72842
|
xSailPointExperimental = 'true';
|
|
72867
72843
|
}
|
|
72868
72844
|
|
|
72869
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
72870
|
-
assertParamExists('getAccessRequestRecommendationsRequestedItems', 'xSailPointExperimental', xSailPointExperimental)
|
|
72871
72845
|
const localVarPath = `/ai-access-request-recommendations/requested-items`;
|
|
72872
72846
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
72873
72847
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -72925,22 +72899,20 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
72925
72899
|
/**
|
|
72926
72900
|
* This API returns the list of viewed access request recommendations.
|
|
72927
72901
|
* @summary List viewed access request recommendations
|
|
72928
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
72929
72902
|
* @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.
|
|
72930
72903
|
* @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.
|
|
72931
72904
|
* @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.
|
|
72932
72905
|
* @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*
|
|
72933
72906
|
* @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**
|
|
72907
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
72934
72908
|
* @param {*} [axiosOptions] Override http request option.
|
|
72935
72909
|
* @throws {RequiredError}
|
|
72936
72910
|
*/
|
|
72937
|
-
getAccessRequestRecommendationsViewedItems: async (
|
|
72911
|
+
getAccessRequestRecommendationsViewedItems: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
72938
72912
|
if (xSailPointExperimental === undefined) {
|
|
72939
72913
|
xSailPointExperimental = 'true';
|
|
72940
72914
|
}
|
|
72941
72915
|
|
|
72942
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
72943
|
-
assertParamExists('getAccessRequestRecommendationsViewedItems', 'xSailPointExperimental', xSailPointExperimental)
|
|
72944
72916
|
const localVarPath = `/ai-access-request-recommendations/viewed-items`;
|
|
72945
72917
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
72946
72918
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -72998,20 +72970,18 @@ export const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator = function
|
|
|
72998
72970
|
/**
|
|
72999
72971
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
73000
72972
|
* @summary Update access request recommendations config
|
|
73001
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73002
72973
|
* @param {AccessRequestRecommendationConfigDtoV2024} accessRequestRecommendationConfigDtoV2024 The desired configurations for Access Request Recommender for the tenant.
|
|
72974
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73003
72975
|
* @param {*} [axiosOptions] Override http request option.
|
|
73004
72976
|
* @throws {RequiredError}
|
|
73005
72977
|
*/
|
|
73006
|
-
setAccessRequestRecommendationsConfig: async (
|
|
72978
|
+
setAccessRequestRecommendationsConfig: async (accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
72979
|
+
// verify required parameter 'accessRequestRecommendationConfigDtoV2024' is not null or undefined
|
|
72980
|
+
assertParamExists('setAccessRequestRecommendationsConfig', 'accessRequestRecommendationConfigDtoV2024', accessRequestRecommendationConfigDtoV2024)
|
|
73007
72981
|
if (xSailPointExperimental === undefined) {
|
|
73008
72982
|
xSailPointExperimental = 'true';
|
|
73009
72983
|
}
|
|
73010
72984
|
|
|
73011
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
73012
|
-
assertParamExists('setAccessRequestRecommendationsConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
73013
|
-
// verify required parameter 'accessRequestRecommendationConfigDtoV2024' is not null or undefined
|
|
73014
|
-
assertParamExists('setAccessRequestRecommendationsConfig', 'accessRequestRecommendationConfigDtoV2024', accessRequestRecommendationConfigDtoV2024)
|
|
73015
72985
|
const localVarPath = `/ai-access-request-recommendations/config`;
|
|
73016
72986
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
73017
72987
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -73151,17 +73121,17 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
73151
73121
|
/**
|
|
73152
73122
|
* This API returns the list of ignored access request recommendations.
|
|
73153
73123
|
* @summary List ignored access request recommendations
|
|
73154
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73155
73124
|
* @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.
|
|
73156
73125
|
* @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.
|
|
73157
73126
|
* @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.
|
|
73158
73127
|
* @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*
|
|
73159
73128
|
* @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**
|
|
73129
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73160
73130
|
* @param {*} [axiosOptions] Override http request option.
|
|
73161
73131
|
* @throws {RequiredError}
|
|
73162
73132
|
*/
|
|
73163
|
-
async getAccessRequestRecommendationsIgnoredItems(
|
|
73164
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessRequestRecommendationsIgnoredItems(
|
|
73133
|
+
async getAccessRequestRecommendationsIgnoredItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>> {
|
|
73134
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessRequestRecommendationsIgnoredItems(limit, offset, count, filters, sorters, xSailPointExperimental, axiosOptions);
|
|
73165
73135
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
73166
73136
|
const localVarOperationServerBasePath = operationServerMap['IAIAccessRequestRecommendationsV2024Api.getAccessRequestRecommendationsIgnoredItems']?.[localVarOperationServerIndex]?.url;
|
|
73167
73137
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -73169,17 +73139,17 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
73169
73139
|
/**
|
|
73170
73140
|
* This API returns a list of requested access request recommendations.
|
|
73171
73141
|
* @summary List accepted access request recommendations
|
|
73172
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73173
73142
|
* @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.
|
|
73174
73143
|
* @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.
|
|
73175
73144
|
* @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.
|
|
73176
73145
|
* @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*
|
|
73177
73146
|
* @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**
|
|
73147
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73178
73148
|
* @param {*} [axiosOptions] Override http request option.
|
|
73179
73149
|
* @throws {RequiredError}
|
|
73180
73150
|
*/
|
|
73181
|
-
async getAccessRequestRecommendationsRequestedItems(
|
|
73182
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessRequestRecommendationsRequestedItems(
|
|
73151
|
+
async getAccessRequestRecommendationsRequestedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>> {
|
|
73152
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessRequestRecommendationsRequestedItems(limit, offset, count, filters, sorters, xSailPointExperimental, axiosOptions);
|
|
73183
73153
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
73184
73154
|
const localVarOperationServerBasePath = operationServerMap['IAIAccessRequestRecommendationsV2024Api.getAccessRequestRecommendationsRequestedItems']?.[localVarOperationServerIndex]?.url;
|
|
73185
73155
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -73187,17 +73157,17 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
73187
73157
|
/**
|
|
73188
73158
|
* This API returns the list of viewed access request recommendations.
|
|
73189
73159
|
* @summary List viewed access request recommendations
|
|
73190
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73191
73160
|
* @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.
|
|
73192
73161
|
* @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.
|
|
73193
73162
|
* @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.
|
|
73194
73163
|
* @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*
|
|
73195
73164
|
* @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**
|
|
73165
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73196
73166
|
* @param {*} [axiosOptions] Override http request option.
|
|
73197
73167
|
* @throws {RequiredError}
|
|
73198
73168
|
*/
|
|
73199
|
-
async getAccessRequestRecommendationsViewedItems(
|
|
73200
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessRequestRecommendationsViewedItems(
|
|
73169
|
+
async getAccessRequestRecommendationsViewedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>> {
|
|
73170
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessRequestRecommendationsViewedItems(limit, offset, count, filters, sorters, xSailPointExperimental, axiosOptions);
|
|
73201
73171
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
73202
73172
|
const localVarOperationServerBasePath = operationServerMap['IAIAccessRequestRecommendationsV2024Api.getAccessRequestRecommendationsViewedItems']?.[localVarOperationServerIndex]?.url;
|
|
73203
73173
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -73205,13 +73175,13 @@ export const IAIAccessRequestRecommendationsV2024ApiFp = function(configuration?
|
|
|
73205
73175
|
/**
|
|
73206
73176
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
73207
73177
|
* @summary Update access request recommendations config
|
|
73208
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73209
73178
|
* @param {AccessRequestRecommendationConfigDtoV2024} accessRequestRecommendationConfigDtoV2024 The desired configurations for Access Request Recommender for the tenant.
|
|
73179
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73210
73180
|
* @param {*} [axiosOptions] Override http request option.
|
|
73211
73181
|
* @throws {RequiredError}
|
|
73212
73182
|
*/
|
|
73213
|
-
async setAccessRequestRecommendationsConfig(
|
|
73214
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.setAccessRequestRecommendationsConfig(
|
|
73183
|
+
async setAccessRequestRecommendationsConfig(accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationConfigDtoV2024>> {
|
|
73184
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setAccessRequestRecommendationsConfig(accessRequestRecommendationConfigDtoV2024, xSailPointExperimental, axiosOptions);
|
|
73215
73185
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
73216
73186
|
const localVarOperationServerBasePath = operationServerMap['IAIAccessRequestRecommendationsV2024Api.setAccessRequestRecommendationsConfig']?.[localVarOperationServerIndex]?.url;
|
|
73217
73187
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -73293,8 +73263,8 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
73293
73263
|
* @param {*} [axiosOptions] Override http request option.
|
|
73294
73264
|
* @throws {RequiredError}
|
|
73295
73265
|
*/
|
|
73296
|
-
getAccessRequestRecommendationsIgnoredItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>> {
|
|
73297
|
-
return localVarFp.getAccessRequestRecommendationsIgnoredItems(requestParameters.
|
|
73266
|
+
getAccessRequestRecommendationsIgnoredItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>> {
|
|
73267
|
+
return localVarFp.getAccessRequestRecommendationsIgnoredItems(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
73298
73268
|
},
|
|
73299
73269
|
/**
|
|
73300
73270
|
* This API returns a list of requested access request recommendations.
|
|
@@ -73303,8 +73273,8 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
73303
73273
|
* @param {*} [axiosOptions] Override http request option.
|
|
73304
73274
|
* @throws {RequiredError}
|
|
73305
73275
|
*/
|
|
73306
|
-
getAccessRequestRecommendationsRequestedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>> {
|
|
73307
|
-
return localVarFp.getAccessRequestRecommendationsRequestedItems(requestParameters.
|
|
73276
|
+
getAccessRequestRecommendationsRequestedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>> {
|
|
73277
|
+
return localVarFp.getAccessRequestRecommendationsRequestedItems(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
73308
73278
|
},
|
|
73309
73279
|
/**
|
|
73310
73280
|
* This API returns the list of viewed access request recommendations.
|
|
@@ -73313,8 +73283,8 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
73313
73283
|
* @param {*} [axiosOptions] Override http request option.
|
|
73314
73284
|
* @throws {RequiredError}
|
|
73315
73285
|
*/
|
|
73316
|
-
getAccessRequestRecommendationsViewedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>> {
|
|
73317
|
-
return localVarFp.getAccessRequestRecommendationsViewedItems(requestParameters.
|
|
73286
|
+
getAccessRequestRecommendationsViewedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>> {
|
|
73287
|
+
return localVarFp.getAccessRequestRecommendationsViewedItems(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
73318
73288
|
},
|
|
73319
73289
|
/**
|
|
73320
73290
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
@@ -73324,7 +73294,7 @@ export const IAIAccessRequestRecommendationsV2024ApiFactory = function (configur
|
|
|
73324
73294
|
* @throws {RequiredError}
|
|
73325
73295
|
*/
|
|
73326
73296
|
setAccessRequestRecommendationsConfig(requestParameters: IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationConfigDtoV2024> {
|
|
73327
|
-
return localVarFp.setAccessRequestRecommendationsConfig(requestParameters.
|
|
73297
|
+
return localVarFp.setAccessRequestRecommendationsConfig(requestParameters.accessRequestRecommendationConfigDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
73328
73298
|
},
|
|
73329
73299
|
};
|
|
73330
73300
|
};
|
|
@@ -73496,13 +73466,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73496
73466
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest
|
|
73497
73467
|
*/
|
|
73498
73468
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest {
|
|
73499
|
-
/**
|
|
73500
|
-
* Use this header to enable this experimental API.
|
|
73501
|
-
* @type {string}
|
|
73502
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
73503
|
-
*/
|
|
73504
|
-
readonly xSailPointExperimental: string
|
|
73505
|
-
|
|
73506
73469
|
/**
|
|
73507
73470
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
73508
73471
|
* @type {number}
|
|
@@ -73537,6 +73500,13 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73537
73500
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
73538
73501
|
*/
|
|
73539
73502
|
readonly sorters?: string
|
|
73503
|
+
|
|
73504
|
+
/**
|
|
73505
|
+
* Use this header to enable this experimental API.
|
|
73506
|
+
* @type {string}
|
|
73507
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
73508
|
+
*/
|
|
73509
|
+
readonly xSailPointExperimental?: string
|
|
73540
73510
|
}
|
|
73541
73511
|
|
|
73542
73512
|
/**
|
|
@@ -73545,13 +73515,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73545
73515
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest
|
|
73546
73516
|
*/
|
|
73547
73517
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest {
|
|
73548
|
-
/**
|
|
73549
|
-
* Use this header to enable this experimental API.
|
|
73550
|
-
* @type {string}
|
|
73551
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
73552
|
-
*/
|
|
73553
|
-
readonly xSailPointExperimental: string
|
|
73554
|
-
|
|
73555
73518
|
/**
|
|
73556
73519
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
73557
73520
|
* @type {number}
|
|
@@ -73586,6 +73549,13 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73586
73549
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
73587
73550
|
*/
|
|
73588
73551
|
readonly sorters?: string
|
|
73552
|
+
|
|
73553
|
+
/**
|
|
73554
|
+
* Use this header to enable this experimental API.
|
|
73555
|
+
* @type {string}
|
|
73556
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
73557
|
+
*/
|
|
73558
|
+
readonly xSailPointExperimental?: string
|
|
73589
73559
|
}
|
|
73590
73560
|
|
|
73591
73561
|
/**
|
|
@@ -73594,13 +73564,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73594
73564
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest
|
|
73595
73565
|
*/
|
|
73596
73566
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest {
|
|
73597
|
-
/**
|
|
73598
|
-
* Use this header to enable this experimental API.
|
|
73599
|
-
* @type {string}
|
|
73600
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
73601
|
-
*/
|
|
73602
|
-
readonly xSailPointExperimental: string
|
|
73603
|
-
|
|
73604
73567
|
/**
|
|
73605
73568
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
73606
73569
|
* @type {number}
|
|
@@ -73635,6 +73598,13 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73635
73598
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
73636
73599
|
*/
|
|
73637
73600
|
readonly sorters?: string
|
|
73601
|
+
|
|
73602
|
+
/**
|
|
73603
|
+
* Use this header to enable this experimental API.
|
|
73604
|
+
* @type {string}
|
|
73605
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
73606
|
+
*/
|
|
73607
|
+
readonly xSailPointExperimental?: string
|
|
73638
73608
|
}
|
|
73639
73609
|
|
|
73640
73610
|
/**
|
|
@@ -73644,18 +73614,18 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
73644
73614
|
*/
|
|
73645
73615
|
export interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest {
|
|
73646
73616
|
/**
|
|
73647
|
-
*
|
|
73648
|
-
* @type {
|
|
73617
|
+
* The desired configurations for Access Request Recommender for the tenant.
|
|
73618
|
+
* @type {AccessRequestRecommendationConfigDtoV2024}
|
|
73649
73619
|
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
73650
73620
|
*/
|
|
73651
|
-
readonly
|
|
73621
|
+
readonly accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024
|
|
73652
73622
|
|
|
73653
73623
|
/**
|
|
73654
|
-
*
|
|
73655
|
-
* @type {
|
|
73624
|
+
* Use this header to enable this experimental API.
|
|
73625
|
+
* @type {string}
|
|
73656
73626
|
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
73657
73627
|
*/
|
|
73658
|
-
readonly
|
|
73628
|
+
readonly xSailPointExperimental?: string
|
|
73659
73629
|
}
|
|
73660
73630
|
|
|
73661
73631
|
/**
|
|
@@ -73745,8 +73715,8 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
73745
73715
|
* @throws {RequiredError}
|
|
73746
73716
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
73747
73717
|
*/
|
|
73748
|
-
public getAccessRequestRecommendationsIgnoredItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
73749
|
-
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).getAccessRequestRecommendationsIgnoredItems(requestParameters.
|
|
73718
|
+
public getAccessRequestRecommendationsIgnoredItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
73719
|
+
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).getAccessRequestRecommendationsIgnoredItems(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
73750
73720
|
}
|
|
73751
73721
|
|
|
73752
73722
|
/**
|
|
@@ -73757,8 +73727,8 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
73757
73727
|
* @throws {RequiredError}
|
|
73758
73728
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
73759
73729
|
*/
|
|
73760
|
-
public getAccessRequestRecommendationsRequestedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
73761
|
-
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).getAccessRequestRecommendationsRequestedItems(requestParameters.
|
|
73730
|
+
public getAccessRequestRecommendationsRequestedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
73731
|
+
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).getAccessRequestRecommendationsRequestedItems(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
73762
73732
|
}
|
|
73763
73733
|
|
|
73764
73734
|
/**
|
|
@@ -73769,8 +73739,8 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
73769
73739
|
* @throws {RequiredError}
|
|
73770
73740
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
73771
73741
|
*/
|
|
73772
|
-
public getAccessRequestRecommendationsViewedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
73773
|
-
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).getAccessRequestRecommendationsViewedItems(requestParameters.
|
|
73742
|
+
public getAccessRequestRecommendationsViewedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
73743
|
+
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).getAccessRequestRecommendationsViewedItems(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
73774
73744
|
}
|
|
73775
73745
|
|
|
73776
73746
|
/**
|
|
@@ -73782,7 +73752,7 @@ export class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
73782
73752
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
73783
73753
|
*/
|
|
73784
73754
|
public setAccessRequestRecommendationsConfig(requestParameters: IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
73785
|
-
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).setAccessRequestRecommendationsConfig(requestParameters.
|
|
73755
|
+
return IAIAccessRequestRecommendationsV2024ApiFp(this.configuration).setAccessRequestRecommendationsConfig(requestParameters.accessRequestRecommendationConfigDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
73786
73756
|
}
|
|
73787
73757
|
}
|
|
73788
73758
|
|
|
@@ -73797,20 +73767,18 @@ export const IAICommonAccessV2024ApiAxiosParamCreator = function (configuration?
|
|
|
73797
73767
|
/**
|
|
73798
73768
|
* 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
|
|
73799
73769
|
* @summary Create common access items
|
|
73800
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73801
73770
|
* @param {CommonAccessItemRequestV2024} commonAccessItemRequestV2024
|
|
73771
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73802
73772
|
* @param {*} [axiosOptions] Override http request option.
|
|
73803
73773
|
* @throws {RequiredError}
|
|
73804
73774
|
*/
|
|
73805
|
-
createCommonAccess: async (
|
|
73775
|
+
createCommonAccess: async (commonAccessItemRequestV2024: CommonAccessItemRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
73776
|
+
// verify required parameter 'commonAccessItemRequestV2024' is not null or undefined
|
|
73777
|
+
assertParamExists('createCommonAccess', 'commonAccessItemRequestV2024', commonAccessItemRequestV2024)
|
|
73806
73778
|
if (xSailPointExperimental === undefined) {
|
|
73807
73779
|
xSailPointExperimental = 'true';
|
|
73808
73780
|
}
|
|
73809
73781
|
|
|
73810
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
73811
|
-
assertParamExists('createCommonAccess', 'xSailPointExperimental', xSailPointExperimental)
|
|
73812
|
-
// verify required parameter 'commonAccessItemRequestV2024' is not null or undefined
|
|
73813
|
-
assertParamExists('createCommonAccess', 'commonAccessItemRequestV2024', commonAccessItemRequestV2024)
|
|
73814
73782
|
const localVarPath = `/common-access`;
|
|
73815
73783
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
73816
73784
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -73984,13 +73952,13 @@ export const IAICommonAccessV2024ApiFp = function(configuration?: Configuration)
|
|
|
73984
73952
|
/**
|
|
73985
73953
|
* 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
|
|
73986
73954
|
* @summary Create common access items
|
|
73987
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
73988
73955
|
* @param {CommonAccessItemRequestV2024} commonAccessItemRequestV2024
|
|
73956
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
73989
73957
|
* @param {*} [axiosOptions] Override http request option.
|
|
73990
73958
|
* @throws {RequiredError}
|
|
73991
73959
|
*/
|
|
73992
|
-
async createCommonAccess(
|
|
73993
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createCommonAccess(
|
|
73960
|
+
async createCommonAccess(commonAccessItemRequestV2024: CommonAccessItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommonAccessItemResponseV2024>> {
|
|
73961
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createCommonAccess(commonAccessItemRequestV2024, xSailPointExperimental, axiosOptions);
|
|
73994
73962
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
73995
73963
|
const localVarOperationServerBasePath = operationServerMap['IAICommonAccessV2024Api.createCommonAccess']?.[localVarOperationServerIndex]?.url;
|
|
73996
73964
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -74045,7 +74013,7 @@ export const IAICommonAccessV2024ApiFactory = function (configuration?: Configur
|
|
|
74045
74013
|
* @throws {RequiredError}
|
|
74046
74014
|
*/
|
|
74047
74015
|
createCommonAccess(requestParameters: IAICommonAccessV2024ApiCreateCommonAccessRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<CommonAccessItemResponseV2024> {
|
|
74048
|
-
return localVarFp.createCommonAccess(requestParameters.
|
|
74016
|
+
return localVarFp.createCommonAccess(requestParameters.commonAccessItemRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
74049
74017
|
},
|
|
74050
74018
|
/**
|
|
74051
74019
|
* 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
|
|
@@ -74077,18 +74045,18 @@ export const IAICommonAccessV2024ApiFactory = function (configuration?: Configur
|
|
|
74077
74045
|
*/
|
|
74078
74046
|
export interface IAICommonAccessV2024ApiCreateCommonAccessRequest {
|
|
74079
74047
|
/**
|
|
74080
|
-
*
|
|
74081
|
-
* @type {
|
|
74048
|
+
*
|
|
74049
|
+
* @type {CommonAccessItemRequestV2024}
|
|
74082
74050
|
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
74083
74051
|
*/
|
|
74084
|
-
readonly
|
|
74052
|
+
readonly commonAccessItemRequestV2024: CommonAccessItemRequestV2024
|
|
74085
74053
|
|
|
74086
74054
|
/**
|
|
74087
|
-
*
|
|
74088
|
-
* @type {
|
|
74055
|
+
* Use this header to enable this experimental API.
|
|
74056
|
+
* @type {string}
|
|
74089
74057
|
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
74090
74058
|
*/
|
|
74091
|
-
readonly
|
|
74059
|
+
readonly xSailPointExperimental?: string
|
|
74092
74060
|
}
|
|
74093
74061
|
|
|
74094
74062
|
/**
|
|
@@ -74177,7 +74145,7 @@ export class IAICommonAccessV2024Api extends BaseAPI {
|
|
|
74177
74145
|
* @memberof IAICommonAccessV2024Api
|
|
74178
74146
|
*/
|
|
74179
74147
|
public createCommonAccess(requestParameters: IAICommonAccessV2024ApiCreateCommonAccessRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
74180
|
-
return IAICommonAccessV2024ApiFp(this.configuration).createCommonAccess(requestParameters.
|
|
74148
|
+
return IAICommonAccessV2024ApiFp(this.configuration).createCommonAccess(requestParameters.commonAccessItemRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
74181
74149
|
}
|
|
74182
74150
|
|
|
74183
74151
|
/**
|
|
@@ -75859,20 +75827,18 @@ export const IAIRecommendationsV2024ApiAxiosParamCreator = function (configurati
|
|
|
75859
75827
|
/**
|
|
75860
75828
|
* Updates configuration attributes used by certification recommendations.
|
|
75861
75829
|
* @summary Update certification recommendation config values
|
|
75862
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75863
75830
|
* @param {RecommendationConfigDtoV2024} recommendationConfigDtoV2024
|
|
75831
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75864
75832
|
* @param {*} [axiosOptions] Override http request option.
|
|
75865
75833
|
* @throws {RequiredError}
|
|
75866
75834
|
*/
|
|
75867
|
-
updateRecommendationsConfig: async (
|
|
75835
|
+
updateRecommendationsConfig: async (recommendationConfigDtoV2024: RecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
75836
|
+
// verify required parameter 'recommendationConfigDtoV2024' is not null or undefined
|
|
75837
|
+
assertParamExists('updateRecommendationsConfig', 'recommendationConfigDtoV2024', recommendationConfigDtoV2024)
|
|
75868
75838
|
if (xSailPointExperimental === undefined) {
|
|
75869
75839
|
xSailPointExperimental = 'true';
|
|
75870
75840
|
}
|
|
75871
75841
|
|
|
75872
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
75873
|
-
assertParamExists('updateRecommendationsConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
75874
|
-
// verify required parameter 'recommendationConfigDtoV2024' is not null or undefined
|
|
75875
|
-
assertParamExists('updateRecommendationsConfig', 'recommendationConfigDtoV2024', recommendationConfigDtoV2024)
|
|
75876
75842
|
const localVarPath = `/recommendations/config`;
|
|
75877
75843
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
75878
75844
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -75950,13 +75916,13 @@ export const IAIRecommendationsV2024ApiFp = function(configuration?: Configurati
|
|
|
75950
75916
|
/**
|
|
75951
75917
|
* Updates configuration attributes used by certification recommendations.
|
|
75952
75918
|
* @summary Update certification recommendation config values
|
|
75953
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75954
75919
|
* @param {RecommendationConfigDtoV2024} recommendationConfigDtoV2024
|
|
75920
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75955
75921
|
* @param {*} [axiosOptions] Override http request option.
|
|
75956
75922
|
* @throws {RequiredError}
|
|
75957
75923
|
*/
|
|
75958
|
-
async updateRecommendationsConfig(
|
|
75959
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateRecommendationsConfig(
|
|
75924
|
+
async updateRecommendationsConfig(recommendationConfigDtoV2024: RecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecommendationConfigDtoV2024>> {
|
|
75925
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateRecommendationsConfig(recommendationConfigDtoV2024, xSailPointExperimental, axiosOptions);
|
|
75960
75926
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
75961
75927
|
const localVarOperationServerBasePath = operationServerMap['IAIRecommendationsV2024Api.updateRecommendationsConfig']?.[localVarOperationServerIndex]?.url;
|
|
75962
75928
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -75999,7 +75965,7 @@ export const IAIRecommendationsV2024ApiFactory = function (configuration?: Confi
|
|
|
75999
75965
|
* @throws {RequiredError}
|
|
76000
75966
|
*/
|
|
76001
75967
|
updateRecommendationsConfig(requestParameters: IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RecommendationConfigDtoV2024> {
|
|
76002
|
-
return localVarFp.updateRecommendationsConfig(requestParameters.
|
|
75968
|
+
return localVarFp.updateRecommendationsConfig(requestParameters.recommendationConfigDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
76003
75969
|
},
|
|
76004
75970
|
};
|
|
76005
75971
|
};
|
|
@@ -76046,18 +76012,18 @@ export interface IAIRecommendationsV2024ApiGetRecommendationsConfigRequest {
|
|
|
76046
76012
|
*/
|
|
76047
76013
|
export interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest {
|
|
76048
76014
|
/**
|
|
76049
|
-
*
|
|
76050
|
-
* @type {
|
|
76015
|
+
*
|
|
76016
|
+
* @type {RecommendationConfigDtoV2024}
|
|
76051
76017
|
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
76052
76018
|
*/
|
|
76053
|
-
readonly
|
|
76019
|
+
readonly recommendationConfigDtoV2024: RecommendationConfigDtoV2024
|
|
76054
76020
|
|
|
76055
76021
|
/**
|
|
76056
|
-
*
|
|
76057
|
-
* @type {
|
|
76022
|
+
* Use this header to enable this experimental API.
|
|
76023
|
+
* @type {string}
|
|
76058
76024
|
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
76059
76025
|
*/
|
|
76060
|
-
readonly
|
|
76026
|
+
readonly xSailPointExperimental?: string
|
|
76061
76027
|
}
|
|
76062
76028
|
|
|
76063
76029
|
/**
|
|
@@ -76100,7 +76066,7 @@ export class IAIRecommendationsV2024Api extends BaseAPI {
|
|
|
76100
76066
|
* @memberof IAIRecommendationsV2024Api
|
|
76101
76067
|
*/
|
|
76102
76068
|
public updateRecommendationsConfig(requestParameters: IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
76103
|
-
return IAIRecommendationsV2024ApiFp(this.configuration).updateRecommendationsConfig(requestParameters.
|
|
76069
|
+
return IAIRecommendationsV2024ApiFp(this.configuration).updateRecommendationsConfig(requestParameters.recommendationConfigDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
76104
76070
|
}
|
|
76105
76071
|
}
|
|
76106
76072
|
|
|
@@ -77237,19 +77203,17 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77237
77203
|
* The method retrieves a role mining session.
|
|
77238
77204
|
* @summary Get a role mining session
|
|
77239
77205
|
* @param {string} sessionId The role mining session id to be retrieved.
|
|
77240
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77206
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77241
77207
|
* @param {*} [axiosOptions] Override http request option.
|
|
77242
77208
|
* @throws {RequiredError}
|
|
77243
77209
|
*/
|
|
77244
|
-
getRoleMiningSession: async (sessionId: string, xSailPointExperimental
|
|
77210
|
+
getRoleMiningSession: async (sessionId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
77245
77211
|
// verify required parameter 'sessionId' is not null or undefined
|
|
77246
77212
|
assertParamExists('getRoleMiningSession', 'sessionId', sessionId)
|
|
77247
77213
|
if (xSailPointExperimental === undefined) {
|
|
77248
77214
|
xSailPointExperimental = 'true';
|
|
77249
77215
|
}
|
|
77250
77216
|
|
|
77251
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
77252
|
-
assertParamExists('getRoleMiningSession', 'xSailPointExperimental', xSailPointExperimental)
|
|
77253
77217
|
const localVarPath = `/role-mining-sessions/{sessionId}`
|
|
77254
77218
|
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)));
|
|
77255
77219
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -77338,22 +77302,20 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77338
77302
|
/**
|
|
77339
77303
|
* Returns all role mining sessions that match the query parameters
|
|
77340
77304
|
* @summary Retrieves all role mining sessions
|
|
77341
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77342
77305
|
* @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*
|
|
77343
77306
|
* @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**
|
|
77344
77307
|
* @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.
|
|
77345
77308
|
* @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.
|
|
77346
77309
|
* @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.
|
|
77310
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77347
77311
|
* @param {*} [axiosOptions] Override http request option.
|
|
77348
77312
|
* @throws {RequiredError}
|
|
77349
77313
|
*/
|
|
77350
|
-
getRoleMiningSessions: async (
|
|
77314
|
+
getRoleMiningSessions: async (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
77351
77315
|
if (xSailPointExperimental === undefined) {
|
|
77352
77316
|
xSailPointExperimental = 'true';
|
|
77353
77317
|
}
|
|
77354
77318
|
|
|
77355
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
77356
|
-
assertParamExists('getRoleMiningSessions', 'xSailPointExperimental', xSailPointExperimental)
|
|
77357
77319
|
const localVarPath = `/role-mining-sessions`;
|
|
77358
77320
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
77359
77321
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -77479,24 +77441,22 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77479
77441
|
* @summary Update a potential role
|
|
77480
77442
|
* @param {string} sessionId The role mining session id
|
|
77481
77443
|
* @param {string} potentialRoleId The potential role summary id
|
|
77482
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77483
77444
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
77445
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77484
77446
|
* @param {*} [axiosOptions] Override http request option.
|
|
77485
77447
|
* @throws {RequiredError}
|
|
77486
77448
|
*/
|
|
77487
|
-
patchPotentialRole: async (sessionId: string, potentialRoleId: string,
|
|
77449
|
+
patchPotentialRole: async (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
77488
77450
|
// verify required parameter 'sessionId' is not null or undefined
|
|
77489
77451
|
assertParamExists('patchPotentialRole', 'sessionId', sessionId)
|
|
77490
77452
|
// verify required parameter 'potentialRoleId' is not null or undefined
|
|
77491
77453
|
assertParamExists('patchPotentialRole', 'potentialRoleId', potentialRoleId)
|
|
77454
|
+
// verify required parameter 'patchPotentialRoleRequestInnerV2024' is not null or undefined
|
|
77455
|
+
assertParamExists('patchPotentialRole', 'patchPotentialRoleRequestInnerV2024', patchPotentialRoleRequestInnerV2024)
|
|
77492
77456
|
if (xSailPointExperimental === undefined) {
|
|
77493
77457
|
xSailPointExperimental = 'true';
|
|
77494
77458
|
}
|
|
77495
77459
|
|
|
77496
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
77497
|
-
assertParamExists('patchPotentialRole', 'xSailPointExperimental', xSailPointExperimental)
|
|
77498
|
-
// verify required parameter 'patchPotentialRoleRequestInnerV2024' is not null or undefined
|
|
77499
|
-
assertParamExists('patchPotentialRole', 'patchPotentialRoleRequestInnerV2024', patchPotentialRoleRequestInnerV2024)
|
|
77500
77460
|
const localVarPath = `/role-mining-sessions/{sessionId}/potential-role-summaries/{potentialRoleId}`
|
|
77501
77461
|
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
77502
77462
|
.replace(`{${"potentialRoleId"}}`, encodeURIComponent(String(potentialRoleId)));
|
|
@@ -77541,24 +77501,22 @@ export const IAIRoleMiningV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
77541
77501
|
* @summary Update a potential role
|
|
77542
77502
|
* @param {string} sessionId The role mining session id
|
|
77543
77503
|
* @param {string} potentialRoleId The potential role summary id
|
|
77544
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77545
77504
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
77505
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77546
77506
|
* @param {*} [axiosOptions] Override http request option.
|
|
77547
77507
|
* @throws {RequiredError}
|
|
77548
77508
|
*/
|
|
77549
|
-
patchPotentialRole_1: async (sessionId: string, potentialRoleId: string,
|
|
77509
|
+
patchPotentialRole_1: async (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
77550
77510
|
// verify required parameter 'sessionId' is not null or undefined
|
|
77551
77511
|
assertParamExists('patchPotentialRole_1', 'sessionId', sessionId)
|
|
77552
77512
|
// verify required parameter 'potentialRoleId' is not null or undefined
|
|
77553
77513
|
assertParamExists('patchPotentialRole_1', 'potentialRoleId', potentialRoleId)
|
|
77514
|
+
// verify required parameter 'patchPotentialRoleRequestInnerV2024' is not null or undefined
|
|
77515
|
+
assertParamExists('patchPotentialRole_1', 'patchPotentialRoleRequestInnerV2024', patchPotentialRoleRequestInnerV2024)
|
|
77554
77516
|
if (xSailPointExperimental === undefined) {
|
|
77555
77517
|
xSailPointExperimental = 'true';
|
|
77556
77518
|
}
|
|
77557
77519
|
|
|
77558
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
77559
|
-
assertParamExists('patchPotentialRole_1', 'xSailPointExperimental', xSailPointExperimental)
|
|
77560
|
-
// verify required parameter 'patchPotentialRoleRequestInnerV2024' is not null or undefined
|
|
77561
|
-
assertParamExists('patchPotentialRole_1', 'patchPotentialRoleRequestInnerV2024', patchPotentialRoleRequestInnerV2024)
|
|
77562
77520
|
const localVarPath = `/role-mining-potential-roles/{potentialRoleId}`
|
|
77563
77521
|
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
77564
77522
|
.replace(`{${"potentialRoleId"}}`, encodeURIComponent(String(potentialRoleId)));
|
|
@@ -78023,11 +77981,11 @@ export const IAIRoleMiningV2024ApiFp = function(configuration?: Configuration) {
|
|
|
78023
77981
|
* The method retrieves a role mining session.
|
|
78024
77982
|
* @summary Get a role mining session
|
|
78025
77983
|
* @param {string} sessionId The role mining session id to be retrieved.
|
|
78026
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77984
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78027
77985
|
* @param {*} [axiosOptions] Override http request option.
|
|
78028
77986
|
* @throws {RequiredError}
|
|
78029
77987
|
*/
|
|
78030
|
-
async getRoleMiningSession(sessionId: string, xSailPointExperimental
|
|
77988
|
+
async getRoleMiningSession(sessionId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleMiningSessionResponseV2024>> {
|
|
78031
77989
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleMiningSession(sessionId, xSailPointExperimental, axiosOptions);
|
|
78032
77990
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
78033
77991
|
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2024Api.getRoleMiningSession']?.[localVarOperationServerIndex]?.url;
|
|
@@ -78050,17 +78008,17 @@ export const IAIRoleMiningV2024ApiFp = function(configuration?: Configuration) {
|
|
|
78050
78008
|
/**
|
|
78051
78009
|
* Returns all role mining sessions that match the query parameters
|
|
78052
78010
|
* @summary Retrieves all role mining sessions
|
|
78053
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78054
78011
|
* @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*
|
|
78055
78012
|
* @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**
|
|
78056
78013
|
* @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.
|
|
78057
78014
|
* @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.
|
|
78058
78015
|
* @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.
|
|
78016
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78059
78017
|
* @param {*} [axiosOptions] Override http request option.
|
|
78060
78018
|
* @throws {RequiredError}
|
|
78061
78019
|
*/
|
|
78062
|
-
async getRoleMiningSessions(
|
|
78063
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleMiningSessions(
|
|
78020
|
+
async getRoleMiningSessions(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleMiningSessionDtoV2024>>> {
|
|
78021
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleMiningSessions(filters, sorters, offset, limit, count, xSailPointExperimental, axiosOptions);
|
|
78064
78022
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
78065
78023
|
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2024Api.getRoleMiningSessions']?.[localVarOperationServerIndex]?.url;
|
|
78066
78024
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -78087,13 +78045,13 @@ export const IAIRoleMiningV2024ApiFp = function(configuration?: Configuration) {
|
|
|
78087
78045
|
* @summary Update a potential role
|
|
78088
78046
|
* @param {string} sessionId The role mining session id
|
|
78089
78047
|
* @param {string} potentialRoleId The potential role summary id
|
|
78090
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78091
78048
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
78049
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78092
78050
|
* @param {*} [axiosOptions] Override http request option.
|
|
78093
78051
|
* @throws {RequiredError}
|
|
78094
78052
|
*/
|
|
78095
|
-
async patchPotentialRole(sessionId: string, potentialRoleId: string,
|
|
78096
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole(sessionId, potentialRoleId,
|
|
78053
|
+
async patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
78054
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole(sessionId, potentialRoleId, patchPotentialRoleRequestInnerV2024, xSailPointExperimental, axiosOptions);
|
|
78097
78055
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
78098
78056
|
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2024Api.patchPotentialRole']?.[localVarOperationServerIndex]?.url;
|
|
78099
78057
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -78103,13 +78061,13 @@ export const IAIRoleMiningV2024ApiFp = function(configuration?: Configuration) {
|
|
|
78103
78061
|
* @summary Update a potential role
|
|
78104
78062
|
* @param {string} sessionId The role mining session id
|
|
78105
78063
|
* @param {string} potentialRoleId The potential role summary id
|
|
78106
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78107
78064
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
78065
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78108
78066
|
* @param {*} [axiosOptions] Override http request option.
|
|
78109
78067
|
* @throws {RequiredError}
|
|
78110
78068
|
*/
|
|
78111
|
-
async patchPotentialRole_1(sessionId: string, potentialRoleId: string,
|
|
78112
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole_1(sessionId, potentialRoleId,
|
|
78069
|
+
async patchPotentialRole_1(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
78070
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole_1(sessionId, potentialRoleId, patchPotentialRoleRequestInnerV2024, xSailPointExperimental, axiosOptions);
|
|
78113
78071
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
78114
78072
|
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2024Api.patchPotentialRole_1']?.[localVarOperationServerIndex]?.url;
|
|
78115
78073
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -78352,8 +78310,8 @@ export const IAIRoleMiningV2024ApiFactory = function (configuration?: Configurat
|
|
|
78352
78310
|
* @param {*} [axiosOptions] Override http request option.
|
|
78353
78311
|
* @throws {RequiredError}
|
|
78354
78312
|
*/
|
|
78355
|
-
getRoleMiningSessions(requestParameters: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleMiningSessionDtoV2024>> {
|
|
78356
|
-
return localVarFp.getRoleMiningSessions(requestParameters.
|
|
78313
|
+
getRoleMiningSessions(requestParameters: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleMiningSessionDtoV2024>> {
|
|
78314
|
+
return localVarFp.getRoleMiningSessions(requestParameters.filters, requestParameters.sorters, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
78357
78315
|
},
|
|
78358
78316
|
/**
|
|
78359
78317
|
* This method returns all saved potential roles (draft roles).
|
|
@@ -78373,7 +78331,7 @@ export const IAIRoleMiningV2024ApiFactory = function (configuration?: Configurat
|
|
|
78373
78331
|
* @throws {RequiredError}
|
|
78374
78332
|
*/
|
|
78375
78333
|
patchPotentialRole(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
78376
|
-
return localVarFp.patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
78334
|
+
return localVarFp.patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
78377
78335
|
},
|
|
78378
78336
|
/**
|
|
78379
78337
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
@@ -78383,7 +78341,7 @@ export const IAIRoleMiningV2024ApiFactory = function (configuration?: Configurat
|
|
|
78383
78341
|
* @throws {RequiredError}
|
|
78384
78342
|
*/
|
|
78385
78343
|
patchPotentialRole_1(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRole0Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
78386
|
-
return localVarFp.patchPotentialRole_1(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
78344
|
+
return localVarFp.patchPotentialRole_1(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
78387
78345
|
},
|
|
78388
78346
|
/**
|
|
78389
78347
|
* 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.
|
|
@@ -79182,7 +79140,7 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionRequest {
|
|
|
79182
79140
|
* @type {string}
|
|
79183
79141
|
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSession
|
|
79184
79142
|
*/
|
|
79185
|
-
readonly xSailPointExperimental
|
|
79143
|
+
readonly xSailPointExperimental?: string
|
|
79186
79144
|
}
|
|
79187
79145
|
|
|
79188
79146
|
/**
|
|
@@ -79212,13 +79170,6 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionStatusRequest {
|
|
|
79212
79170
|
* @interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest
|
|
79213
79171
|
*/
|
|
79214
79172
|
export interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest {
|
|
79215
|
-
/**
|
|
79216
|
-
* Use this header to enable this experimental API.
|
|
79217
|
-
* @type {string}
|
|
79218
|
-
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
79219
|
-
*/
|
|
79220
|
-
readonly xSailPointExperimental: string
|
|
79221
|
-
|
|
79222
79173
|
/**
|
|
79223
79174
|
* 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*
|
|
79224
79175
|
* @type {string}
|
|
@@ -79253,6 +79204,13 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest {
|
|
|
79253
79204
|
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
79254
79205
|
*/
|
|
79255
79206
|
readonly count?: boolean
|
|
79207
|
+
|
|
79208
|
+
/**
|
|
79209
|
+
* Use this header to enable this experimental API.
|
|
79210
|
+
* @type {string}
|
|
79211
|
+
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
79212
|
+
*/
|
|
79213
|
+
readonly xSailPointExperimental?: string
|
|
79256
79214
|
}
|
|
79257
79215
|
|
|
79258
79216
|
/**
|
|
@@ -79318,18 +79276,18 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRoleRequest {
|
|
|
79318
79276
|
readonly potentialRoleId: string
|
|
79319
79277
|
|
|
79320
79278
|
/**
|
|
79321
|
-
*
|
|
79322
|
-
* @type {
|
|
79279
|
+
*
|
|
79280
|
+
* @type {Array<PatchPotentialRoleRequestInnerV2024>}
|
|
79323
79281
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
79324
79282
|
*/
|
|
79325
|
-
readonly
|
|
79283
|
+
readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>
|
|
79326
79284
|
|
|
79327
79285
|
/**
|
|
79328
|
-
*
|
|
79329
|
-
* @type {
|
|
79286
|
+
* Use this header to enable this experimental API.
|
|
79287
|
+
* @type {string}
|
|
79330
79288
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
79331
79289
|
*/
|
|
79332
|
-
readonly
|
|
79290
|
+
readonly xSailPointExperimental?: string
|
|
79333
79291
|
}
|
|
79334
79292
|
|
|
79335
79293
|
/**
|
|
@@ -79353,18 +79311,18 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRole0Request {
|
|
|
79353
79311
|
readonly potentialRoleId: string
|
|
79354
79312
|
|
|
79355
79313
|
/**
|
|
79356
|
-
*
|
|
79357
|
-
* @type {
|
|
79314
|
+
*
|
|
79315
|
+
* @type {Array<PatchPotentialRoleRequestInnerV2024>}
|
|
79358
79316
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
79359
79317
|
*/
|
|
79360
|
-
readonly
|
|
79318
|
+
readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>
|
|
79361
79319
|
|
|
79362
79320
|
/**
|
|
79363
|
-
*
|
|
79364
|
-
* @type {
|
|
79321
|
+
* Use this header to enable this experimental API.
|
|
79322
|
+
* @type {string}
|
|
79365
79323
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
79366
79324
|
*/
|
|
79367
|
-
readonly
|
|
79325
|
+
readonly xSailPointExperimental?: string
|
|
79368
79326
|
}
|
|
79369
79327
|
|
|
79370
79328
|
/**
|
|
@@ -79673,8 +79631,8 @@ export class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
79673
79631
|
* @throws {RequiredError}
|
|
79674
79632
|
* @memberof IAIRoleMiningV2024Api
|
|
79675
79633
|
*/
|
|
79676
|
-
public getRoleMiningSessions(requestParameters: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
79677
|
-
return IAIRoleMiningV2024ApiFp(this.configuration).getRoleMiningSessions(requestParameters.
|
|
79634
|
+
public getRoleMiningSessions(requestParameters: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
79635
|
+
return IAIRoleMiningV2024ApiFp(this.configuration).getRoleMiningSessions(requestParameters.filters, requestParameters.sorters, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
79678
79636
|
}
|
|
79679
79637
|
|
|
79680
79638
|
/**
|
|
@@ -79698,7 +79656,7 @@ export class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
79698
79656
|
* @memberof IAIRoleMiningV2024Api
|
|
79699
79657
|
*/
|
|
79700
79658
|
public patchPotentialRole(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
79701
|
-
return IAIRoleMiningV2024ApiFp(this.configuration).patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
79659
|
+
return IAIRoleMiningV2024ApiFp(this.configuration).patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
79702
79660
|
}
|
|
79703
79661
|
|
|
79704
79662
|
/**
|
|
@@ -79710,7 +79668,7 @@ export class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
79710
79668
|
* @memberof IAIRoleMiningV2024Api
|
|
79711
79669
|
*/
|
|
79712
79670
|
public patchPotentialRole_1(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRole0Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
79713
|
-
return IAIRoleMiningV2024ApiFp(this.configuration).patchPotentialRole_1(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
79671
|
+
return IAIRoleMiningV2024ApiFp(this.configuration).patchPotentialRole_1(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
79714
79672
|
}
|
|
79715
79673
|
|
|
79716
79674
|
/**
|
|
@@ -79751,11 +79709,11 @@ export const IconsV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
79751
79709
|
* @summary Delete an icon
|
|
79752
79710
|
* @param {DeleteIconObjectTypeV2024} objectType Object type. Available options [\'application\']
|
|
79753
79711
|
* @param {string} objectId Object id.
|
|
79754
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79712
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79755
79713
|
* @param {*} [axiosOptions] Override http request option.
|
|
79756
79714
|
* @throws {RequiredError}
|
|
79757
79715
|
*/
|
|
79758
|
-
deleteIcon: async (objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental
|
|
79716
|
+
deleteIcon: async (objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
79759
79717
|
// verify required parameter 'objectType' is not null or undefined
|
|
79760
79718
|
assertParamExists('deleteIcon', 'objectType', objectType)
|
|
79761
79719
|
// verify required parameter 'objectId' is not null or undefined
|
|
@@ -79764,8 +79722,6 @@ export const IconsV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
79764
79722
|
xSailPointExperimental = 'true';
|
|
79765
79723
|
}
|
|
79766
79724
|
|
|
79767
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
79768
|
-
assertParamExists('deleteIcon', 'xSailPointExperimental', xSailPointExperimental)
|
|
79769
79725
|
const localVarPath = `/icons/{objectType}/{objectId}`
|
|
79770
79726
|
.replace(`{${"objectType"}}`, encodeURIComponent(String(objectType)))
|
|
79771
79727
|
.replace(`{${"objectId"}}`, encodeURIComponent(String(objectId)));
|
|
@@ -79882,11 +79838,11 @@ export const IconsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
79882
79838
|
* @summary Delete an icon
|
|
79883
79839
|
* @param {DeleteIconObjectTypeV2024} objectType Object type. Available options [\'application\']
|
|
79884
79840
|
* @param {string} objectId Object id.
|
|
79885
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79841
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79886
79842
|
* @param {*} [axiosOptions] Override http request option.
|
|
79887
79843
|
* @throws {RequiredError}
|
|
79888
79844
|
*/
|
|
79889
|
-
async deleteIcon(objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental
|
|
79845
|
+
async deleteIcon(objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
79890
79846
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIcon(objectType, objectId, xSailPointExperimental, axiosOptions);
|
|
79891
79847
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
79892
79848
|
const localVarOperationServerBasePath = operationServerMap['IconsV2024Api.deleteIcon']?.[localVarOperationServerIndex]?.url;
|
|
@@ -79966,7 +79922,7 @@ export interface IconsV2024ApiDeleteIconRequest {
|
|
|
79966
79922
|
* @type {string}
|
|
79967
79923
|
* @memberof IconsV2024ApiDeleteIcon
|
|
79968
79924
|
*/
|
|
79969
|
-
readonly xSailPointExperimental
|
|
79925
|
+
readonly xSailPointExperimental?: string
|
|
79970
79926
|
}
|
|
79971
79927
|
|
|
79972
79928
|
/**
|
|
@@ -87015,22 +86971,20 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
87015
86971
|
* Use this API to update machine accounts details.
|
|
87016
86972
|
* @summary Update a machine account
|
|
87017
86973
|
* @param {string} id Machine Account ID.
|
|
87018
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87019
86974
|
* @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
|
|
86975
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87020
86976
|
* @param {*} [axiosOptions] Override http request option.
|
|
87021
86977
|
* @throws {RequiredError}
|
|
87022
86978
|
*/
|
|
87023
|
-
updateMachineAccount: async (id: string,
|
|
86979
|
+
updateMachineAccount: async (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87024
86980
|
// verify required parameter 'id' is not null or undefined
|
|
87025
86981
|
assertParamExists('updateMachineAccount', 'id', id)
|
|
86982
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
86983
|
+
assertParamExists('updateMachineAccount', 'requestBody', requestBody)
|
|
87026
86984
|
if (xSailPointExperimental === undefined) {
|
|
87027
86985
|
xSailPointExperimental = 'true';
|
|
87028
86986
|
}
|
|
87029
86987
|
|
|
87030
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
87031
|
-
assertParamExists('updateMachineAccount', 'xSailPointExperimental', xSailPointExperimental)
|
|
87032
|
-
// verify required parameter 'requestBody' is not null or undefined
|
|
87033
|
-
assertParamExists('updateMachineAccount', 'requestBody', requestBody)
|
|
87034
86988
|
const localVarPath = `/machine-accounts/{id}`
|
|
87035
86989
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87036
86990
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -87115,13 +87069,13 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
|
|
|
87115
87069
|
* Use this API to update machine accounts details.
|
|
87116
87070
|
* @summary Update a machine account
|
|
87117
87071
|
* @param {string} id Machine Account ID.
|
|
87118
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87119
87072
|
* @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
|
|
87073
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87120
87074
|
* @param {*} [axiosOptions] Override http request option.
|
|
87121
87075
|
* @throws {RequiredError}
|
|
87122
87076
|
*/
|
|
87123
|
-
async updateMachineAccount(id: string,
|
|
87124
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccount(id,
|
|
87077
|
+
async updateMachineAccount(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2024>> {
|
|
87078
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccount(id, requestBody, xSailPointExperimental, axiosOptions);
|
|
87125
87079
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87126
87080
|
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2024Api.updateMachineAccount']?.[localVarOperationServerIndex]?.url;
|
|
87127
87081
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -87164,7 +87118,7 @@ export const MachineAccountsV2024ApiFactory = function (configuration?: Configur
|
|
|
87164
87118
|
* @throws {RequiredError}
|
|
87165
87119
|
*/
|
|
87166
87120
|
updateMachineAccount(requestParameters: MachineAccountsV2024ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2024> {
|
|
87167
|
-
return localVarFp.updateMachineAccount(requestParameters.id, requestParameters.
|
|
87121
|
+
return localVarFp.updateMachineAccount(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
87168
87122
|
},
|
|
87169
87123
|
};
|
|
87170
87124
|
};
|
|
@@ -87253,18 +87207,18 @@ export interface MachineAccountsV2024ApiUpdateMachineAccountRequest {
|
|
|
87253
87207
|
readonly id: string
|
|
87254
87208
|
|
|
87255
87209
|
/**
|
|
87256
|
-
*
|
|
87257
|
-
* @type {
|
|
87210
|
+
* 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
|
|
87211
|
+
* @type {Array<object>}
|
|
87258
87212
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
87259
87213
|
*/
|
|
87260
|
-
readonly
|
|
87214
|
+
readonly requestBody: Array<object>
|
|
87261
87215
|
|
|
87262
87216
|
/**
|
|
87263
|
-
*
|
|
87264
|
-
* @type {
|
|
87217
|
+
* Use this header to enable this experimental API.
|
|
87218
|
+
* @type {string}
|
|
87265
87219
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
87266
87220
|
*/
|
|
87267
|
-
readonly
|
|
87221
|
+
readonly xSailPointExperimental?: string
|
|
87268
87222
|
}
|
|
87269
87223
|
|
|
87270
87224
|
/**
|
|
@@ -87307,7 +87261,7 @@ export class MachineAccountsV2024Api extends BaseAPI {
|
|
|
87307
87261
|
* @memberof MachineAccountsV2024Api
|
|
87308
87262
|
*/
|
|
87309
87263
|
public updateMachineAccount(requestParameters: MachineAccountsV2024ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87310
|
-
return MachineAccountsV2024ApiFp(this.configuration).updateMachineAccount(requestParameters.id, requestParameters.
|
|
87264
|
+
return MachineAccountsV2024ApiFp(this.configuration).updateMachineAccount(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87311
87265
|
}
|
|
87312
87266
|
}
|
|
87313
87267
|
|
|
@@ -87648,20 +87602,18 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
87648
87602
|
/**
|
|
87649
87603
|
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
87650
87604
|
* @summary Create machine identities
|
|
87651
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87652
87605
|
* @param {MachineIdentityV2024} machineIdentityV2024
|
|
87606
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87653
87607
|
* @param {*} [axiosOptions] Override http request option.
|
|
87654
87608
|
* @throws {RequiredError}
|
|
87655
87609
|
*/
|
|
87656
|
-
createMachineIdentity: async (
|
|
87610
|
+
createMachineIdentity: async (machineIdentityV2024: MachineIdentityV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87611
|
+
// verify required parameter 'machineIdentityV2024' is not null or undefined
|
|
87612
|
+
assertParamExists('createMachineIdentity', 'machineIdentityV2024', machineIdentityV2024)
|
|
87657
87613
|
if (xSailPointExperimental === undefined) {
|
|
87658
87614
|
xSailPointExperimental = 'true';
|
|
87659
87615
|
}
|
|
87660
87616
|
|
|
87661
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
87662
|
-
assertParamExists('createMachineIdentity', 'xSailPointExperimental', xSailPointExperimental)
|
|
87663
|
-
// verify required parameter 'machineIdentityV2024' is not null or undefined
|
|
87664
|
-
assertParamExists('createMachineIdentity', 'machineIdentityV2024', machineIdentityV2024)
|
|
87665
87617
|
const localVarPath = `/machine-identities`;
|
|
87666
87618
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87667
87619
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -87703,19 +87655,17 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
87703
87655
|
* The API returns successful response if the requested machine identity was deleted.
|
|
87704
87656
|
* @summary Delete machine identity
|
|
87705
87657
|
* @param {string} id Machine Identity ID
|
|
87706
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87658
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87707
87659
|
* @param {*} [axiosOptions] Override http request option.
|
|
87708
87660
|
* @throws {RequiredError}
|
|
87709
87661
|
*/
|
|
87710
|
-
deleteMachineIdentity: async (id: string, xSailPointExperimental
|
|
87662
|
+
deleteMachineIdentity: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87711
87663
|
// verify required parameter 'id' is not null or undefined
|
|
87712
87664
|
assertParamExists('deleteMachineIdentity', 'id', id)
|
|
87713
87665
|
if (xSailPointExperimental === undefined) {
|
|
87714
87666
|
xSailPointExperimental = 'true';
|
|
87715
87667
|
}
|
|
87716
87668
|
|
|
87717
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
87718
|
-
assertParamExists('deleteMachineIdentity', 'xSailPointExperimental', xSailPointExperimental)
|
|
87719
87669
|
const localVarPath = `/machine-identities/{id}`
|
|
87720
87670
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87721
87671
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -87876,22 +87826,20 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
87876
87826
|
* Use this API to update machine identity details.
|
|
87877
87827
|
* @summary Update a machine identity
|
|
87878
87828
|
* @param {string} id Machine Identity ID.
|
|
87879
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87880
87829
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
87830
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87881
87831
|
* @param {*} [axiosOptions] Override http request option.
|
|
87882
87832
|
* @throws {RequiredError}
|
|
87883
87833
|
*/
|
|
87884
|
-
updateMachineIdentity: async (id: string,
|
|
87834
|
+
updateMachineIdentity: async (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87885
87835
|
// verify required parameter 'id' is not null or undefined
|
|
87886
87836
|
assertParamExists('updateMachineIdentity', 'id', id)
|
|
87837
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
87838
|
+
assertParamExists('updateMachineIdentity', 'requestBody', requestBody)
|
|
87887
87839
|
if (xSailPointExperimental === undefined) {
|
|
87888
87840
|
xSailPointExperimental = 'true';
|
|
87889
87841
|
}
|
|
87890
87842
|
|
|
87891
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
87892
|
-
assertParamExists('updateMachineIdentity', 'xSailPointExperimental', xSailPointExperimental)
|
|
87893
|
-
// verify required parameter 'requestBody' is not null or undefined
|
|
87894
|
-
assertParamExists('updateMachineIdentity', 'requestBody', requestBody)
|
|
87895
87843
|
const localVarPath = `/machine-identities/{id}`
|
|
87896
87844
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87897
87845
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -87943,13 +87891,13 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
|
|
|
87943
87891
|
/**
|
|
87944
87892
|
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
87945
87893
|
* @summary Create machine identities
|
|
87946
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87947
87894
|
* @param {MachineIdentityV2024} machineIdentityV2024
|
|
87895
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87948
87896
|
* @param {*} [axiosOptions] Override http request option.
|
|
87949
87897
|
* @throws {RequiredError}
|
|
87950
87898
|
*/
|
|
87951
|
-
async createMachineIdentity(
|
|
87952
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineIdentity(
|
|
87899
|
+
async createMachineIdentity(machineIdentityV2024: MachineIdentityV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityV2024>> {
|
|
87900
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineIdentity(machineIdentityV2024, xSailPointExperimental, axiosOptions);
|
|
87953
87901
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87954
87902
|
const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2024Api.createMachineIdentity']?.[localVarOperationServerIndex]?.url;
|
|
87955
87903
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -87958,11 +87906,11 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
|
|
|
87958
87906
|
* The API returns successful response if the requested machine identity was deleted.
|
|
87959
87907
|
* @summary Delete machine identity
|
|
87960
87908
|
* @param {string} id Machine Identity ID
|
|
87961
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
87909
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87962
87910
|
* @param {*} [axiosOptions] Override http request option.
|
|
87963
87911
|
* @throws {RequiredError}
|
|
87964
87912
|
*/
|
|
87965
|
-
async deleteMachineIdentity(id: string, xSailPointExperimental
|
|
87913
|
+
async deleteMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
87966
87914
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineIdentity(id, xSailPointExperimental, axiosOptions);
|
|
87967
87915
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87968
87916
|
const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2024Api.deleteMachineIdentity']?.[localVarOperationServerIndex]?.url;
|
|
@@ -88004,13 +87952,13 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
|
|
|
88004
87952
|
* Use this API to update machine identity details.
|
|
88005
87953
|
* @summary Update a machine identity
|
|
88006
87954
|
* @param {string} id Machine Identity ID.
|
|
88007
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
88008
87955
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
87956
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
88009
87957
|
* @param {*} [axiosOptions] Override http request option.
|
|
88010
87958
|
* @throws {RequiredError}
|
|
88011
87959
|
*/
|
|
88012
|
-
async updateMachineIdentity(id: string,
|
|
88013
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineIdentity(id,
|
|
87960
|
+
async updateMachineIdentity(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityV2024>> {
|
|
87961
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineIdentity(id, requestBody, xSailPointExperimental, axiosOptions);
|
|
88014
87962
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
88015
87963
|
const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2024Api.updateMachineIdentity']?.[localVarOperationServerIndex]?.url;
|
|
88016
87964
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -88033,7 +87981,7 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
|
|
|
88033
87981
|
* @throws {RequiredError}
|
|
88034
87982
|
*/
|
|
88035
87983
|
createMachineIdentity(requestParameters: MachineIdentitiesV2024ApiCreateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityV2024> {
|
|
88036
|
-
return localVarFp.createMachineIdentity(requestParameters.
|
|
87984
|
+
return localVarFp.createMachineIdentity(requestParameters.machineIdentityV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
88037
87985
|
},
|
|
88038
87986
|
/**
|
|
88039
87987
|
* The API returns successful response if the requested machine identity was deleted.
|
|
@@ -88073,7 +88021,7 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
|
|
|
88073
88021
|
* @throws {RequiredError}
|
|
88074
88022
|
*/
|
|
88075
88023
|
updateMachineIdentity(requestParameters: MachineIdentitiesV2024ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityV2024> {
|
|
88076
|
-
return localVarFp.updateMachineIdentity(requestParameters.id, requestParameters.
|
|
88024
|
+
return localVarFp.updateMachineIdentity(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
88077
88025
|
},
|
|
88078
88026
|
};
|
|
88079
88027
|
};
|
|
@@ -88085,18 +88033,18 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
|
|
|
88085
88033
|
*/
|
|
88086
88034
|
export interface MachineIdentitiesV2024ApiCreateMachineIdentityRequest {
|
|
88087
88035
|
/**
|
|
88088
|
-
*
|
|
88089
|
-
* @type {
|
|
88036
|
+
*
|
|
88037
|
+
* @type {MachineIdentityV2024}
|
|
88090
88038
|
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
88091
88039
|
*/
|
|
88092
|
-
readonly
|
|
88040
|
+
readonly machineIdentityV2024: MachineIdentityV2024
|
|
88093
88041
|
|
|
88094
88042
|
/**
|
|
88095
|
-
*
|
|
88096
|
-
* @type {
|
|
88043
|
+
* Use this header to enable this experimental API.
|
|
88044
|
+
* @type {string}
|
|
88097
88045
|
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
88098
88046
|
*/
|
|
88099
|
-
readonly
|
|
88047
|
+
readonly xSailPointExperimental?: string
|
|
88100
88048
|
}
|
|
88101
88049
|
|
|
88102
88050
|
/**
|
|
@@ -88117,7 +88065,7 @@ export interface MachineIdentitiesV2024ApiDeleteMachineIdentityRequest {
|
|
|
88117
88065
|
* @type {string}
|
|
88118
88066
|
* @memberof MachineIdentitiesV2024ApiDeleteMachineIdentity
|
|
88119
88067
|
*/
|
|
88120
|
-
readonly xSailPointExperimental
|
|
88068
|
+
readonly xSailPointExperimental?: string
|
|
88121
88069
|
}
|
|
88122
88070
|
|
|
88123
88071
|
/**
|
|
@@ -88204,18 +88152,18 @@ export interface MachineIdentitiesV2024ApiUpdateMachineIdentityRequest {
|
|
|
88204
88152
|
readonly id: string
|
|
88205
88153
|
|
|
88206
88154
|
/**
|
|
88207
|
-
*
|
|
88208
|
-
* @type {
|
|
88155
|
+
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
88156
|
+
* @type {Array<object>}
|
|
88209
88157
|
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
88210
88158
|
*/
|
|
88211
|
-
readonly
|
|
88159
|
+
readonly requestBody: Array<object>
|
|
88212
88160
|
|
|
88213
88161
|
/**
|
|
88214
|
-
*
|
|
88215
|
-
* @type {
|
|
88162
|
+
* Use this header to enable this experimental API.
|
|
88163
|
+
* @type {string}
|
|
88216
88164
|
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
88217
88165
|
*/
|
|
88218
|
-
readonly
|
|
88166
|
+
readonly xSailPointExperimental?: string
|
|
88219
88167
|
}
|
|
88220
88168
|
|
|
88221
88169
|
/**
|
|
@@ -88234,7 +88182,7 @@ export class MachineIdentitiesV2024Api extends BaseAPI {
|
|
|
88234
88182
|
* @memberof MachineIdentitiesV2024Api
|
|
88235
88183
|
*/
|
|
88236
88184
|
public createMachineIdentity(requestParameters: MachineIdentitiesV2024ApiCreateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
88237
|
-
return MachineIdentitiesV2024ApiFp(this.configuration).createMachineIdentity(requestParameters.
|
|
88185
|
+
return MachineIdentitiesV2024ApiFp(this.configuration).createMachineIdentity(requestParameters.machineIdentityV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
88238
88186
|
}
|
|
88239
88187
|
|
|
88240
88188
|
/**
|
|
@@ -88282,7 +88230,7 @@ export class MachineIdentitiesV2024Api extends BaseAPI {
|
|
|
88282
88230
|
* @memberof MachineIdentitiesV2024Api
|
|
88283
88231
|
*/
|
|
88284
88232
|
public updateMachineIdentity(requestParameters: MachineIdentitiesV2024ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
88285
|
-
return MachineIdentitiesV2024ApiFp(this.configuration).updateMachineIdentity(requestParameters.id, requestParameters.
|
|
88233
|
+
return MachineIdentitiesV2024ApiFp(this.configuration).updateMachineIdentity(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
88286
88234
|
}
|
|
88287
88235
|
}
|
|
88288
88236
|
|
|
@@ -95178,20 +95126,18 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
95178
95126
|
/**
|
|
95179
95127
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
95180
95128
|
* @summary Verify domain address via dkim
|
|
95181
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
95182
95129
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
95130
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95183
95131
|
* @param {*} [axiosOptions] Override http request option.
|
|
95184
95132
|
* @throws {RequiredError}
|
|
95185
95133
|
*/
|
|
95186
|
-
createDomainDkim: async (
|
|
95134
|
+
createDomainDkim: async (domainAddressV2024: DomainAddressV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
95135
|
+
// verify required parameter 'domainAddressV2024' is not null or undefined
|
|
95136
|
+
assertParamExists('createDomainDkim', 'domainAddressV2024', domainAddressV2024)
|
|
95187
95137
|
if (xSailPointExperimental === undefined) {
|
|
95188
95138
|
xSailPointExperimental = 'true';
|
|
95189
95139
|
}
|
|
95190
95140
|
|
|
95191
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
95192
|
-
assertParamExists('createDomainDkim', 'xSailPointExperimental', xSailPointExperimental)
|
|
95193
|
-
// verify required parameter 'domainAddressV2024' is not null or undefined
|
|
95194
|
-
assertParamExists('createDomainDkim', 'domainAddressV2024', domainAddressV2024)
|
|
95195
95141
|
const localVarPath = `/verified-domains`;
|
|
95196
95142
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
95197
95143
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -95232,20 +95178,18 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
95232
95178
|
/**
|
|
95233
95179
|
* 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.
|
|
95234
95180
|
* @summary Create notification template
|
|
95235
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
95236
95181
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
95182
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95237
95183
|
* @param {*} [axiosOptions] Override http request option.
|
|
95238
95184
|
* @throws {RequiredError}
|
|
95239
95185
|
*/
|
|
95240
|
-
createNotificationTemplate: async (
|
|
95186
|
+
createNotificationTemplate: async (templateDtoV2024: TemplateDtoV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
95187
|
+
// verify required parameter 'templateDtoV2024' is not null or undefined
|
|
95188
|
+
assertParamExists('createNotificationTemplate', 'templateDtoV2024', templateDtoV2024)
|
|
95241
95189
|
if (xSailPointExperimental === undefined) {
|
|
95242
95190
|
xSailPointExperimental = 'true';
|
|
95243
95191
|
}
|
|
95244
95192
|
|
|
95245
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
95246
|
-
assertParamExists('createNotificationTemplate', 'xSailPointExperimental', xSailPointExperimental)
|
|
95247
|
-
// verify required parameter 'templateDtoV2024' is not null or undefined
|
|
95248
|
-
assertParamExists('createNotificationTemplate', 'templateDtoV2024', templateDtoV2024)
|
|
95249
95193
|
const localVarPath = `/notification-templates`;
|
|
95250
95194
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
95251
95195
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -95286,20 +95230,18 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
95286
95230
|
/**
|
|
95287
95231
|
* Create a new sender email address and initiate verification process.
|
|
95288
95232
|
* @summary Create verified from address
|
|
95289
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
95290
95233
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
95234
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
95291
95235
|
* @param {*} [axiosOptions] Override http request option.
|
|
95292
95236
|
* @throws {RequiredError}
|
|
95293
95237
|
*/
|
|
95294
|
-
createVerifiedFromAddress: async (
|
|
95238
|
+
createVerifiedFromAddress: async (emailStatusDtoV2024: EmailStatusDtoV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
95239
|
+
// verify required parameter 'emailStatusDtoV2024' is not null or undefined
|
|
95240
|
+
assertParamExists('createVerifiedFromAddress', 'emailStatusDtoV2024', emailStatusDtoV2024)
|
|
95295
95241
|
if (xSailPointExperimental === undefined) {
|
|
95296
95242
|
xSailPointExperimental = 'true';
|
|
95297
95243
|
}
|
|
95298
95244
|
|
|
95299
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
95300
|
-
assertParamExists('createVerifiedFromAddress', 'xSailPointExperimental', xSailPointExperimental)
|
|
95301
|
-
// verify required parameter 'emailStatusDtoV2024' is not null or undefined
|
|
95302
|
-
assertParamExists('createVerifiedFromAddress', 'emailStatusDtoV2024', emailStatusDtoV2024)
|
|
95303
95245
|
const localVarPath = `/verified-from-addresses`;
|
|
95304
95246
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
95305
95247
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -95995,13 +95937,13 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
95995
95937
|
/**
|
|
95996
95938
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
95997
95939
|
* @summary Verify domain address via dkim
|
|
95998
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
95999
95940
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
95941
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
96000
95942
|
* @param {*} [axiosOptions] Override http request option.
|
|
96001
95943
|
* @throws {RequiredError}
|
|
96002
95944
|
*/
|
|
96003
|
-
async createDomainDkim(
|
|
96004
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createDomainDkim(
|
|
95945
|
+
async createDomainDkim(domainAddressV2024: DomainAddressV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2024>> {
|
|
95946
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createDomainDkim(domainAddressV2024, xSailPointExperimental, axiosOptions);
|
|
96005
95947
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
96006
95948
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.createDomainDkim']?.[localVarOperationServerIndex]?.url;
|
|
96007
95949
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -96009,13 +95951,13 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
96009
95951
|
/**
|
|
96010
95952
|
* 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.
|
|
96011
95953
|
* @summary Create notification template
|
|
96012
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
96013
95954
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
95955
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
96014
95956
|
* @param {*} [axiosOptions] Override http request option.
|
|
96015
95957
|
* @throws {RequiredError}
|
|
96016
95958
|
*/
|
|
96017
|
-
async createNotificationTemplate(
|
|
96018
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createNotificationTemplate(
|
|
95959
|
+
async createNotificationTemplate(templateDtoV2024: TemplateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2024>> {
|
|
95960
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createNotificationTemplate(templateDtoV2024, xSailPointExperimental, axiosOptions);
|
|
96019
95961
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
96020
95962
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.createNotificationTemplate']?.[localVarOperationServerIndex]?.url;
|
|
96021
95963
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -96023,13 +95965,13 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
96023
95965
|
/**
|
|
96024
95966
|
* Create a new sender email address and initiate verification process.
|
|
96025
95967
|
* @summary Create verified from address
|
|
96026
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
96027
95968
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
95969
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
96028
95970
|
* @param {*} [axiosOptions] Override http request option.
|
|
96029
95971
|
* @throws {RequiredError}
|
|
96030
95972
|
*/
|
|
96031
|
-
async createVerifiedFromAddress(
|
|
96032
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createVerifiedFromAddress(
|
|
95973
|
+
async createVerifiedFromAddress(emailStatusDtoV2024: EmailStatusDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoV2024>> {
|
|
95974
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createVerifiedFromAddress(emailStatusDtoV2024, xSailPointExperimental, axiosOptions);
|
|
96033
95975
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
96034
95976
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.createVerifiedFromAddress']?.[localVarOperationServerIndex]?.url;
|
|
96035
95977
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -96226,7 +96168,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
96226
96168
|
* @throws {RequiredError}
|
|
96227
96169
|
*/
|
|
96228
96170
|
createDomainDkim(requestParameters: NotificationsV2024ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DomainStatusDtoV2024> {
|
|
96229
|
-
return localVarFp.createDomainDkim(requestParameters.
|
|
96171
|
+
return localVarFp.createDomainDkim(requestParameters.domainAddressV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
96230
96172
|
},
|
|
96231
96173
|
/**
|
|
96232
96174
|
* 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.
|
|
@@ -96236,7 +96178,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
96236
96178
|
* @throws {RequiredError}
|
|
96237
96179
|
*/
|
|
96238
96180
|
createNotificationTemplate(requestParameters: NotificationsV2024ApiCreateNotificationTemplateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TemplateDtoV2024> {
|
|
96239
|
-
return localVarFp.createNotificationTemplate(requestParameters.
|
|
96181
|
+
return localVarFp.createNotificationTemplate(requestParameters.templateDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
96240
96182
|
},
|
|
96241
96183
|
/**
|
|
96242
96184
|
* Create a new sender email address and initiate verification process.
|
|
@@ -96246,7 +96188,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
96246
96188
|
* @throws {RequiredError}
|
|
96247
96189
|
*/
|
|
96248
96190
|
createVerifiedFromAddress(requestParameters: NotificationsV2024ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EmailStatusDtoV2024> {
|
|
96249
|
-
return localVarFp.createVerifiedFromAddress(requestParameters.
|
|
96191
|
+
return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
96250
96192
|
},
|
|
96251
96193
|
/**
|
|
96252
96194
|
* 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.
|
|
@@ -96378,18 +96320,18 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
96378
96320
|
*/
|
|
96379
96321
|
export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
96380
96322
|
/**
|
|
96381
|
-
*
|
|
96382
|
-
* @type {
|
|
96323
|
+
*
|
|
96324
|
+
* @type {DomainAddressV2024}
|
|
96383
96325
|
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
96384
96326
|
*/
|
|
96385
|
-
readonly
|
|
96327
|
+
readonly domainAddressV2024: DomainAddressV2024
|
|
96386
96328
|
|
|
96387
96329
|
/**
|
|
96388
|
-
*
|
|
96389
|
-
* @type {
|
|
96330
|
+
* Use this header to enable this experimental API.
|
|
96331
|
+
* @type {string}
|
|
96390
96332
|
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
96391
96333
|
*/
|
|
96392
|
-
readonly
|
|
96334
|
+
readonly xSailPointExperimental?: string
|
|
96393
96335
|
}
|
|
96394
96336
|
|
|
96395
96337
|
/**
|
|
@@ -96399,18 +96341,18 @@ export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
|
96399
96341
|
*/
|
|
96400
96342
|
export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
96401
96343
|
/**
|
|
96402
|
-
*
|
|
96403
|
-
* @type {
|
|
96344
|
+
*
|
|
96345
|
+
* @type {TemplateDtoV2024}
|
|
96404
96346
|
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
96405
96347
|
*/
|
|
96406
|
-
readonly
|
|
96348
|
+
readonly templateDtoV2024: TemplateDtoV2024
|
|
96407
96349
|
|
|
96408
96350
|
/**
|
|
96409
|
-
*
|
|
96410
|
-
* @type {
|
|
96351
|
+
* Use this header to enable this experimental API.
|
|
96352
|
+
* @type {string}
|
|
96411
96353
|
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
96412
96354
|
*/
|
|
96413
|
-
readonly
|
|
96355
|
+
readonly xSailPointExperimental?: string
|
|
96414
96356
|
}
|
|
96415
96357
|
|
|
96416
96358
|
/**
|
|
@@ -96420,18 +96362,18 @@ export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
|
96420
96362
|
*/
|
|
96421
96363
|
export interface NotificationsV2024ApiCreateVerifiedFromAddressRequest {
|
|
96422
96364
|
/**
|
|
96423
|
-
*
|
|
96424
|
-
* @type {
|
|
96365
|
+
*
|
|
96366
|
+
* @type {EmailStatusDtoV2024}
|
|
96425
96367
|
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
96426
96368
|
*/
|
|
96427
|
-
readonly
|
|
96369
|
+
readonly emailStatusDtoV2024: EmailStatusDtoV2024
|
|
96428
96370
|
|
|
96429
96371
|
/**
|
|
96430
|
-
*
|
|
96431
|
-
* @type {
|
|
96372
|
+
* Use this header to enable this experimental API.
|
|
96373
|
+
* @type {string}
|
|
96432
96374
|
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
96433
96375
|
*/
|
|
96434
|
-
readonly
|
|
96376
|
+
readonly xSailPointExperimental?: string
|
|
96435
96377
|
}
|
|
96436
96378
|
|
|
96437
96379
|
/**
|
|
@@ -96744,7 +96686,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
96744
96686
|
* @memberof NotificationsV2024Api
|
|
96745
96687
|
*/
|
|
96746
96688
|
public createDomainDkim(requestParameters: NotificationsV2024ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
96747
|
-
return NotificationsV2024ApiFp(this.configuration).createDomainDkim(requestParameters.
|
|
96689
|
+
return NotificationsV2024ApiFp(this.configuration).createDomainDkim(requestParameters.domainAddressV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
96748
96690
|
}
|
|
96749
96691
|
|
|
96750
96692
|
/**
|
|
@@ -96756,7 +96698,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
96756
96698
|
* @memberof NotificationsV2024Api
|
|
96757
96699
|
*/
|
|
96758
96700
|
public createNotificationTemplate(requestParameters: NotificationsV2024ApiCreateNotificationTemplateRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
96759
|
-
return NotificationsV2024ApiFp(this.configuration).createNotificationTemplate(requestParameters.
|
|
96701
|
+
return NotificationsV2024ApiFp(this.configuration).createNotificationTemplate(requestParameters.templateDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
96760
96702
|
}
|
|
96761
96703
|
|
|
96762
96704
|
/**
|
|
@@ -96768,7 +96710,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
96768
96710
|
* @memberof NotificationsV2024Api
|
|
96769
96711
|
*/
|
|
96770
96712
|
public createVerifiedFromAddress(requestParameters: NotificationsV2024ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
96771
|
-
return NotificationsV2024ApiFp(this.configuration).createVerifiedFromAddress(requestParameters.
|
|
96713
|
+
return NotificationsV2024ApiFp(this.configuration).createVerifiedFromAddress(requestParameters.emailStatusDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
96772
96714
|
}
|
|
96773
96715
|
|
|
96774
96716
|
/**
|
|
@@ -97545,20 +97487,18 @@ export const OrgConfigV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
97545
97487
|
/**
|
|
97546
97488
|
* Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
|
|
97547
97489
|
* @summary Patch org config
|
|
97548
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
97549
97490
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
97491
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
97550
97492
|
* @param {*} [axiosOptions] Override http request option.
|
|
97551
97493
|
* @throws {RequiredError}
|
|
97552
97494
|
*/
|
|
97553
|
-
patchOrgConfig: async (
|
|
97495
|
+
patchOrgConfig: async (jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97496
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
97497
|
+
assertParamExists('patchOrgConfig', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
97554
97498
|
if (xSailPointExperimental === undefined) {
|
|
97555
97499
|
xSailPointExperimental = 'true';
|
|
97556
97500
|
}
|
|
97557
97501
|
|
|
97558
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
97559
|
-
assertParamExists('patchOrgConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
97560
|
-
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
97561
|
-
assertParamExists('patchOrgConfig', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
97562
97502
|
const localVarPath = `/org-config`;
|
|
97563
97503
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
97564
97504
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -97638,13 +97578,13 @@ export const OrgConfigV2024ApiFp = function(configuration?: Configuration) {
|
|
|
97638
97578
|
/**
|
|
97639
97579
|
* Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
|
|
97640
97580
|
* @summary Patch org config
|
|
97641
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
97642
97581
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
97582
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
97643
97583
|
* @param {*} [axiosOptions] Override http request option.
|
|
97644
97584
|
* @throws {RequiredError}
|
|
97645
97585
|
*/
|
|
97646
|
-
async patchOrgConfig(
|
|
97647
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchOrgConfig(
|
|
97586
|
+
async patchOrgConfig(jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2024>> {
|
|
97587
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchOrgConfig(jsonPatchOperationV2024, xSailPointExperimental, axiosOptions);
|
|
97648
97588
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
97649
97589
|
const localVarOperationServerBasePath = operationServerMap['OrgConfigV2024Api.patchOrgConfig']?.[localVarOperationServerIndex]?.url;
|
|
97650
97590
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -97687,7 +97627,7 @@ export const OrgConfigV2024ApiFactory = function (configuration?: Configuration,
|
|
|
97687
97627
|
* @throws {RequiredError}
|
|
97688
97628
|
*/
|
|
97689
97629
|
patchOrgConfig(requestParameters: OrgConfigV2024ApiPatchOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2024> {
|
|
97690
|
-
return localVarFp.patchOrgConfig(requestParameters.
|
|
97630
|
+
return localVarFp.patchOrgConfig(requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
97691
97631
|
},
|
|
97692
97632
|
};
|
|
97693
97633
|
};
|
|
@@ -97748,18 +97688,18 @@ export interface OrgConfigV2024ApiGetValidTimeZonesRequest {
|
|
|
97748
97688
|
*/
|
|
97749
97689
|
export interface OrgConfigV2024ApiPatchOrgConfigRequest {
|
|
97750
97690
|
/**
|
|
97751
|
-
*
|
|
97752
|
-
* @type {
|
|
97691
|
+
* A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
97692
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
97753
97693
|
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
97754
97694
|
*/
|
|
97755
|
-
readonly
|
|
97695
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>
|
|
97756
97696
|
|
|
97757
97697
|
/**
|
|
97758
|
-
*
|
|
97759
|
-
* @type {
|
|
97698
|
+
* Use this header to enable this experimental API.
|
|
97699
|
+
* @type {string}
|
|
97760
97700
|
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
97761
97701
|
*/
|
|
97762
|
-
readonly
|
|
97702
|
+
readonly xSailPointExperimental?: string
|
|
97763
97703
|
}
|
|
97764
97704
|
|
|
97765
97705
|
/**
|
|
@@ -97802,7 +97742,7 @@ export class OrgConfigV2024Api extends BaseAPI {
|
|
|
97802
97742
|
* @memberof OrgConfigV2024Api
|
|
97803
97743
|
*/
|
|
97804
97744
|
public patchOrgConfig(requestParameters: OrgConfigV2024ApiPatchOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
97805
|
-
return OrgConfigV2024ApiFp(this.configuration).patchOrgConfig(requestParameters.
|
|
97745
|
+
return OrgConfigV2024ApiFp(this.configuration).patchOrgConfig(requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
97806
97746
|
}
|
|
97807
97747
|
}
|
|
97808
97748
|
|
|
@@ -104430,20 +104370,18 @@ export const SIMIntegrationsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
104430
104370
|
/**
|
|
104431
104371
|
* Create a new SIM Integrations.
|
|
104432
104372
|
* @summary Create new sim integration
|
|
104433
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104434
104373
|
* @param {SimIntegrationDetailsV2024} simIntegrationDetailsV2024 DTO containing the details of the SIM integration
|
|
104374
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104435
104375
|
* @param {*} [axiosOptions] Override http request option.
|
|
104436
104376
|
* @throws {RequiredError}
|
|
104437
104377
|
*/
|
|
104438
|
-
createSIMIntegration: async (
|
|
104378
|
+
createSIMIntegration: async (simIntegrationDetailsV2024: SimIntegrationDetailsV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
104379
|
+
// verify required parameter 'simIntegrationDetailsV2024' is not null or undefined
|
|
104380
|
+
assertParamExists('createSIMIntegration', 'simIntegrationDetailsV2024', simIntegrationDetailsV2024)
|
|
104439
104381
|
if (xSailPointExperimental === undefined) {
|
|
104440
104382
|
xSailPointExperimental = 'true';
|
|
104441
104383
|
}
|
|
104442
104384
|
|
|
104443
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
104444
|
-
assertParamExists('createSIMIntegration', 'xSailPointExperimental', xSailPointExperimental)
|
|
104445
|
-
// verify required parameter 'simIntegrationDetailsV2024' is not null or undefined
|
|
104446
|
-
assertParamExists('createSIMIntegration', 'simIntegrationDetailsV2024', simIntegrationDetailsV2024)
|
|
104447
104385
|
const localVarPath = `/sim-integrations`;
|
|
104448
104386
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
104449
104387
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -104485,19 +104423,17 @@ export const SIMIntegrationsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
104485
104423
|
* Get the details of a SIM integration.
|
|
104486
104424
|
* @summary Delete a sim integration
|
|
104487
104425
|
* @param {string} id The id of the integration to delete.
|
|
104488
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104426
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104489
104427
|
* @param {*} [axiosOptions] Override http request option.
|
|
104490
104428
|
* @throws {RequiredError}
|
|
104491
104429
|
*/
|
|
104492
|
-
deleteSIMIntegration: async (id: string, xSailPointExperimental
|
|
104430
|
+
deleteSIMIntegration: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
104493
104431
|
// verify required parameter 'id' is not null or undefined
|
|
104494
104432
|
assertParamExists('deleteSIMIntegration', 'id', id)
|
|
104495
104433
|
if (xSailPointExperimental === undefined) {
|
|
104496
104434
|
xSailPointExperimental = 'true';
|
|
104497
104435
|
}
|
|
104498
104436
|
|
|
104499
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
104500
|
-
assertParamExists('deleteSIMIntegration', 'xSailPointExperimental', xSailPointExperimental)
|
|
104501
104437
|
const localVarPath = `/sim-integrations/{id}`
|
|
104502
104438
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
104503
104439
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -104537,19 +104473,17 @@ export const SIMIntegrationsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
104537
104473
|
* Get the details of a SIM integration.
|
|
104538
104474
|
* @summary Get a sim integration details.
|
|
104539
104475
|
* @param {string} id The id of the integration.
|
|
104540
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104476
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104541
104477
|
* @param {*} [axiosOptions] Override http request option.
|
|
104542
104478
|
* @throws {RequiredError}
|
|
104543
104479
|
*/
|
|
104544
|
-
getSIMIntegration: async (id: string, xSailPointExperimental
|
|
104480
|
+
getSIMIntegration: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
104545
104481
|
// verify required parameter 'id' is not null or undefined
|
|
104546
104482
|
assertParamExists('getSIMIntegration', 'id', id)
|
|
104547
104483
|
if (xSailPointExperimental === undefined) {
|
|
104548
104484
|
xSailPointExperimental = 'true';
|
|
104549
104485
|
}
|
|
104550
104486
|
|
|
104551
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
104552
|
-
assertParamExists('getSIMIntegration', 'xSailPointExperimental', xSailPointExperimental)
|
|
104553
104487
|
const localVarPath = `/sim-integrations/{id}`
|
|
104554
104488
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
104555
104489
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -104691,22 +104625,20 @@ export const SIMIntegrationsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
104691
104625
|
* Patch a SIM attribute given a JsonPatch object.
|
|
104692
104626
|
* @summary Patch a sim attribute.
|
|
104693
104627
|
* @param {string} id SIM integration id
|
|
104694
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104695
104628
|
* @param {JsonPatchV2024} jsonPatchV2024 The JsonPatch object that describes the changes of SIM
|
|
104629
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104696
104630
|
* @param {*} [axiosOptions] Override http request option.
|
|
104697
104631
|
* @throws {RequiredError}
|
|
104698
104632
|
*/
|
|
104699
|
-
patchSIMAttributes: async (id: string,
|
|
104633
|
+
patchSIMAttributes: async (id: string, jsonPatchV2024: JsonPatchV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
104700
104634
|
// verify required parameter 'id' is not null or undefined
|
|
104701
104635
|
assertParamExists('patchSIMAttributes', 'id', id)
|
|
104636
|
+
// verify required parameter 'jsonPatchV2024' is not null or undefined
|
|
104637
|
+
assertParamExists('patchSIMAttributes', 'jsonPatchV2024', jsonPatchV2024)
|
|
104702
104638
|
if (xSailPointExperimental === undefined) {
|
|
104703
104639
|
xSailPointExperimental = 'true';
|
|
104704
104640
|
}
|
|
104705
104641
|
|
|
104706
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
104707
|
-
assertParamExists('patchSIMAttributes', 'xSailPointExperimental', xSailPointExperimental)
|
|
104708
|
-
// verify required parameter 'jsonPatchV2024' is not null or undefined
|
|
104709
|
-
assertParamExists('patchSIMAttributes', 'jsonPatchV2024', jsonPatchV2024)
|
|
104710
104642
|
const localVarPath = `/sim-integrations/{id}`
|
|
104711
104643
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
104712
104644
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -104814,13 +104746,13 @@ export const SIMIntegrationsV2024ApiFp = function(configuration?: Configuration)
|
|
|
104814
104746
|
/**
|
|
104815
104747
|
* Create a new SIM Integrations.
|
|
104816
104748
|
* @summary Create new sim integration
|
|
104817
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104818
104749
|
* @param {SimIntegrationDetailsV2024} simIntegrationDetailsV2024 DTO containing the details of the SIM integration
|
|
104750
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104819
104751
|
* @param {*} [axiosOptions] Override http request option.
|
|
104820
104752
|
* @throws {RequiredError}
|
|
104821
104753
|
*/
|
|
104822
|
-
async createSIMIntegration(
|
|
104823
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createSIMIntegration(
|
|
104754
|
+
async createSIMIntegration(simIntegrationDetailsV2024: SimIntegrationDetailsV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>> {
|
|
104755
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSIMIntegration(simIntegrationDetailsV2024, xSailPointExperimental, axiosOptions);
|
|
104824
104756
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
104825
104757
|
const localVarOperationServerBasePath = operationServerMap['SIMIntegrationsV2024Api.createSIMIntegration']?.[localVarOperationServerIndex]?.url;
|
|
104826
104758
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -104829,11 +104761,11 @@ export const SIMIntegrationsV2024ApiFp = function(configuration?: Configuration)
|
|
|
104829
104761
|
* Get the details of a SIM integration.
|
|
104830
104762
|
* @summary Delete a sim integration
|
|
104831
104763
|
* @param {string} id The id of the integration to delete.
|
|
104832
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104764
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104833
104765
|
* @param {*} [axiosOptions] Override http request option.
|
|
104834
104766
|
* @throws {RequiredError}
|
|
104835
104767
|
*/
|
|
104836
|
-
async deleteSIMIntegration(id: string, xSailPointExperimental
|
|
104768
|
+
async deleteSIMIntegration(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
104837
104769
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSIMIntegration(id, xSailPointExperimental, axiosOptions);
|
|
104838
104770
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
104839
104771
|
const localVarOperationServerBasePath = operationServerMap['SIMIntegrationsV2024Api.deleteSIMIntegration']?.[localVarOperationServerIndex]?.url;
|
|
@@ -104843,11 +104775,11 @@ export const SIMIntegrationsV2024ApiFp = function(configuration?: Configuration)
|
|
|
104843
104775
|
* Get the details of a SIM integration.
|
|
104844
104776
|
* @summary Get a sim integration details.
|
|
104845
104777
|
* @param {string} id The id of the integration.
|
|
104846
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104778
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104847
104779
|
* @param {*} [axiosOptions] Override http request option.
|
|
104848
104780
|
* @throws {RequiredError}
|
|
104849
104781
|
*/
|
|
104850
|
-
async getSIMIntegration(id: string, xSailPointExperimental
|
|
104782
|
+
async getSIMIntegration(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>> {
|
|
104851
104783
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSIMIntegration(id, xSailPointExperimental, axiosOptions);
|
|
104852
104784
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
104853
104785
|
const localVarOperationServerBasePath = operationServerMap['SIMIntegrationsV2024Api.getSIMIntegration']?.[localVarOperationServerIndex]?.url;
|
|
@@ -104885,13 +104817,13 @@ export const SIMIntegrationsV2024ApiFp = function(configuration?: Configuration)
|
|
|
104885
104817
|
* Patch a SIM attribute given a JsonPatch object.
|
|
104886
104818
|
* @summary Patch a sim attribute.
|
|
104887
104819
|
* @param {string} id SIM integration id
|
|
104888
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104889
104820
|
* @param {JsonPatchV2024} jsonPatchV2024 The JsonPatch object that describes the changes of SIM
|
|
104821
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
104890
104822
|
* @param {*} [axiosOptions] Override http request option.
|
|
104891
104823
|
* @throws {RequiredError}
|
|
104892
104824
|
*/
|
|
104893
|
-
async patchSIMAttributes(id: string,
|
|
104894
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSIMAttributes(id,
|
|
104825
|
+
async patchSIMAttributes(id: string, jsonPatchV2024: JsonPatchV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>> {
|
|
104826
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSIMAttributes(id, jsonPatchV2024, xSailPointExperimental, axiosOptions);
|
|
104895
104827
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
104896
104828
|
const localVarOperationServerBasePath = operationServerMap['SIMIntegrationsV2024Api.patchSIMAttributes']?.[localVarOperationServerIndex]?.url;
|
|
104897
104829
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -104929,7 +104861,7 @@ export const SIMIntegrationsV2024ApiFactory = function (configuration?: Configur
|
|
|
104929
104861
|
* @throws {RequiredError}
|
|
104930
104862
|
*/
|
|
104931
104863
|
createSIMIntegration(requestParameters: SIMIntegrationsV2024ApiCreateSIMIntegrationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ServiceDeskIntegrationDtoV2024> {
|
|
104932
|
-
return localVarFp.createSIMIntegration(requestParameters.
|
|
104864
|
+
return localVarFp.createSIMIntegration(requestParameters.simIntegrationDetailsV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
104933
104865
|
},
|
|
104934
104866
|
/**
|
|
104935
104867
|
* Get the details of a SIM integration.
|
|
@@ -104979,7 +104911,7 @@ export const SIMIntegrationsV2024ApiFactory = function (configuration?: Configur
|
|
|
104979
104911
|
* @throws {RequiredError}
|
|
104980
104912
|
*/
|
|
104981
104913
|
patchSIMAttributes(requestParameters: SIMIntegrationsV2024ApiPatchSIMAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ServiceDeskIntegrationDtoV2024> {
|
|
104982
|
-
return localVarFp.patchSIMAttributes(requestParameters.id, requestParameters.
|
|
104914
|
+
return localVarFp.patchSIMAttributes(requestParameters.id, requestParameters.jsonPatchV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
104983
104915
|
},
|
|
104984
104916
|
/**
|
|
104985
104917
|
* Update an existing SIM integration.
|
|
@@ -105001,18 +104933,18 @@ export const SIMIntegrationsV2024ApiFactory = function (configuration?: Configur
|
|
|
105001
104933
|
*/
|
|
105002
104934
|
export interface SIMIntegrationsV2024ApiCreateSIMIntegrationRequest {
|
|
105003
104935
|
/**
|
|
105004
|
-
*
|
|
105005
|
-
* @type {
|
|
104936
|
+
* DTO containing the details of the SIM integration
|
|
104937
|
+
* @type {SimIntegrationDetailsV2024}
|
|
105006
104938
|
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
105007
104939
|
*/
|
|
105008
|
-
readonly
|
|
104940
|
+
readonly simIntegrationDetailsV2024: SimIntegrationDetailsV2024
|
|
105009
104941
|
|
|
105010
104942
|
/**
|
|
105011
|
-
*
|
|
105012
|
-
* @type {
|
|
104943
|
+
* Use this header to enable this experimental API.
|
|
104944
|
+
* @type {string}
|
|
105013
104945
|
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
105014
104946
|
*/
|
|
105015
|
-
readonly
|
|
104947
|
+
readonly xSailPointExperimental?: string
|
|
105016
104948
|
}
|
|
105017
104949
|
|
|
105018
104950
|
/**
|
|
@@ -105033,7 +104965,7 @@ export interface SIMIntegrationsV2024ApiDeleteSIMIntegrationRequest {
|
|
|
105033
104965
|
* @type {string}
|
|
105034
104966
|
* @memberof SIMIntegrationsV2024ApiDeleteSIMIntegration
|
|
105035
104967
|
*/
|
|
105036
|
-
readonly xSailPointExperimental
|
|
104968
|
+
readonly xSailPointExperimental?: string
|
|
105037
104969
|
}
|
|
105038
104970
|
|
|
105039
104971
|
/**
|
|
@@ -105054,7 +104986,7 @@ export interface SIMIntegrationsV2024ApiGetSIMIntegrationRequest {
|
|
|
105054
104986
|
* @type {string}
|
|
105055
104987
|
* @memberof SIMIntegrationsV2024ApiGetSIMIntegration
|
|
105056
104988
|
*/
|
|
105057
|
-
readonly xSailPointExperimental
|
|
104989
|
+
readonly xSailPointExperimental?: string
|
|
105058
104990
|
}
|
|
105059
104991
|
|
|
105060
104992
|
/**
|
|
@@ -105113,18 +105045,18 @@ export interface SIMIntegrationsV2024ApiPatchSIMAttributesRequest {
|
|
|
105113
105045
|
readonly id: string
|
|
105114
105046
|
|
|
105115
105047
|
/**
|
|
105116
|
-
*
|
|
105117
|
-
* @type {
|
|
105048
|
+
* The JsonPatch object that describes the changes of SIM
|
|
105049
|
+
* @type {JsonPatchV2024}
|
|
105118
105050
|
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
105119
105051
|
*/
|
|
105120
|
-
readonly
|
|
105052
|
+
readonly jsonPatchV2024: JsonPatchV2024
|
|
105121
105053
|
|
|
105122
105054
|
/**
|
|
105123
|
-
*
|
|
105124
|
-
* @type {
|
|
105055
|
+
* Use this header to enable this experimental API.
|
|
105056
|
+
* @type {string}
|
|
105125
105057
|
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
105126
105058
|
*/
|
|
105127
|
-
readonly
|
|
105059
|
+
readonly xSailPointExperimental?: string
|
|
105128
105060
|
}
|
|
105129
105061
|
|
|
105130
105062
|
/**
|
|
@@ -105171,7 +105103,7 @@ export class SIMIntegrationsV2024Api extends BaseAPI {
|
|
|
105171
105103
|
* @memberof SIMIntegrationsV2024Api
|
|
105172
105104
|
*/
|
|
105173
105105
|
public createSIMIntegration(requestParameters: SIMIntegrationsV2024ApiCreateSIMIntegrationRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
105174
|
-
return SIMIntegrationsV2024ApiFp(this.configuration).createSIMIntegration(requestParameters.
|
|
105106
|
+
return SIMIntegrationsV2024ApiFp(this.configuration).createSIMIntegration(requestParameters.simIntegrationDetailsV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
105175
105107
|
}
|
|
105176
105108
|
|
|
105177
105109
|
/**
|
|
@@ -105231,7 +105163,7 @@ export class SIMIntegrationsV2024Api extends BaseAPI {
|
|
|
105231
105163
|
* @memberof SIMIntegrationsV2024Api
|
|
105232
105164
|
*/
|
|
105233
105165
|
public patchSIMAttributes(requestParameters: SIMIntegrationsV2024ApiPatchSIMAttributesRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
105234
|
-
return SIMIntegrationsV2024ApiFp(this.configuration).patchSIMAttributes(requestParameters.id, requestParameters.
|
|
105166
|
+
return SIMIntegrationsV2024ApiFp(this.configuration).patchSIMAttributes(requestParameters.id, requestParameters.jsonPatchV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
105235
105167
|
}
|
|
105236
105168
|
|
|
105237
105169
|
/**
|
|
@@ -109746,19 +109678,17 @@ export const SearchAttributeConfigurationV2024ApiAxiosParamCreator = function (c
|
|
|
109746
109678
|
* Delete an extended attribute configuration by name.
|
|
109747
109679
|
* @summary Delete extended search attribute
|
|
109748
109680
|
* @param {string} name Name of the extended search attribute configuration to delete.
|
|
109749
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
109681
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
109750
109682
|
* @param {*} [axiosOptions] Override http request option.
|
|
109751
109683
|
* @throws {RequiredError}
|
|
109752
109684
|
*/
|
|
109753
|
-
deleteSearchAttributeConfig: async (name: string, xSailPointExperimental
|
|
109685
|
+
deleteSearchAttributeConfig: async (name: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
109754
109686
|
// verify required parameter 'name' is not null or undefined
|
|
109755
109687
|
assertParamExists('deleteSearchAttributeConfig', 'name', name)
|
|
109756
109688
|
if (xSailPointExperimental === undefined) {
|
|
109757
109689
|
xSailPointExperimental = 'true';
|
|
109758
109690
|
}
|
|
109759
109691
|
|
|
109760
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
109761
|
-
assertParamExists('deleteSearchAttributeConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
109762
109692
|
const localVarPath = `/accounts/search-attribute-config/{name}`
|
|
109763
109693
|
.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
109764
109694
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -109797,19 +109727,17 @@ export const SearchAttributeConfigurationV2024ApiAxiosParamCreator = function (c
|
|
|
109797
109727
|
/**
|
|
109798
109728
|
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
109799
109729
|
* @summary List extended search attributes
|
|
109800
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
109801
109730
|
* @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.
|
|
109802
109731
|
* @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.
|
|
109732
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
109803
109733
|
* @param {*} [axiosOptions] Override http request option.
|
|
109804
109734
|
* @throws {RequiredError}
|
|
109805
109735
|
*/
|
|
109806
|
-
getSearchAttributeConfig: async (
|
|
109736
|
+
getSearchAttributeConfig: async (limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
109807
109737
|
if (xSailPointExperimental === undefined) {
|
|
109808
109738
|
xSailPointExperimental = 'true';
|
|
109809
109739
|
}
|
|
109810
109740
|
|
|
109811
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
109812
|
-
assertParamExists('getSearchAttributeConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
109813
109741
|
const localVarPath = `/accounts/search-attribute-config`;
|
|
109814
109742
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
109815
109743
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -109906,22 +109834,20 @@ export const SearchAttributeConfigurationV2024ApiAxiosParamCreator = function (c
|
|
|
109906
109834
|
* Update an existing search attribute configuration. You can patch these fields: * name * displayName * applicationAttributes
|
|
109907
109835
|
* @summary Update extended search attribute
|
|
109908
109836
|
* @param {string} name Name of the search attribute configuration to patch.
|
|
109909
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
109910
109837
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
109838
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
109911
109839
|
* @param {*} [axiosOptions] Override http request option.
|
|
109912
109840
|
* @throws {RequiredError}
|
|
109913
109841
|
*/
|
|
109914
|
-
patchSearchAttributeConfig: async (name: string,
|
|
109842
|
+
patchSearchAttributeConfig: async (name: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
109915
109843
|
// verify required parameter 'name' is not null or undefined
|
|
109916
109844
|
assertParamExists('patchSearchAttributeConfig', 'name', name)
|
|
109845
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
109846
|
+
assertParamExists('patchSearchAttributeConfig', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
109917
109847
|
if (xSailPointExperimental === undefined) {
|
|
109918
109848
|
xSailPointExperimental = 'true';
|
|
109919
109849
|
}
|
|
109920
109850
|
|
|
109921
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
109922
|
-
assertParamExists('patchSearchAttributeConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
109923
|
-
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
109924
|
-
assertParamExists('patchSearchAttributeConfig', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
109925
109851
|
const localVarPath = `/accounts/search-attribute-config/{name}`
|
|
109926
109852
|
.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
109927
109853
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -109988,11 +109914,11 @@ export const SearchAttributeConfigurationV2024ApiFp = function(configuration?: C
|
|
|
109988
109914
|
* Delete an extended attribute configuration by name.
|
|
109989
109915
|
* @summary Delete extended search attribute
|
|
109990
109916
|
* @param {string} name Name of the extended search attribute configuration to delete.
|
|
109991
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
109917
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
109992
109918
|
* @param {*} [axiosOptions] Override http request option.
|
|
109993
109919
|
* @throws {RequiredError}
|
|
109994
109920
|
*/
|
|
109995
|
-
async deleteSearchAttributeConfig(name: string, xSailPointExperimental
|
|
109921
|
+
async deleteSearchAttributeConfig(name: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
109996
109922
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSearchAttributeConfig(name, xSailPointExperimental, axiosOptions);
|
|
109997
109923
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
109998
109924
|
const localVarOperationServerBasePath = operationServerMap['SearchAttributeConfigurationV2024Api.deleteSearchAttributeConfig']?.[localVarOperationServerIndex]?.url;
|
|
@@ -110001,14 +109927,14 @@ export const SearchAttributeConfigurationV2024ApiFp = function(configuration?: C
|
|
|
110001
109927
|
/**
|
|
110002
109928
|
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
110003
109929
|
* @summary List extended search attributes
|
|
110004
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
110005
109930
|
* @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.
|
|
110006
109931
|
* @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.
|
|
109932
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
110007
109933
|
* @param {*} [axiosOptions] Override http request option.
|
|
110008
109934
|
* @throws {RequiredError}
|
|
110009
109935
|
*/
|
|
110010
|
-
async getSearchAttributeConfig(
|
|
110011
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchAttributeConfig(
|
|
109936
|
+
async getSearchAttributeConfig(limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>> {
|
|
109937
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchAttributeConfig(limit, offset, xSailPointExperimental, axiosOptions);
|
|
110012
109938
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
110013
109939
|
const localVarOperationServerBasePath = operationServerMap['SearchAttributeConfigurationV2024Api.getSearchAttributeConfig']?.[localVarOperationServerIndex]?.url;
|
|
110014
109940
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -110031,13 +109957,13 @@ export const SearchAttributeConfigurationV2024ApiFp = function(configuration?: C
|
|
|
110031
109957
|
* Update an existing search attribute configuration. You can patch these fields: * name * displayName * applicationAttributes
|
|
110032
109958
|
* @summary Update extended search attribute
|
|
110033
109959
|
* @param {string} name Name of the search attribute configuration to patch.
|
|
110034
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
110035
109960
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
109961
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
110036
109962
|
* @param {*} [axiosOptions] Override http request option.
|
|
110037
109963
|
* @throws {RequiredError}
|
|
110038
109964
|
*/
|
|
110039
|
-
async patchSearchAttributeConfig(name: string,
|
|
110040
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSearchAttributeConfig(name,
|
|
109965
|
+
async patchSearchAttributeConfig(name: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchAttributeConfigV2024>> {
|
|
109966
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSearchAttributeConfig(name, jsonPatchOperationV2024, xSailPointExperimental, axiosOptions);
|
|
110041
109967
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
110042
109968
|
const localVarOperationServerBasePath = operationServerMap['SearchAttributeConfigurationV2024Api.patchSearchAttributeConfig']?.[localVarOperationServerIndex]?.url;
|
|
110043
109969
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -110079,8 +110005,8 @@ export const SearchAttributeConfigurationV2024ApiFactory = function (configurati
|
|
|
110079
110005
|
* @param {*} [axiosOptions] Override http request option.
|
|
110080
110006
|
* @throws {RequiredError}
|
|
110081
110007
|
*/
|
|
110082
|
-
getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigV2024>> {
|
|
110083
|
-
return localVarFp.getSearchAttributeConfig(requestParameters.
|
|
110008
|
+
getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigV2024>> {
|
|
110009
|
+
return localVarFp.getSearchAttributeConfig(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
110084
110010
|
},
|
|
110085
110011
|
/**
|
|
110086
110012
|
* Get an extended attribute configuration by name.
|
|
@@ -110100,7 +110026,7 @@ export const SearchAttributeConfigurationV2024ApiFactory = function (configurati
|
|
|
110100
110026
|
* @throws {RequiredError}
|
|
110101
110027
|
*/
|
|
110102
110028
|
patchSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SearchAttributeConfigV2024> {
|
|
110103
|
-
return localVarFp.patchSearchAttributeConfig(requestParameters.name, requestParameters.
|
|
110029
|
+
return localVarFp.patchSearchAttributeConfig(requestParameters.name, requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
110104
110030
|
},
|
|
110105
110031
|
};
|
|
110106
110032
|
};
|
|
@@ -110144,7 +110070,7 @@ export interface SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
|
110144
110070
|
* @type {string}
|
|
110145
110071
|
* @memberof SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
110146
110072
|
*/
|
|
110147
|
-
readonly xSailPointExperimental
|
|
110073
|
+
readonly xSailPointExperimental?: string
|
|
110148
110074
|
}
|
|
110149
110075
|
|
|
110150
110076
|
/**
|
|
@@ -110153,13 +110079,6 @@ export interface SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
|
110153
110079
|
* @interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest
|
|
110154
110080
|
*/
|
|
110155
110081
|
export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest {
|
|
110156
|
-
/**
|
|
110157
|
-
* Use this header to enable this experimental API.
|
|
110158
|
-
* @type {string}
|
|
110159
|
-
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
110160
|
-
*/
|
|
110161
|
-
readonly xSailPointExperimental: string
|
|
110162
|
-
|
|
110163
110082
|
/**
|
|
110164
110083
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
110165
110084
|
* @type {number}
|
|
@@ -110173,6 +110092,13 @@ export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigReq
|
|
|
110173
110092
|
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
110174
110093
|
*/
|
|
110175
110094
|
readonly offset?: number
|
|
110095
|
+
|
|
110096
|
+
/**
|
|
110097
|
+
* Use this header to enable this experimental API.
|
|
110098
|
+
* @type {string}
|
|
110099
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
110100
|
+
*/
|
|
110101
|
+
readonly xSailPointExperimental?: string
|
|
110176
110102
|
}
|
|
110177
110103
|
|
|
110178
110104
|
/**
|
|
@@ -110210,18 +110136,18 @@ export interface SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigR
|
|
|
110210
110136
|
readonly name: string
|
|
110211
110137
|
|
|
110212
110138
|
/**
|
|
110213
|
-
*
|
|
110214
|
-
* @type {
|
|
110139
|
+
*
|
|
110140
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
110215
110141
|
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
110216
110142
|
*/
|
|
110217
|
-
readonly
|
|
110143
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>
|
|
110218
110144
|
|
|
110219
110145
|
/**
|
|
110220
|
-
*
|
|
110221
|
-
* @type {
|
|
110146
|
+
* Use this header to enable this experimental API.
|
|
110147
|
+
* @type {string}
|
|
110222
110148
|
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
110223
110149
|
*/
|
|
110224
|
-
readonly
|
|
110150
|
+
readonly xSailPointExperimental?: string
|
|
110225
110151
|
}
|
|
110226
110152
|
|
|
110227
110153
|
/**
|
|
@@ -110263,8 +110189,8 @@ export class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
110263
110189
|
* @throws {RequiredError}
|
|
110264
110190
|
* @memberof SearchAttributeConfigurationV2024Api
|
|
110265
110191
|
*/
|
|
110266
|
-
public getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
110267
|
-
return SearchAttributeConfigurationV2024ApiFp(this.configuration).getSearchAttributeConfig(requestParameters.
|
|
110192
|
+
public getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
110193
|
+
return SearchAttributeConfigurationV2024ApiFp(this.configuration).getSearchAttributeConfig(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
110268
110194
|
}
|
|
110269
110195
|
|
|
110270
110196
|
/**
|
|
@@ -110288,7 +110214,7 @@ export class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
110288
110214
|
* @memberof SearchAttributeConfigurationV2024Api
|
|
110289
110215
|
*/
|
|
110290
110216
|
public patchSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
110291
|
-
return SearchAttributeConfigurationV2024ApiFp(this.configuration).patchSearchAttributeConfig(requestParameters.name, requestParameters.
|
|
110217
|
+
return SearchAttributeConfigurationV2024ApiFp(this.configuration).patchSearchAttributeConfig(requestParameters.name, requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
110292
110218
|
}
|
|
110293
110219
|
}
|
|
110294
110220
|
|
|
@@ -113950,22 +113876,20 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113950
113876
|
* 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.
|
|
113951
113877
|
* @summary Update attribute sync config
|
|
113952
113878
|
* @param {string} id The source id
|
|
113953
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
113954
113879
|
* @param {AttrSyncSourceConfigV2024} attrSyncSourceConfigV2024
|
|
113880
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
113955
113881
|
* @param {*} [axiosOptions] Override http request option.
|
|
113956
113882
|
* @throws {RequiredError}
|
|
113957
113883
|
*/
|
|
113958
|
-
putSourceAttrSyncConfig: async (id: string,
|
|
113884
|
+
putSourceAttrSyncConfig: async (id: string, attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
113959
113885
|
// verify required parameter 'id' is not null or undefined
|
|
113960
113886
|
assertParamExists('putSourceAttrSyncConfig', 'id', id)
|
|
113887
|
+
// verify required parameter 'attrSyncSourceConfigV2024' is not null or undefined
|
|
113888
|
+
assertParamExists('putSourceAttrSyncConfig', 'attrSyncSourceConfigV2024', attrSyncSourceConfigV2024)
|
|
113961
113889
|
if (xSailPointExperimental === undefined) {
|
|
113962
113890
|
xSailPointExperimental = 'true';
|
|
113963
113891
|
}
|
|
113964
113892
|
|
|
113965
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
113966
|
-
assertParamExists('putSourceAttrSyncConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
113967
|
-
// verify required parameter 'attrSyncSourceConfigV2024' is not null or undefined
|
|
113968
|
-
assertParamExists('putSourceAttrSyncConfig', 'attrSyncSourceConfigV2024', attrSyncSourceConfigV2024)
|
|
113969
113893
|
const localVarPath = `/sources/{id}/attribute-sync-config`
|
|
113970
113894
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
113971
113895
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -114445,20 +114369,18 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114445
114369
|
/**
|
|
114446
114370
|
* 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.
|
|
114447
114371
|
* @summary Update source entitlement request configuration
|
|
114448
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
114449
114372
|
* @param {SourceEntitlementRequestConfigV2024} sourceEntitlementRequestConfigV2024
|
|
114373
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
114450
114374
|
* @param {*} [axiosOptions] Override http request option.
|
|
114451
114375
|
* @throws {RequiredError}
|
|
114452
114376
|
*/
|
|
114453
|
-
updateSourceEntitlementRequestConfig: async (
|
|
114377
|
+
updateSourceEntitlementRequestConfig: async (sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
114378
|
+
// verify required parameter 'sourceEntitlementRequestConfigV2024' is not null or undefined
|
|
114379
|
+
assertParamExists('updateSourceEntitlementRequestConfig', 'sourceEntitlementRequestConfigV2024', sourceEntitlementRequestConfigV2024)
|
|
114454
114380
|
if (xSailPointExperimental === undefined) {
|
|
114455
114381
|
xSailPointExperimental = 'true';
|
|
114456
114382
|
}
|
|
114457
114383
|
|
|
114458
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
114459
|
-
assertParamExists('updateSourceEntitlementRequestConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
114460
|
-
// verify required parameter 'sourceEntitlementRequestConfigV2024' is not null or undefined
|
|
114461
|
-
assertParamExists('updateSourceEntitlementRequestConfig', 'sourceEntitlementRequestConfigV2024', sourceEntitlementRequestConfigV2024)
|
|
114462
114384
|
const localVarPath = `/sources/{id}/entitlement-request-config`;
|
|
114463
114385
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
114464
114386
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -115142,13 +115064,13 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
115142
115064
|
* 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.
|
|
115143
115065
|
* @summary Update attribute sync config
|
|
115144
115066
|
* @param {string} id The source id
|
|
115145
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
115146
115067
|
* @param {AttrSyncSourceConfigV2024} attrSyncSourceConfigV2024
|
|
115068
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
115147
115069
|
* @param {*} [axiosOptions] Override http request option.
|
|
115148
115070
|
* @throws {RequiredError}
|
|
115149
115071
|
*/
|
|
115150
|
-
async putSourceAttrSyncConfig(id: string,
|
|
115151
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putSourceAttrSyncConfig(id,
|
|
115072
|
+
async putSourceAttrSyncConfig(id: string, attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttrSyncSourceConfigV2024>> {
|
|
115073
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putSourceAttrSyncConfig(id, attrSyncSourceConfigV2024, xSailPointExperimental, axiosOptions);
|
|
115152
115074
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
115153
115075
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2024Api.putSourceAttrSyncConfig']?.[localVarOperationServerIndex]?.url;
|
|
115154
115076
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -115282,13 +115204,13 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
115282
115204
|
/**
|
|
115283
115205
|
* 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.
|
|
115284
115206
|
* @summary Update source entitlement request configuration
|
|
115285
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
115286
115207
|
* @param {SourceEntitlementRequestConfigV2024} sourceEntitlementRequestConfigV2024
|
|
115208
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
115287
115209
|
* @param {*} [axiosOptions] Override http request option.
|
|
115288
115210
|
* @throws {RequiredError}
|
|
115289
115211
|
*/
|
|
115290
|
-
async updateSourceEntitlementRequestConfig(
|
|
115291
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSourceEntitlementRequestConfig(
|
|
115212
|
+
async updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2024>> {
|
|
115213
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigV2024, xSailPointExperimental, axiosOptions);
|
|
115292
115214
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
115293
115215
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2024Api.updateSourceEntitlementRequestConfig']?.[localVarOperationServerIndex]?.url;
|
|
115294
115216
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -115721,7 +115643,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
115721
115643
|
* @throws {RequiredError}
|
|
115722
115644
|
*/
|
|
115723
115645
|
putSourceAttrSyncConfig(requestParameters: SourcesV2024ApiPutSourceAttrSyncConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttrSyncSourceConfigV2024> {
|
|
115724
|
-
return localVarFp.putSourceAttrSyncConfig(requestParameters.id, requestParameters.
|
|
115646
|
+
return localVarFp.putSourceAttrSyncConfig(requestParameters.id, requestParameters.attrSyncSourceConfigV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
115725
115647
|
},
|
|
115726
115648
|
/**
|
|
115727
115649
|
* 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.
|
|
@@ -115821,7 +115743,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
115821
115743
|
* @throws {RequiredError}
|
|
115822
115744
|
*/
|
|
115823
115745
|
updateSourceEntitlementRequestConfig(requestParameters: SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceEntitlementRequestConfigV2024> {
|
|
115824
|
-
return localVarFp.updateSourceEntitlementRequestConfig(requestParameters.
|
|
115746
|
+
return localVarFp.updateSourceEntitlementRequestConfig(requestParameters.sourceEntitlementRequestConfigV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
115825
115747
|
},
|
|
115826
115748
|
/**
|
|
115827
115749
|
* Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
|
|
@@ -116630,18 +116552,18 @@ export interface SourcesV2024ApiPutSourceAttrSyncConfigRequest {
|
|
|
116630
116552
|
readonly id: string
|
|
116631
116553
|
|
|
116632
116554
|
/**
|
|
116633
|
-
*
|
|
116634
|
-
* @type {
|
|
116555
|
+
*
|
|
116556
|
+
* @type {AttrSyncSourceConfigV2024}
|
|
116635
116557
|
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
116636
116558
|
*/
|
|
116637
|
-
readonly
|
|
116559
|
+
readonly attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024
|
|
116638
116560
|
|
|
116639
116561
|
/**
|
|
116640
|
-
*
|
|
116641
|
-
* @type {
|
|
116562
|
+
* Use this header to enable this experimental API.
|
|
116563
|
+
* @type {string}
|
|
116642
116564
|
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
116643
116565
|
*/
|
|
116644
|
-
readonly
|
|
116566
|
+
readonly xSailPointExperimental?: string
|
|
116645
116567
|
}
|
|
116646
116568
|
|
|
116647
116569
|
/**
|
|
@@ -116840,18 +116762,18 @@ export interface SourcesV2024ApiUpdateSourceRequest {
|
|
|
116840
116762
|
*/
|
|
116841
116763
|
export interface SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest {
|
|
116842
116764
|
/**
|
|
116843
|
-
*
|
|
116844
|
-
* @type {
|
|
116765
|
+
*
|
|
116766
|
+
* @type {SourceEntitlementRequestConfigV2024}
|
|
116845
116767
|
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
116846
116768
|
*/
|
|
116847
|
-
readonly
|
|
116769
|
+
readonly sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024
|
|
116848
116770
|
|
|
116849
116771
|
/**
|
|
116850
|
-
*
|
|
116851
|
-
* @type {
|
|
116772
|
+
* Use this header to enable this experimental API.
|
|
116773
|
+
* @type {string}
|
|
116852
116774
|
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
116853
116775
|
*/
|
|
116854
|
-
readonly
|
|
116776
|
+
readonly xSailPointExperimental?: string
|
|
116855
116777
|
}
|
|
116856
116778
|
|
|
116857
116779
|
/**
|
|
@@ -117382,7 +117304,7 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
117382
117304
|
* @memberof SourcesV2024Api
|
|
117383
117305
|
*/
|
|
117384
117306
|
public putSourceAttrSyncConfig(requestParameters: SourcesV2024ApiPutSourceAttrSyncConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
117385
|
-
return SourcesV2024ApiFp(this.configuration).putSourceAttrSyncConfig(requestParameters.id, requestParameters.
|
|
117307
|
+
return SourcesV2024ApiFp(this.configuration).putSourceAttrSyncConfig(requestParameters.id, requestParameters.attrSyncSourceConfigV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
117386
117308
|
}
|
|
117387
117309
|
|
|
117388
117310
|
/**
|
|
@@ -117502,7 +117424,7 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
117502
117424
|
* @memberof SourcesV2024Api
|
|
117503
117425
|
*/
|
|
117504
117426
|
public updateSourceEntitlementRequestConfig(requestParameters: SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
117505
|
-
return SourcesV2024ApiFp(this.configuration).updateSourceEntitlementRequestConfig(requestParameters.
|
|
117427
|
+
return SourcesV2024ApiFp(this.configuration).updateSourceEntitlementRequestConfig(requestParameters.sourceEntitlementRequestConfigV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
117506
117428
|
}
|
|
117507
117429
|
|
|
117508
117430
|
/**
|
|
@@ -120202,20 +120124,18 @@ export const TenantContextV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
120202
120124
|
/**
|
|
120203
120125
|
* 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.
|
|
120204
120126
|
* @summary Update tenant context
|
|
120205
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
120206
120127
|
* @param {JsonPatchOperationV2024} jsonPatchOperationV2024
|
|
120128
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
120207
120129
|
* @param {*} [axiosOptions] Override http request option.
|
|
120208
120130
|
* @throws {RequiredError}
|
|
120209
120131
|
*/
|
|
120210
|
-
patchTenantContext: async (
|
|
120132
|
+
patchTenantContext: async (jsonPatchOperationV2024: JsonPatchOperationV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
120133
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
120134
|
+
assertParamExists('patchTenantContext', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
120211
120135
|
if (xSailPointExperimental === undefined) {
|
|
120212
120136
|
xSailPointExperimental = 'true';
|
|
120213
120137
|
}
|
|
120214
120138
|
|
|
120215
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
120216
|
-
assertParamExists('patchTenantContext', 'xSailPointExperimental', xSailPointExperimental)
|
|
120217
|
-
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
120218
|
-
assertParamExists('patchTenantContext', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
120219
120139
|
const localVarPath = `/tenant-context`;
|
|
120220
120140
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
120221
120141
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -120279,13 +120199,13 @@ export const TenantContextV2024ApiFp = function(configuration?: Configuration) {
|
|
|
120279
120199
|
/**
|
|
120280
120200
|
* 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.
|
|
120281
120201
|
* @summary Update tenant context
|
|
120282
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
120283
120202
|
* @param {JsonPatchOperationV2024} jsonPatchOperationV2024
|
|
120203
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
120284
120204
|
* @param {*} [axiosOptions] Override http request option.
|
|
120285
120205
|
* @throws {RequiredError}
|
|
120286
120206
|
*/
|
|
120287
|
-
async patchTenantContext(
|
|
120288
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchTenantContext(
|
|
120207
|
+
async patchTenantContext(jsonPatchOperationV2024: JsonPatchOperationV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
120208
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchTenantContext(jsonPatchOperationV2024, xSailPointExperimental, axiosOptions);
|
|
120289
120209
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
120290
120210
|
const localVarOperationServerBasePath = operationServerMap['TenantContextV2024Api.patchTenantContext']?.[localVarOperationServerIndex]?.url;
|
|
120291
120211
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -120318,7 +120238,7 @@ export const TenantContextV2024ApiFactory = function (configuration?: Configurat
|
|
|
120318
120238
|
* @throws {RequiredError}
|
|
120319
120239
|
*/
|
|
120320
120240
|
patchTenantContext(requestParameters: TenantContextV2024ApiPatchTenantContextRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
120321
|
-
return localVarFp.patchTenantContext(requestParameters.
|
|
120241
|
+
return localVarFp.patchTenantContext(requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
120322
120242
|
},
|
|
120323
120243
|
};
|
|
120324
120244
|
};
|
|
@@ -120344,18 +120264,18 @@ export interface TenantContextV2024ApiGetTenantContextRequest {
|
|
|
120344
120264
|
*/
|
|
120345
120265
|
export interface TenantContextV2024ApiPatchTenantContextRequest {
|
|
120346
120266
|
/**
|
|
120347
|
-
*
|
|
120348
|
-
* @type {
|
|
120267
|
+
*
|
|
120268
|
+
* @type {JsonPatchOperationV2024}
|
|
120349
120269
|
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
120350
120270
|
*/
|
|
120351
|
-
readonly
|
|
120271
|
+
readonly jsonPatchOperationV2024: JsonPatchOperationV2024
|
|
120352
120272
|
|
|
120353
120273
|
/**
|
|
120354
|
-
*
|
|
120355
|
-
* @type {
|
|
120274
|
+
* Use this header to enable this experimental API.
|
|
120275
|
+
* @type {string}
|
|
120356
120276
|
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
120357
120277
|
*/
|
|
120358
|
-
readonly
|
|
120278
|
+
readonly xSailPointExperimental?: string
|
|
120359
120279
|
}
|
|
120360
120280
|
|
|
120361
120281
|
/**
|
|
@@ -120386,7 +120306,7 @@ export class TenantContextV2024Api extends BaseAPI {
|
|
|
120386
120306
|
* @memberof TenantContextV2024Api
|
|
120387
120307
|
*/
|
|
120388
120308
|
public patchTenantContext(requestParameters: TenantContextV2024ApiPatchTenantContextRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
120389
|
-
return TenantContextV2024ApiFp(this.configuration).patchTenantContext(requestParameters.
|
|
120309
|
+
return TenantContextV2024ApiFp(this.configuration).patchTenantContext(requestParameters.jsonPatchOperationV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
120390
120310
|
}
|
|
120391
120311
|
}
|
|
120392
120312
|
|
|
@@ -121071,19 +120991,17 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
121071
120991
|
* Deletes an existing subscription to a trigger.
|
|
121072
120992
|
* @summary Delete a subscription
|
|
121073
120993
|
* @param {string} id Subscription ID
|
|
121074
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
120994
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121075
120995
|
* @param {*} [axiosOptions] Override http request option.
|
|
121076
120996
|
* @throws {RequiredError}
|
|
121077
120997
|
*/
|
|
121078
|
-
deleteSubscription: async (id: string, xSailPointExperimental
|
|
120998
|
+
deleteSubscription: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
121079
120999
|
// verify required parameter 'id' is not null or undefined
|
|
121080
121000
|
assertParamExists('deleteSubscription', 'id', id)
|
|
121081
121001
|
if (xSailPointExperimental === undefined) {
|
|
121082
121002
|
xSailPointExperimental = 'true';
|
|
121083
121003
|
}
|
|
121084
121004
|
|
|
121085
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
121086
|
-
assertParamExists('deleteSubscription', 'xSailPointExperimental', xSailPointExperimental)
|
|
121087
121005
|
const localVarPath = `/trigger-subscriptions/{id}`
|
|
121088
121006
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
121089
121007
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -121122,22 +121040,20 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
121122
121040
|
/**
|
|
121123
121041
|
* Gets a list of all trigger subscriptions.
|
|
121124
121042
|
* @summary List subscriptions
|
|
121125
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
121126
121043
|
* @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.
|
|
121127
121044
|
* @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.
|
|
121128
121045
|
* @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.
|
|
121129
121046
|
* @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*
|
|
121130
121047
|
* @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**
|
|
121048
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121131
121049
|
* @param {*} [axiosOptions] Override http request option.
|
|
121132
121050
|
* @throws {RequiredError}
|
|
121133
121051
|
*/
|
|
121134
|
-
listSubscriptions: async (
|
|
121052
|
+
listSubscriptions: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
121135
121053
|
if (xSailPointExperimental === undefined) {
|
|
121136
121054
|
xSailPointExperimental = 'true';
|
|
121137
121055
|
}
|
|
121138
121056
|
|
|
121139
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
121140
|
-
assertParamExists('listSubscriptions', 'xSailPointExperimental', xSailPointExperimental)
|
|
121141
121057
|
const localVarPath = `/trigger-subscriptions`;
|
|
121142
121058
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
121143
121059
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -121338,22 +121254,20 @@ export const TriggersV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
121338
121254
|
* 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**
|
|
121339
121255
|
* @summary Patch a subscription
|
|
121340
121256
|
* @param {string} id ID of the Subscription to patch
|
|
121341
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
121342
121257
|
* @param {Array<SubscriptionPatchRequestInnerV2024>} subscriptionPatchRequestInnerV2024
|
|
121258
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121343
121259
|
* @param {*} [axiosOptions] Override http request option.
|
|
121344
121260
|
* @throws {RequiredError}
|
|
121345
121261
|
*/
|
|
121346
|
-
patchSubscription: async (id: string,
|
|
121262
|
+
patchSubscription: async (id: string, subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
121347
121263
|
// verify required parameter 'id' is not null or undefined
|
|
121348
121264
|
assertParamExists('patchSubscription', 'id', id)
|
|
121265
|
+
// verify required parameter 'subscriptionPatchRequestInnerV2024' is not null or undefined
|
|
121266
|
+
assertParamExists('patchSubscription', 'subscriptionPatchRequestInnerV2024', subscriptionPatchRequestInnerV2024)
|
|
121349
121267
|
if (xSailPointExperimental === undefined) {
|
|
121350
121268
|
xSailPointExperimental = 'true';
|
|
121351
121269
|
}
|
|
121352
121270
|
|
|
121353
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
121354
|
-
assertParamExists('patchSubscription', 'xSailPointExperimental', xSailPointExperimental)
|
|
121355
|
-
// verify required parameter 'subscriptionPatchRequestInnerV2024' is not null or undefined
|
|
121356
|
-
assertParamExists('patchSubscription', 'subscriptionPatchRequestInnerV2024', subscriptionPatchRequestInnerV2024)
|
|
121357
121271
|
const localVarPath = `/trigger-subscriptions/{id}`
|
|
121358
121272
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
121359
121273
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -121595,11 +121509,11 @@ export const TriggersV2024ApiFp = function(configuration?: Configuration) {
|
|
|
121595
121509
|
* Deletes an existing subscription to a trigger.
|
|
121596
121510
|
* @summary Delete a subscription
|
|
121597
121511
|
* @param {string} id Subscription ID
|
|
121598
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
121512
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121599
121513
|
* @param {*} [axiosOptions] Override http request option.
|
|
121600
121514
|
* @throws {RequiredError}
|
|
121601
121515
|
*/
|
|
121602
|
-
async deleteSubscription(id: string, xSailPointExperimental
|
|
121516
|
+
async deleteSubscription(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
121603
121517
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSubscription(id, xSailPointExperimental, axiosOptions);
|
|
121604
121518
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
121605
121519
|
const localVarOperationServerBasePath = operationServerMap['TriggersV2024Api.deleteSubscription']?.[localVarOperationServerIndex]?.url;
|
|
@@ -121608,17 +121522,17 @@ export const TriggersV2024ApiFp = function(configuration?: Configuration) {
|
|
|
121608
121522
|
/**
|
|
121609
121523
|
* Gets a list of all trigger subscriptions.
|
|
121610
121524
|
* @summary List subscriptions
|
|
121611
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
121612
121525
|
* @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.
|
|
121613
121526
|
* @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.
|
|
121614
121527
|
* @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.
|
|
121615
121528
|
* @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*
|
|
121616
121529
|
* @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**
|
|
121530
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121617
121531
|
* @param {*} [axiosOptions] Override http request option.
|
|
121618
121532
|
* @throws {RequiredError}
|
|
121619
121533
|
*/
|
|
121620
|
-
async listSubscriptions(
|
|
121621
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubscriptions(
|
|
121534
|
+
async listSubscriptions(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SubscriptionV2024>>> {
|
|
121535
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSubscriptions(limit, offset, count, filters, sorters, xSailPointExperimental, axiosOptions);
|
|
121622
121536
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
121623
121537
|
const localVarOperationServerBasePath = operationServerMap['TriggersV2024Api.listSubscriptions']?.[localVarOperationServerIndex]?.url;
|
|
121624
121538
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -121663,13 +121577,13 @@ export const TriggersV2024ApiFp = function(configuration?: Configuration) {
|
|
|
121663
121577
|
* 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**
|
|
121664
121578
|
* @summary Patch a subscription
|
|
121665
121579
|
* @param {string} id ID of the Subscription to patch
|
|
121666
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
121667
121580
|
* @param {Array<SubscriptionPatchRequestInnerV2024>} subscriptionPatchRequestInnerV2024
|
|
121581
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121668
121582
|
* @param {*} [axiosOptions] Override http request option.
|
|
121669
121583
|
* @throws {RequiredError}
|
|
121670
121584
|
*/
|
|
121671
|
-
async patchSubscription(id: string,
|
|
121672
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSubscription(id,
|
|
121585
|
+
async patchSubscription(id: string, subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriptionV2024>> {
|
|
121586
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchSubscription(id, subscriptionPatchRequestInnerV2024, xSailPointExperimental, axiosOptions);
|
|
121673
121587
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
121674
121588
|
const localVarOperationServerBasePath = operationServerMap['TriggersV2024Api.patchSubscription']?.[localVarOperationServerIndex]?.url;
|
|
121675
121589
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -121764,8 +121678,8 @@ export const TriggersV2024ApiFactory = function (configuration?: Configuration,
|
|
|
121764
121678
|
* @param {*} [axiosOptions] Override http request option.
|
|
121765
121679
|
* @throws {RequiredError}
|
|
121766
121680
|
*/
|
|
121767
|
-
listSubscriptions(requestParameters: TriggersV2024ApiListSubscriptionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SubscriptionV2024>> {
|
|
121768
|
-
return localVarFp.listSubscriptions(requestParameters.
|
|
121681
|
+
listSubscriptions(requestParameters: TriggersV2024ApiListSubscriptionsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SubscriptionV2024>> {
|
|
121682
|
+
return localVarFp.listSubscriptions(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
121769
121683
|
},
|
|
121770
121684
|
/**
|
|
121771
121685
|
* 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.
|
|
@@ -121795,7 +121709,7 @@ export const TriggersV2024ApiFactory = function (configuration?: Configuration,
|
|
|
121795
121709
|
* @throws {RequiredError}
|
|
121796
121710
|
*/
|
|
121797
121711
|
patchSubscription(requestParameters: TriggersV2024ApiPatchSubscriptionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SubscriptionV2024> {
|
|
121798
|
-
return localVarFp.patchSubscription(requestParameters.id, requestParameters.
|
|
121712
|
+
return localVarFp.patchSubscription(requestParameters.id, requestParameters.subscriptionPatchRequestInnerV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
121799
121713
|
},
|
|
121800
121714
|
/**
|
|
121801
121715
|
* 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.
|
|
@@ -121897,7 +121811,7 @@ export interface TriggersV2024ApiDeleteSubscriptionRequest {
|
|
|
121897
121811
|
* @type {string}
|
|
121898
121812
|
* @memberof TriggersV2024ApiDeleteSubscription
|
|
121899
121813
|
*/
|
|
121900
|
-
readonly xSailPointExperimental
|
|
121814
|
+
readonly xSailPointExperimental?: string
|
|
121901
121815
|
}
|
|
121902
121816
|
|
|
121903
121817
|
/**
|
|
@@ -121906,13 +121820,6 @@ export interface TriggersV2024ApiDeleteSubscriptionRequest {
|
|
|
121906
121820
|
* @interface TriggersV2024ApiListSubscriptionsRequest
|
|
121907
121821
|
*/
|
|
121908
121822
|
export interface TriggersV2024ApiListSubscriptionsRequest {
|
|
121909
|
-
/**
|
|
121910
|
-
* Use this header to enable this experimental API.
|
|
121911
|
-
* @type {string}
|
|
121912
|
-
* @memberof TriggersV2024ApiListSubscriptions
|
|
121913
|
-
*/
|
|
121914
|
-
readonly xSailPointExperimental: string
|
|
121915
|
-
|
|
121916
121823
|
/**
|
|
121917
121824
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
121918
121825
|
* @type {number}
|
|
@@ -121947,6 +121854,13 @@ export interface TriggersV2024ApiListSubscriptionsRequest {
|
|
|
121947
121854
|
* @memberof TriggersV2024ApiListSubscriptions
|
|
121948
121855
|
*/
|
|
121949
121856
|
readonly sorters?: string
|
|
121857
|
+
|
|
121858
|
+
/**
|
|
121859
|
+
* Use this header to enable this experimental API.
|
|
121860
|
+
* @type {string}
|
|
121861
|
+
* @memberof TriggersV2024ApiListSubscriptions
|
|
121862
|
+
*/
|
|
121863
|
+
readonly xSailPointExperimental?: string
|
|
121950
121864
|
}
|
|
121951
121865
|
|
|
121952
121866
|
/**
|
|
@@ -122061,18 +121975,18 @@ export interface TriggersV2024ApiPatchSubscriptionRequest {
|
|
|
122061
121975
|
readonly id: string
|
|
122062
121976
|
|
|
122063
121977
|
/**
|
|
122064
|
-
*
|
|
122065
|
-
* @type {
|
|
121978
|
+
*
|
|
121979
|
+
* @type {Array<SubscriptionPatchRequestInnerV2024>}
|
|
122066
121980
|
* @memberof TriggersV2024ApiPatchSubscription
|
|
122067
121981
|
*/
|
|
122068
|
-
readonly
|
|
121982
|
+
readonly subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>
|
|
122069
121983
|
|
|
122070
121984
|
/**
|
|
122071
|
-
*
|
|
122072
|
-
* @type {
|
|
121985
|
+
* Use this header to enable this experimental API.
|
|
121986
|
+
* @type {string}
|
|
122073
121987
|
* @memberof TriggersV2024ApiPatchSubscription
|
|
122074
121988
|
*/
|
|
122075
|
-
readonly
|
|
121989
|
+
readonly xSailPointExperimental?: string
|
|
122076
121990
|
}
|
|
122077
121991
|
|
|
122078
121992
|
/**
|
|
@@ -122196,8 +122110,8 @@ export class TriggersV2024Api extends BaseAPI {
|
|
|
122196
122110
|
* @throws {RequiredError}
|
|
122197
122111
|
* @memberof TriggersV2024Api
|
|
122198
122112
|
*/
|
|
122199
|
-
public listSubscriptions(requestParameters: TriggersV2024ApiListSubscriptionsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
122200
|
-
return TriggersV2024ApiFp(this.configuration).listSubscriptions(requestParameters.
|
|
122113
|
+
public listSubscriptions(requestParameters: TriggersV2024ApiListSubscriptionsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
122114
|
+
return TriggersV2024ApiFp(this.configuration).listSubscriptions(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
122201
122115
|
}
|
|
122202
122116
|
|
|
122203
122117
|
/**
|
|
@@ -122233,7 +122147,7 @@ export class TriggersV2024Api extends BaseAPI {
|
|
|
122233
122147
|
* @memberof TriggersV2024Api
|
|
122234
122148
|
*/
|
|
122235
122149
|
public patchSubscription(requestParameters: TriggersV2024ApiPatchSubscriptionRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
122236
|
-
return TriggersV2024ApiFp(this.configuration).patchSubscription(requestParameters.id, requestParameters.
|
|
122150
|
+
return TriggersV2024ApiFp(this.configuration).patchSubscription(requestParameters.id, requestParameters.subscriptionPatchRequestInnerV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
122237
122151
|
}
|
|
122238
122152
|
|
|
122239
122153
|
/**
|
|
@@ -122330,20 +122244,18 @@ export const UIMetadataV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
122330
122244
|
/**
|
|
122331
122245
|
* This API endpoint updates UI metadata for your tenant. These changes may require up to 5 minutes to take effect on the UI.
|
|
122332
122246
|
* @summary Update tenant ui metadata
|
|
122333
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
122334
122247
|
* @param {TenantUiMetadataItemUpdateRequestV2024} tenantUiMetadataItemUpdateRequestV2024
|
|
122248
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
122335
122249
|
* @param {*} [axiosOptions] Override http request option.
|
|
122336
122250
|
* @throws {RequiredError}
|
|
122337
122251
|
*/
|
|
122338
|
-
setTenantUiMetadata: async (
|
|
122252
|
+
setTenantUiMetadata: async (tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
122253
|
+
// verify required parameter 'tenantUiMetadataItemUpdateRequestV2024' is not null or undefined
|
|
122254
|
+
assertParamExists('setTenantUiMetadata', 'tenantUiMetadataItemUpdateRequestV2024', tenantUiMetadataItemUpdateRequestV2024)
|
|
122339
122255
|
if (xSailPointExperimental === undefined) {
|
|
122340
122256
|
xSailPointExperimental = 'true';
|
|
122341
122257
|
}
|
|
122342
122258
|
|
|
122343
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
122344
|
-
assertParamExists('setTenantUiMetadata', 'xSailPointExperimental', xSailPointExperimental)
|
|
122345
|
-
// verify required parameter 'tenantUiMetadataItemUpdateRequestV2024' is not null or undefined
|
|
122346
|
-
assertParamExists('setTenantUiMetadata', 'tenantUiMetadataItemUpdateRequestV2024', tenantUiMetadataItemUpdateRequestV2024)
|
|
122347
122259
|
const localVarPath = `/ui-metadata/tenant`;
|
|
122348
122260
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
122349
122261
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -122407,13 +122319,13 @@ export const UIMetadataV2024ApiFp = function(configuration?: Configuration) {
|
|
|
122407
122319
|
/**
|
|
122408
122320
|
* This API endpoint updates UI metadata for your tenant. These changes may require up to 5 minutes to take effect on the UI.
|
|
122409
122321
|
* @summary Update tenant ui metadata
|
|
122410
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
122411
122322
|
* @param {TenantUiMetadataItemUpdateRequestV2024} tenantUiMetadataItemUpdateRequestV2024
|
|
122323
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
122412
122324
|
* @param {*} [axiosOptions] Override http request option.
|
|
122413
122325
|
* @throws {RequiredError}
|
|
122414
122326
|
*/
|
|
122415
|
-
async setTenantUiMetadata(
|
|
122416
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.setTenantUiMetadata(
|
|
122327
|
+
async setTenantUiMetadata(tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantUiMetadataItemResponseV2024>> {
|
|
122328
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setTenantUiMetadata(tenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental, axiosOptions);
|
|
122417
122329
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
122418
122330
|
const localVarOperationServerBasePath = operationServerMap['UIMetadataV2024Api.setTenantUiMetadata']?.[localVarOperationServerIndex]?.url;
|
|
122419
122331
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -122446,7 +122358,7 @@ export const UIMetadataV2024ApiFactory = function (configuration?: Configuration
|
|
|
122446
122358
|
* @throws {RequiredError}
|
|
122447
122359
|
*/
|
|
122448
122360
|
setTenantUiMetadata(requestParameters: UIMetadataV2024ApiSetTenantUiMetadataRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TenantUiMetadataItemResponseV2024> {
|
|
122449
|
-
return localVarFp.setTenantUiMetadata(requestParameters.
|
|
122361
|
+
return localVarFp.setTenantUiMetadata(requestParameters.tenantUiMetadataItemUpdateRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
122450
122362
|
},
|
|
122451
122363
|
};
|
|
122452
122364
|
};
|
|
@@ -122472,18 +122384,18 @@ export interface UIMetadataV2024ApiGetTenantUiMetadataRequest {
|
|
|
122472
122384
|
*/
|
|
122473
122385
|
export interface UIMetadataV2024ApiSetTenantUiMetadataRequest {
|
|
122474
122386
|
/**
|
|
122475
|
-
*
|
|
122476
|
-
* @type {
|
|
122387
|
+
*
|
|
122388
|
+
* @type {TenantUiMetadataItemUpdateRequestV2024}
|
|
122477
122389
|
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
122478
122390
|
*/
|
|
122479
|
-
readonly
|
|
122391
|
+
readonly tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024
|
|
122480
122392
|
|
|
122481
122393
|
/**
|
|
122482
|
-
*
|
|
122483
|
-
* @type {
|
|
122394
|
+
* Use this header to enable this experimental API.
|
|
122395
|
+
* @type {string}
|
|
122484
122396
|
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
122485
122397
|
*/
|
|
122486
|
-
readonly
|
|
122398
|
+
readonly xSailPointExperimental?: string
|
|
122487
122399
|
}
|
|
122488
122400
|
|
|
122489
122401
|
/**
|
|
@@ -122514,7 +122426,7 @@ export class UIMetadataV2024Api extends BaseAPI {
|
|
|
122514
122426
|
* @memberof UIMetadataV2024Api
|
|
122515
122427
|
*/
|
|
122516
122428
|
public setTenantUiMetadata(requestParameters: UIMetadataV2024ApiSetTenantUiMetadataRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
122517
|
-
return UIMetadataV2024ApiFp(this.configuration).setTenantUiMetadata(requestParameters.
|
|
122429
|
+
return UIMetadataV2024ApiFp(this.configuration).setTenantUiMetadata(requestParameters.tenantUiMetadataItemUpdateRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
122518
122430
|
}
|
|
122519
122431
|
}
|
|
122520
122432
|
|
|
@@ -124225,20 +124137,18 @@ export const WorkReassignmentV2024ApiAxiosParamCreator = function (configuration
|
|
|
124225
124137
|
/**
|
|
124226
124138
|
* Creates a new Reassignment Configuration for the specified identity.
|
|
124227
124139
|
* @summary Create a reassignment configuration
|
|
124228
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
124229
124140
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
124141
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
124230
124142
|
* @param {*} [axiosOptions] Override http request option.
|
|
124231
124143
|
* @throws {RequiredError}
|
|
124232
124144
|
*/
|
|
124233
|
-
createReassignmentConfiguration: async (
|
|
124145
|
+
createReassignmentConfiguration: async (configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
124146
|
+
// verify required parameter 'configurationItemRequestV2024' is not null or undefined
|
|
124147
|
+
assertParamExists('createReassignmentConfiguration', 'configurationItemRequestV2024', configurationItemRequestV2024)
|
|
124234
124148
|
if (xSailPointExperimental === undefined) {
|
|
124235
124149
|
xSailPointExperimental = 'true';
|
|
124236
124150
|
}
|
|
124237
124151
|
|
|
124238
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
124239
|
-
assertParamExists('createReassignmentConfiguration', 'xSailPointExperimental', xSailPointExperimental)
|
|
124240
|
-
// verify required parameter 'configurationItemRequestV2024' is not null or undefined
|
|
124241
|
-
assertParamExists('createReassignmentConfiguration', 'configurationItemRequestV2024', configurationItemRequestV2024)
|
|
124242
124152
|
const localVarPath = `/reassignment-configurations`;
|
|
124243
124153
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
124244
124154
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -124581,22 +124491,20 @@ export const WorkReassignmentV2024ApiAxiosParamCreator = function (configuration
|
|
|
124581
124491
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
124582
124492
|
* @summary Update reassignment configuration
|
|
124583
124493
|
* @param {string} identityId unique identity id
|
|
124584
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
124585
124494
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
124495
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
124586
124496
|
* @param {*} [axiosOptions] Override http request option.
|
|
124587
124497
|
* @throws {RequiredError}
|
|
124588
124498
|
*/
|
|
124589
|
-
putReassignmentConfig: async (identityId: string,
|
|
124499
|
+
putReassignmentConfig: async (identityId: string, configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
124590
124500
|
// verify required parameter 'identityId' is not null or undefined
|
|
124591
124501
|
assertParamExists('putReassignmentConfig', 'identityId', identityId)
|
|
124502
|
+
// verify required parameter 'configurationItemRequestV2024' is not null or undefined
|
|
124503
|
+
assertParamExists('putReassignmentConfig', 'configurationItemRequestV2024', configurationItemRequestV2024)
|
|
124592
124504
|
if (xSailPointExperimental === undefined) {
|
|
124593
124505
|
xSailPointExperimental = 'true';
|
|
124594
124506
|
}
|
|
124595
124507
|
|
|
124596
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
124597
|
-
assertParamExists('putReassignmentConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
124598
|
-
// verify required parameter 'configurationItemRequestV2024' is not null or undefined
|
|
124599
|
-
assertParamExists('putReassignmentConfig', 'configurationItemRequestV2024', configurationItemRequestV2024)
|
|
124600
124508
|
const localVarPath = `/reassignment-configurations/{identityId}`
|
|
124601
124509
|
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)));
|
|
124602
124510
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -124638,20 +124546,18 @@ export const WorkReassignmentV2024ApiAxiosParamCreator = function (configuration
|
|
|
124638
124546
|
/**
|
|
124639
124547
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
124640
124548
|
* @summary Update tenant-wide reassignment configuration settings
|
|
124641
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
124642
124549
|
* @param {TenantConfigurationRequestV2024} tenantConfigurationRequestV2024
|
|
124550
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
124643
124551
|
* @param {*} [axiosOptions] Override http request option.
|
|
124644
124552
|
* @throws {RequiredError}
|
|
124645
124553
|
*/
|
|
124646
|
-
putTenantConfiguration: async (
|
|
124554
|
+
putTenantConfiguration: async (tenantConfigurationRequestV2024: TenantConfigurationRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
124555
|
+
// verify required parameter 'tenantConfigurationRequestV2024' is not null or undefined
|
|
124556
|
+
assertParamExists('putTenantConfiguration', 'tenantConfigurationRequestV2024', tenantConfigurationRequestV2024)
|
|
124647
124557
|
if (xSailPointExperimental === undefined) {
|
|
124648
124558
|
xSailPointExperimental = 'true';
|
|
124649
124559
|
}
|
|
124650
124560
|
|
|
124651
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
124652
|
-
assertParamExists('putTenantConfiguration', 'xSailPointExperimental', xSailPointExperimental)
|
|
124653
|
-
// verify required parameter 'tenantConfigurationRequestV2024' is not null or undefined
|
|
124654
|
-
assertParamExists('putTenantConfiguration', 'tenantConfigurationRequestV2024', tenantConfigurationRequestV2024)
|
|
124655
124561
|
const localVarPath = `/reassignment-configurations/tenant-config`;
|
|
124656
124562
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
124657
124563
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -124702,13 +124608,13 @@ export const WorkReassignmentV2024ApiFp = function(configuration?: Configuration
|
|
|
124702
124608
|
/**
|
|
124703
124609
|
* Creates a new Reassignment Configuration for the specified identity.
|
|
124704
124610
|
* @summary Create a reassignment configuration
|
|
124705
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
124706
124611
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
124612
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
124707
124613
|
* @param {*} [axiosOptions] Override http request option.
|
|
124708
124614
|
* @throws {RequiredError}
|
|
124709
124615
|
*/
|
|
124710
|
-
async createReassignmentConfiguration(
|
|
124711
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReassignmentConfiguration(
|
|
124616
|
+
async createReassignmentConfiguration(configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponseV2024>> {
|
|
124617
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReassignmentConfiguration(configurationItemRequestV2024, xSailPointExperimental, axiosOptions);
|
|
124712
124618
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
124713
124619
|
const localVarOperationServerBasePath = operationServerMap['WorkReassignmentV2024Api.createReassignmentConfiguration']?.[localVarOperationServerIndex]?.url;
|
|
124714
124620
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -124801,13 +124707,13 @@ export const WorkReassignmentV2024ApiFp = function(configuration?: Configuration
|
|
|
124801
124707
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
124802
124708
|
* @summary Update reassignment configuration
|
|
124803
124709
|
* @param {string} identityId unique identity id
|
|
124804
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
124805
124710
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
124711
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
124806
124712
|
* @param {*} [axiosOptions] Override http request option.
|
|
124807
124713
|
* @throws {RequiredError}
|
|
124808
124714
|
*/
|
|
124809
|
-
async putReassignmentConfig(identityId: string,
|
|
124810
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putReassignmentConfig(identityId,
|
|
124715
|
+
async putReassignmentConfig(identityId: string, configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponseV2024>> {
|
|
124716
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putReassignmentConfig(identityId, configurationItemRequestV2024, xSailPointExperimental, axiosOptions);
|
|
124811
124717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
124812
124718
|
const localVarOperationServerBasePath = operationServerMap['WorkReassignmentV2024Api.putReassignmentConfig']?.[localVarOperationServerIndex]?.url;
|
|
124813
124719
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -124815,13 +124721,13 @@ export const WorkReassignmentV2024ApiFp = function(configuration?: Configuration
|
|
|
124815
124721
|
/**
|
|
124816
124722
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
124817
124723
|
* @summary Update tenant-wide reassignment configuration settings
|
|
124818
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
124819
124724
|
* @param {TenantConfigurationRequestV2024} tenantConfigurationRequestV2024
|
|
124725
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
124820
124726
|
* @param {*} [axiosOptions] Override http request option.
|
|
124821
124727
|
* @throws {RequiredError}
|
|
124822
124728
|
*/
|
|
124823
|
-
async putTenantConfiguration(
|
|
124824
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putTenantConfiguration(
|
|
124729
|
+
async putTenantConfiguration(tenantConfigurationRequestV2024: TenantConfigurationRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponseV2024>> {
|
|
124730
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putTenantConfiguration(tenantConfigurationRequestV2024, xSailPointExperimental, axiosOptions);
|
|
124825
124731
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
124826
124732
|
const localVarOperationServerBasePath = operationServerMap['WorkReassignmentV2024Api.putTenantConfiguration']?.[localVarOperationServerIndex]?.url;
|
|
124827
124733
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -124844,7 +124750,7 @@ export const WorkReassignmentV2024ApiFactory = function (configuration?: Configu
|
|
|
124844
124750
|
* @throws {RequiredError}
|
|
124845
124751
|
*/
|
|
124846
124752
|
createReassignmentConfiguration(requestParameters: WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationItemResponseV2024> {
|
|
124847
|
-
return localVarFp.createReassignmentConfiguration(requestParameters.
|
|
124753
|
+
return localVarFp.createReassignmentConfiguration(requestParameters.configurationItemRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
124848
124754
|
},
|
|
124849
124755
|
/**
|
|
124850
124756
|
* Deletes a single reassignment configuration for the specified identity
|
|
@@ -124914,7 +124820,7 @@ export const WorkReassignmentV2024ApiFactory = function (configuration?: Configu
|
|
|
124914
124820
|
* @throws {RequiredError}
|
|
124915
124821
|
*/
|
|
124916
124822
|
putReassignmentConfig(requestParameters: WorkReassignmentV2024ApiPutReassignmentConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationItemResponseV2024> {
|
|
124917
|
-
return localVarFp.putReassignmentConfig(requestParameters.identityId, requestParameters.
|
|
124823
|
+
return localVarFp.putReassignmentConfig(requestParameters.identityId, requestParameters.configurationItemRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
124918
124824
|
},
|
|
124919
124825
|
/**
|
|
124920
124826
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
@@ -124924,7 +124830,7 @@ export const WorkReassignmentV2024ApiFactory = function (configuration?: Configu
|
|
|
124924
124830
|
* @throws {RequiredError}
|
|
124925
124831
|
*/
|
|
124926
124832
|
putTenantConfiguration(requestParameters: WorkReassignmentV2024ApiPutTenantConfigurationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TenantConfigurationResponseV2024> {
|
|
124927
|
-
return localVarFp.putTenantConfiguration(requestParameters.
|
|
124833
|
+
return localVarFp.putTenantConfiguration(requestParameters.tenantConfigurationRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
124928
124834
|
},
|
|
124929
124835
|
};
|
|
124930
124836
|
};
|
|
@@ -124936,18 +124842,18 @@ export const WorkReassignmentV2024ApiFactory = function (configuration?: Configu
|
|
|
124936
124842
|
*/
|
|
124937
124843
|
export interface WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest {
|
|
124938
124844
|
/**
|
|
124939
|
-
*
|
|
124940
|
-
* @type {
|
|
124845
|
+
*
|
|
124846
|
+
* @type {ConfigurationItemRequestV2024}
|
|
124941
124847
|
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
124942
124848
|
*/
|
|
124943
|
-
readonly
|
|
124849
|
+
readonly configurationItemRequestV2024: ConfigurationItemRequestV2024
|
|
124944
124850
|
|
|
124945
124851
|
/**
|
|
124946
|
-
*
|
|
124947
|
-
* @type {
|
|
124852
|
+
* Use this header to enable this experimental API.
|
|
124853
|
+
* @type {string}
|
|
124948
124854
|
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
124949
124855
|
*/
|
|
124950
|
-
readonly
|
|
124856
|
+
readonly xSailPointExperimental?: string
|
|
124951
124857
|
}
|
|
124952
124858
|
|
|
124953
124859
|
/**
|
|
@@ -125090,18 +124996,18 @@ export interface WorkReassignmentV2024ApiPutReassignmentConfigRequest {
|
|
|
125090
124996
|
readonly identityId: string
|
|
125091
124997
|
|
|
125092
124998
|
/**
|
|
125093
|
-
*
|
|
125094
|
-
* @type {
|
|
124999
|
+
*
|
|
125000
|
+
* @type {ConfigurationItemRequestV2024}
|
|
125095
125001
|
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
125096
125002
|
*/
|
|
125097
|
-
readonly
|
|
125003
|
+
readonly configurationItemRequestV2024: ConfigurationItemRequestV2024
|
|
125098
125004
|
|
|
125099
125005
|
/**
|
|
125100
|
-
*
|
|
125101
|
-
* @type {
|
|
125006
|
+
* Use this header to enable this experimental API.
|
|
125007
|
+
* @type {string}
|
|
125102
125008
|
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
125103
125009
|
*/
|
|
125104
|
-
readonly
|
|
125010
|
+
readonly xSailPointExperimental?: string
|
|
125105
125011
|
}
|
|
125106
125012
|
|
|
125107
125013
|
/**
|
|
@@ -125111,18 +125017,18 @@ export interface WorkReassignmentV2024ApiPutReassignmentConfigRequest {
|
|
|
125111
125017
|
*/
|
|
125112
125018
|
export interface WorkReassignmentV2024ApiPutTenantConfigurationRequest {
|
|
125113
125019
|
/**
|
|
125114
|
-
*
|
|
125115
|
-
* @type {
|
|
125020
|
+
*
|
|
125021
|
+
* @type {TenantConfigurationRequestV2024}
|
|
125116
125022
|
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
125117
125023
|
*/
|
|
125118
|
-
readonly
|
|
125024
|
+
readonly tenantConfigurationRequestV2024: TenantConfigurationRequestV2024
|
|
125119
125025
|
|
|
125120
125026
|
/**
|
|
125121
|
-
*
|
|
125122
|
-
* @type {
|
|
125027
|
+
* Use this header to enable this experimental API.
|
|
125028
|
+
* @type {string}
|
|
125123
125029
|
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
125124
125030
|
*/
|
|
125125
|
-
readonly
|
|
125031
|
+
readonly xSailPointExperimental?: string
|
|
125126
125032
|
}
|
|
125127
125033
|
|
|
125128
125034
|
/**
|
|
@@ -125141,7 +125047,7 @@ export class WorkReassignmentV2024Api extends BaseAPI {
|
|
|
125141
125047
|
* @memberof WorkReassignmentV2024Api
|
|
125142
125048
|
*/
|
|
125143
125049
|
public createReassignmentConfiguration(requestParameters: WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
125144
|
-
return WorkReassignmentV2024ApiFp(this.configuration).createReassignmentConfiguration(requestParameters.
|
|
125050
|
+
return WorkReassignmentV2024ApiFp(this.configuration).createReassignmentConfiguration(requestParameters.configurationItemRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
125145
125051
|
}
|
|
125146
125052
|
|
|
125147
125053
|
/**
|
|
@@ -125225,7 +125131,7 @@ export class WorkReassignmentV2024Api extends BaseAPI {
|
|
|
125225
125131
|
* @memberof WorkReassignmentV2024Api
|
|
125226
125132
|
*/
|
|
125227
125133
|
public putReassignmentConfig(requestParameters: WorkReassignmentV2024ApiPutReassignmentConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
125228
|
-
return WorkReassignmentV2024ApiFp(this.configuration).putReassignmentConfig(requestParameters.identityId, requestParameters.
|
|
125134
|
+
return WorkReassignmentV2024ApiFp(this.configuration).putReassignmentConfig(requestParameters.identityId, requestParameters.configurationItemRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
125229
125135
|
}
|
|
125230
125136
|
|
|
125231
125137
|
/**
|
|
@@ -125237,7 +125143,7 @@ export class WorkReassignmentV2024Api extends BaseAPI {
|
|
|
125237
125143
|
* @memberof WorkReassignmentV2024Api
|
|
125238
125144
|
*/
|
|
125239
125145
|
public putTenantConfiguration(requestParameters: WorkReassignmentV2024ApiPutTenantConfigurationRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
125240
|
-
return WorkReassignmentV2024ApiFp(this.configuration).putTenantConfiguration(requestParameters.
|
|
125146
|
+
return WorkReassignmentV2024ApiFp(this.configuration).putTenantConfiguration(requestParameters.tenantConfigurationRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
125241
125147
|
}
|
|
125242
125148
|
}
|
|
125243
125149
|
|