sailpoint-api-client 1.7.18 → 1.7.19
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/api.ts +117 -71
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +96 -55
- package/dist/beta/api.js +45 -31
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +91 -50
- package/dist/v2024/api.js +42 -28
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +91 -50
- package/dist/v2025/api.js +42 -28
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/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 +112 -66
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +112 -66
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2025/api.ts
CHANGED
|
@@ -8574,6 +8574,13 @@ export interface ArgumentV2025 {
|
|
|
8574
8574
|
*/
|
|
8575
8575
|
'type'?: string | null;
|
|
8576
8576
|
}
|
|
8577
|
+
/**
|
|
8578
|
+
*
|
|
8579
|
+
* @export
|
|
8580
|
+
* @interface ArrayInner1V2025
|
|
8581
|
+
*/
|
|
8582
|
+
export interface ArrayInner1V2025 {
|
|
8583
|
+
}
|
|
8577
8584
|
/**
|
|
8578
8585
|
*
|
|
8579
8586
|
* @export
|
|
@@ -24874,6 +24881,46 @@ export interface JITConfigurationV2025 {
|
|
|
24874
24881
|
*/
|
|
24875
24882
|
'sourceAttributeMappings'?: { [key: string]: string; };
|
|
24876
24883
|
}
|
|
24884
|
+
/**
|
|
24885
|
+
* A JSONPatch Operation for Role Mining endpoints, supporting only remove and replace operations as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
|
|
24886
|
+
* @export
|
|
24887
|
+
* @interface JsonPatchOperationRoleMiningV2025
|
|
24888
|
+
*/
|
|
24889
|
+
export interface JsonPatchOperationRoleMiningV2025 {
|
|
24890
|
+
/**
|
|
24891
|
+
* The operation to be performed
|
|
24892
|
+
* @type {string}
|
|
24893
|
+
* @memberof JsonPatchOperationRoleMiningV2025
|
|
24894
|
+
*/
|
|
24895
|
+
'op': JsonPatchOperationRoleMiningV2025OpV2025;
|
|
24896
|
+
/**
|
|
24897
|
+
* A string JSON Pointer representing the target path to an element to be affected by the operation
|
|
24898
|
+
* @type {string}
|
|
24899
|
+
* @memberof JsonPatchOperationRoleMiningV2025
|
|
24900
|
+
*/
|
|
24901
|
+
'path': string;
|
|
24902
|
+
/**
|
|
24903
|
+
*
|
|
24904
|
+
* @type {JsonPatchOperationRoleMiningValueV2025}
|
|
24905
|
+
* @memberof JsonPatchOperationRoleMiningV2025
|
|
24906
|
+
*/
|
|
24907
|
+
'value'?: JsonPatchOperationRoleMiningValueV2025;
|
|
24908
|
+
}
|
|
24909
|
+
|
|
24910
|
+
export const JsonPatchOperationRoleMiningV2025OpV2025 = {
|
|
24911
|
+
Remove: 'remove',
|
|
24912
|
+
Replace: 'replace'
|
|
24913
|
+
} as const;
|
|
24914
|
+
|
|
24915
|
+
export type JsonPatchOperationRoleMiningV2025OpV2025 = typeof JsonPatchOperationRoleMiningV2025OpV2025[keyof typeof JsonPatchOperationRoleMiningV2025OpV2025];
|
|
24916
|
+
|
|
24917
|
+
/**
|
|
24918
|
+
* @type JsonPatchOperationRoleMiningValueV2025
|
|
24919
|
+
* The value to be used for the operation, required for \"replace\" operations
|
|
24920
|
+
* @export
|
|
24921
|
+
*/
|
|
24922
|
+
export type JsonPatchOperationRoleMiningValueV2025 = Array<ArrayInner1V2025> | boolean | number | object | string;
|
|
24923
|
+
|
|
24877
24924
|
/**
|
|
24878
24925
|
* A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
|
|
24879
24926
|
* @export
|
|
@@ -24901,8 +24948,12 @@ export interface JsonPatchOperationV2025 {
|
|
|
24901
24948
|
}
|
|
24902
24949
|
|
|
24903
24950
|
export const JsonPatchOperationV2025OpV2025 = {
|
|
24951
|
+
Add: 'add',
|
|
24904
24952
|
Remove: 'remove',
|
|
24905
|
-
Replace: 'replace'
|
|
24953
|
+
Replace: 'replace',
|
|
24954
|
+
Move: 'move',
|
|
24955
|
+
Copy: 'copy',
|
|
24956
|
+
Test: 'test'
|
|
24906
24957
|
} as const;
|
|
24907
24958
|
|
|
24908
24959
|
export type JsonPatchOperationV2025OpV2025 = typeof JsonPatchOperationV2025OpV2025[keyof typeof JsonPatchOperationV2025OpV2025];
|
|
@@ -33625,39 +33676,6 @@ export const PatOwnerV2025TypeV2025 = {
|
|
|
33625
33676
|
|
|
33626
33677
|
export type PatOwnerV2025TypeV2025 = typeof PatOwnerV2025TypeV2025[keyof typeof PatOwnerV2025TypeV2025];
|
|
33627
33678
|
|
|
33628
|
-
/**
|
|
33629
|
-
*
|
|
33630
|
-
* @export
|
|
33631
|
-
* @interface PatchPotentialRoleRequestInnerV2025
|
|
33632
|
-
*/
|
|
33633
|
-
export interface PatchPotentialRoleRequestInnerV2025 {
|
|
33634
|
-
/**
|
|
33635
|
-
* The operation to be performed
|
|
33636
|
-
* @type {string}
|
|
33637
|
-
* @memberof PatchPotentialRoleRequestInnerV2025
|
|
33638
|
-
*/
|
|
33639
|
-
'op'?: PatchPotentialRoleRequestInnerV2025OpV2025;
|
|
33640
|
-
/**
|
|
33641
|
-
* A string JSON Pointer representing the target path to an element to be affected by the operation
|
|
33642
|
-
* @type {string}
|
|
33643
|
-
* @memberof PatchPotentialRoleRequestInnerV2025
|
|
33644
|
-
*/
|
|
33645
|
-
'path': string;
|
|
33646
|
-
/**
|
|
33647
|
-
*
|
|
33648
|
-
* @type {UpdateMultiHostSourcesRequestInnerValueV2025}
|
|
33649
|
-
* @memberof PatchPotentialRoleRequestInnerV2025
|
|
33650
|
-
*/
|
|
33651
|
-
'value'?: UpdateMultiHostSourcesRequestInnerValueV2025;
|
|
33652
|
-
}
|
|
33653
|
-
|
|
33654
|
-
export const PatchPotentialRoleRequestInnerV2025OpV2025 = {
|
|
33655
|
-
Remove: 'remove',
|
|
33656
|
-
Replace: 'replace'
|
|
33657
|
-
} as const;
|
|
33658
|
-
|
|
33659
|
-
export type PatchPotentialRoleRequestInnerV2025OpV2025 = typeof PatchPotentialRoleRequestInnerV2025OpV2025[keyof typeof PatchPotentialRoleRequestInnerV2025OpV2025];
|
|
33660
|
-
|
|
33661
33679
|
/**
|
|
33662
33680
|
*
|
|
33663
33681
|
* @export
|
|
@@ -39544,7 +39562,7 @@ export interface RoleMiningIdentityDistributionDistributionInnerV2025 {
|
|
|
39544
39562
|
* @type {string}
|
|
39545
39563
|
* @memberof RoleMiningIdentityDistributionDistributionInnerV2025
|
|
39546
39564
|
*/
|
|
39547
|
-
'attributeValue'?: string;
|
|
39565
|
+
'attributeValue'?: string | null;
|
|
39548
39566
|
/**
|
|
39549
39567
|
* The number of identities that have this attribute value
|
|
39550
39568
|
* @type {number}
|
|
@@ -39721,6 +39739,25 @@ export const RoleMiningPotentialRoleExportStateV2025 = {
|
|
|
39721
39739
|
export type RoleMiningPotentialRoleExportStateV2025 = typeof RoleMiningPotentialRoleExportStateV2025[keyof typeof RoleMiningPotentialRoleExportStateV2025];
|
|
39722
39740
|
|
|
39723
39741
|
|
|
39742
|
+
/**
|
|
39743
|
+
* The potential role reference
|
|
39744
|
+
* @export
|
|
39745
|
+
* @interface RoleMiningPotentialRolePotentialRoleRefV2025
|
|
39746
|
+
*/
|
|
39747
|
+
export interface RoleMiningPotentialRolePotentialRoleRefV2025 {
|
|
39748
|
+
/**
|
|
39749
|
+
* Id of the potential role
|
|
39750
|
+
* @type {string}
|
|
39751
|
+
* @memberof RoleMiningPotentialRolePotentialRoleRefV2025
|
|
39752
|
+
*/
|
|
39753
|
+
'id'?: string;
|
|
39754
|
+
/**
|
|
39755
|
+
* Name of the potential role
|
|
39756
|
+
* @type {string}
|
|
39757
|
+
* @memberof RoleMiningPotentialRolePotentialRoleRefV2025
|
|
39758
|
+
*/
|
|
39759
|
+
'name'?: string;
|
|
39760
|
+
}
|
|
39724
39761
|
/**
|
|
39725
39762
|
*
|
|
39726
39763
|
* @export
|
|
@@ -40002,12 +40039,24 @@ export interface RoleMiningPotentialRoleV2025 {
|
|
|
40002
40039
|
* @memberof RoleMiningPotentialRoleV2025
|
|
40003
40040
|
*/
|
|
40004
40041
|
'identityIds'?: Array<string>;
|
|
40042
|
+
/**
|
|
40043
|
+
* The status for this identity group which can be OBTAINED or COMPRESSED
|
|
40044
|
+
* @type {string}
|
|
40045
|
+
* @memberof RoleMiningPotentialRoleV2025
|
|
40046
|
+
*/
|
|
40047
|
+
'identityGroupStatus'?: string | null;
|
|
40005
40048
|
/**
|
|
40006
40049
|
* Name of the potential role.
|
|
40007
40050
|
* @type {string}
|
|
40008
40051
|
* @memberof RoleMiningPotentialRoleV2025
|
|
40009
40052
|
*/
|
|
40010
40053
|
'name'?: string;
|
|
40054
|
+
/**
|
|
40055
|
+
*
|
|
40056
|
+
* @type {RoleMiningPotentialRolePotentialRoleRefV2025}
|
|
40057
|
+
* @memberof RoleMiningPotentialRoleV2025
|
|
40058
|
+
*/
|
|
40059
|
+
'potentialRoleRef'?: RoleMiningPotentialRolePotentialRoleRefV2025 | null;
|
|
40011
40060
|
/**
|
|
40012
40061
|
*
|
|
40013
40062
|
* @type {RoleMiningPotentialRoleProvisionStateV2025 & object}
|
|
@@ -47379,13 +47428,6 @@ export const SubscriptionPatchRequestInnerV2025OpV2025 = {
|
|
|
47379
47428
|
|
|
47380
47429
|
export type SubscriptionPatchRequestInnerV2025OpV2025 = typeof SubscriptionPatchRequestInnerV2025OpV2025[keyof typeof SubscriptionPatchRequestInnerV2025OpV2025];
|
|
47381
47430
|
|
|
47382
|
-
/**
|
|
47383
|
-
*
|
|
47384
|
-
* @export
|
|
47385
|
-
* @interface SubscriptionPatchRequestInnerValueAnyOfInnerV2025
|
|
47386
|
-
*/
|
|
47387
|
-
export interface SubscriptionPatchRequestInnerValueAnyOfInnerV2025 {
|
|
47388
|
-
}
|
|
47389
47431
|
/**
|
|
47390
47432
|
* The value to be used for the operation, required for \"add\" and \"replace\" operations
|
|
47391
47433
|
* @export
|
|
@@ -91163,18 +91205,18 @@ export const IAIRoleMiningV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
91163
91205
|
* @summary Update a potential role
|
|
91164
91206
|
* @param {string} sessionId The role mining session id
|
|
91165
91207
|
* @param {string} potentialRoleId The potential role summary id
|
|
91166
|
-
* @param {Array<
|
|
91208
|
+
* @param {Array<JsonPatchOperationRoleMiningV2025>} jsonPatchOperationRoleMiningV2025
|
|
91167
91209
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
91168
91210
|
* @param {*} [axiosOptions] Override http request option.
|
|
91169
91211
|
* @throws {RequiredError}
|
|
91170
91212
|
*/
|
|
91171
|
-
patchPotentialRole: async (sessionId: string, potentialRoleId: string,
|
|
91213
|
+
patchPotentialRole: async (sessionId: string, potentialRoleId: string, jsonPatchOperationRoleMiningV2025: Array<JsonPatchOperationRoleMiningV2025>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
91172
91214
|
// verify required parameter 'sessionId' is not null or undefined
|
|
91173
91215
|
assertParamExists('patchPotentialRole', 'sessionId', sessionId)
|
|
91174
91216
|
// verify required parameter 'potentialRoleId' is not null or undefined
|
|
91175
91217
|
assertParamExists('patchPotentialRole', 'potentialRoleId', potentialRoleId)
|
|
91176
|
-
// verify required parameter '
|
|
91177
|
-
assertParamExists('patchPotentialRole', '
|
|
91218
|
+
// verify required parameter 'jsonPatchOperationRoleMiningV2025' is not null or undefined
|
|
91219
|
+
assertParamExists('patchPotentialRole', 'jsonPatchOperationRoleMiningV2025', jsonPatchOperationRoleMiningV2025)
|
|
91178
91220
|
if (xSailPointExperimental === undefined) {
|
|
91179
91221
|
xSailPointExperimental = 'true';
|
|
91180
91222
|
}
|
|
@@ -91201,6 +91243,10 @@ export const IAIRoleMiningV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
91201
91243
|
// oauth required
|
|
91202
91244
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
91203
91245
|
|
|
91246
|
+
// authentication applicationAuth required
|
|
91247
|
+
// oauth required
|
|
91248
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
91249
|
+
|
|
91204
91250
|
|
|
91205
91251
|
|
|
91206
91252
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
@@ -91211,7 +91257,7 @@ export const IAIRoleMiningV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
91211
91257
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
91212
91258
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
91213
91259
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
91214
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
91260
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationRoleMiningV2025, localVarRequestOptions, configuration)
|
|
91215
91261
|
|
|
91216
91262
|
return {
|
|
91217
91263
|
url: toPathString(localVarUrlObj),
|
|
@@ -91223,18 +91269,18 @@ export const IAIRoleMiningV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
91223
91269
|
* @summary Update a potential role session
|
|
91224
91270
|
* @param {string} sessionId The role mining session id
|
|
91225
91271
|
* @param {string} potentialRoleId The potential role summary id
|
|
91226
|
-
* @param {Array<
|
|
91272
|
+
* @param {Array<JsonPatchOperationRoleMiningV2025>} jsonPatchOperationRoleMiningV2025
|
|
91227
91273
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
91228
91274
|
* @param {*} [axiosOptions] Override http request option.
|
|
91229
91275
|
* @throws {RequiredError}
|
|
91230
91276
|
*/
|
|
91231
|
-
patchPotentialRoleSession: async (sessionId: string, potentialRoleId: string,
|
|
91277
|
+
patchPotentialRoleSession: async (sessionId: string, potentialRoleId: string, jsonPatchOperationRoleMiningV2025: Array<JsonPatchOperationRoleMiningV2025>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
91232
91278
|
// verify required parameter 'sessionId' is not null or undefined
|
|
91233
91279
|
assertParamExists('patchPotentialRoleSession', 'sessionId', sessionId)
|
|
91234
91280
|
// verify required parameter 'potentialRoleId' is not null or undefined
|
|
91235
91281
|
assertParamExists('patchPotentialRoleSession', 'potentialRoleId', potentialRoleId)
|
|
91236
|
-
// verify required parameter '
|
|
91237
|
-
assertParamExists('patchPotentialRoleSession', '
|
|
91282
|
+
// verify required parameter 'jsonPatchOperationRoleMiningV2025' is not null or undefined
|
|
91283
|
+
assertParamExists('patchPotentialRoleSession', 'jsonPatchOperationRoleMiningV2025', jsonPatchOperationRoleMiningV2025)
|
|
91238
91284
|
if (xSailPointExperimental === undefined) {
|
|
91239
91285
|
xSailPointExperimental = 'true';
|
|
91240
91286
|
}
|
|
@@ -91275,7 +91321,7 @@ export const IAIRoleMiningV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
91275
91321
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
91276
91322
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
91277
91323
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
91278
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
91324
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationRoleMiningV2025, localVarRequestOptions, configuration)
|
|
91279
91325
|
|
|
91280
91326
|
return {
|
|
91281
91327
|
url: toPathString(localVarUrlObj),
|
|
@@ -91779,13 +91825,13 @@ export const IAIRoleMiningV2025ApiFp = function(configuration?: Configuration) {
|
|
|
91779
91825
|
* @summary Update a potential role
|
|
91780
91826
|
* @param {string} sessionId The role mining session id
|
|
91781
91827
|
* @param {string} potentialRoleId The potential role summary id
|
|
91782
|
-
* @param {Array<
|
|
91828
|
+
* @param {Array<JsonPatchOperationRoleMiningV2025>} jsonPatchOperationRoleMiningV2025
|
|
91783
91829
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
91784
91830
|
* @param {*} [axiosOptions] Override http request option.
|
|
91785
91831
|
* @throws {RequiredError}
|
|
91786
91832
|
*/
|
|
91787
|
-
async patchPotentialRole(sessionId: string, potentialRoleId: string,
|
|
91788
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole(sessionId, potentialRoleId,
|
|
91833
|
+
async patchPotentialRole(sessionId: string, potentialRoleId: string, jsonPatchOperationRoleMiningV2025: Array<JsonPatchOperationRoleMiningV2025>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
91834
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole(sessionId, potentialRoleId, jsonPatchOperationRoleMiningV2025, xSailPointExperimental, axiosOptions);
|
|
91789
91835
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
91790
91836
|
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2025Api.patchPotentialRole']?.[localVarOperationServerIndex]?.url;
|
|
91791
91837
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -91795,13 +91841,13 @@ export const IAIRoleMiningV2025ApiFp = function(configuration?: Configuration) {
|
|
|
91795
91841
|
* @summary Update a potential role session
|
|
91796
91842
|
* @param {string} sessionId The role mining session id
|
|
91797
91843
|
* @param {string} potentialRoleId The potential role summary id
|
|
91798
|
-
* @param {Array<
|
|
91844
|
+
* @param {Array<JsonPatchOperationRoleMiningV2025>} jsonPatchOperationRoleMiningV2025
|
|
91799
91845
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
91800
91846
|
* @param {*} [axiosOptions] Override http request option.
|
|
91801
91847
|
* @throws {RequiredError}
|
|
91802
91848
|
*/
|
|
91803
|
-
async patchPotentialRoleSession(sessionId: string, potentialRoleId: string,
|
|
91804
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRoleSession(sessionId, potentialRoleId,
|
|
91849
|
+
async patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationRoleMiningV2025: Array<JsonPatchOperationRoleMiningV2025>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
91850
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRoleSession(sessionId, potentialRoleId, jsonPatchOperationRoleMiningV2025, xSailPointExperimental, axiosOptions);
|
|
91805
91851
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
91806
91852
|
const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningV2025Api.patchPotentialRoleSession']?.[localVarOperationServerIndex]?.url;
|
|
91807
91853
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -92065,7 +92111,7 @@ export const IAIRoleMiningV2025ApiFactory = function (configuration?: Configurat
|
|
|
92065
92111
|
* @throws {RequiredError}
|
|
92066
92112
|
*/
|
|
92067
92113
|
patchPotentialRole(requestParameters: IAIRoleMiningV2025ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
92068
|
-
return localVarFp.patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
92114
|
+
return localVarFp.patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationRoleMiningV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
92069
92115
|
},
|
|
92070
92116
|
/**
|
|
92071
92117
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
@@ -92075,7 +92121,7 @@ export const IAIRoleMiningV2025ApiFactory = function (configuration?: Configurat
|
|
|
92075
92121
|
* @throws {RequiredError}
|
|
92076
92122
|
*/
|
|
92077
92123
|
patchPotentialRoleSession(requestParameters: IAIRoleMiningV2025ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
92078
|
-
return localVarFp.patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
92124
|
+
return localVarFp.patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationRoleMiningV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
92079
92125
|
},
|
|
92080
92126
|
/**
|
|
92081
92127
|
* 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.
|
|
@@ -93011,10 +93057,10 @@ export interface IAIRoleMiningV2025ApiPatchPotentialRoleRequest {
|
|
|
93011
93057
|
|
|
93012
93058
|
/**
|
|
93013
93059
|
*
|
|
93014
|
-
* @type {Array<
|
|
93060
|
+
* @type {Array<JsonPatchOperationRoleMiningV2025>}
|
|
93015
93061
|
* @memberof IAIRoleMiningV2025ApiPatchPotentialRole
|
|
93016
93062
|
*/
|
|
93017
|
-
readonly
|
|
93063
|
+
readonly jsonPatchOperationRoleMiningV2025: Array<JsonPatchOperationRoleMiningV2025>
|
|
93018
93064
|
|
|
93019
93065
|
/**
|
|
93020
93066
|
* Use this header to enable this experimental API.
|
|
@@ -93046,10 +93092,10 @@ export interface IAIRoleMiningV2025ApiPatchPotentialRoleSessionRequest {
|
|
|
93046
93092
|
|
|
93047
93093
|
/**
|
|
93048
93094
|
*
|
|
93049
|
-
* @type {Array<
|
|
93095
|
+
* @type {Array<JsonPatchOperationRoleMiningV2025>}
|
|
93050
93096
|
* @memberof IAIRoleMiningV2025ApiPatchPotentialRoleSession
|
|
93051
93097
|
*/
|
|
93052
|
-
readonly
|
|
93098
|
+
readonly jsonPatchOperationRoleMiningV2025: Array<JsonPatchOperationRoleMiningV2025>
|
|
93053
93099
|
|
|
93054
93100
|
/**
|
|
93055
93101
|
* Use this header to enable this experimental API.
|
|
@@ -93390,7 +93436,7 @@ export class IAIRoleMiningV2025Api extends BaseAPI {
|
|
|
93390
93436
|
* @memberof IAIRoleMiningV2025Api
|
|
93391
93437
|
*/
|
|
93392
93438
|
public patchPotentialRole(requestParameters: IAIRoleMiningV2025ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
93393
|
-
return IAIRoleMiningV2025ApiFp(this.configuration).patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
93439
|
+
return IAIRoleMiningV2025ApiFp(this.configuration).patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationRoleMiningV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
93394
93440
|
}
|
|
93395
93441
|
|
|
93396
93442
|
/**
|
|
@@ -93402,7 +93448,7 @@ export class IAIRoleMiningV2025Api extends BaseAPI {
|
|
|
93402
93448
|
* @memberof IAIRoleMiningV2025Api
|
|
93403
93449
|
*/
|
|
93404
93450
|
public patchPotentialRoleSession(requestParameters: IAIRoleMiningV2025ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
93405
|
-
return IAIRoleMiningV2025ApiFp(this.configuration).patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.
|
|
93451
|
+
return IAIRoleMiningV2025ApiFp(this.configuration).patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationRoleMiningV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
93406
93452
|
}
|
|
93407
93453
|
|
|
93408
93454
|
/**
|
package/v2025/common.ts
CHANGED
|
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
149
|
const headers = {
|
|
150
|
-
...{'User-Agent':'OpenAPI-Generator/1.7.
|
|
150
|
+
...{'User-Agent':'OpenAPI-Generator/1.7.19/ts'},
|
|
151
151
|
...axiosArgs.axiosOptions.headers,
|
|
152
|
-
...{'X-SailPoint-SDK':'typescript-1.7.
|
|
152
|
+
...{'X-SailPoint-SDK':'typescript-1.7.19'}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
package/v2025/package.json
CHANGED
package/v2026/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.7.
|
|
1
|
+
## sailpoint-sdk@1.7.19
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.7.
|
|
39
|
+
npm install sailpoint-sdk@1.7.19 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2026/common.ts
CHANGED
|
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
149
|
const headers = {
|
|
150
|
-
...{'User-Agent':'OpenAPI-Generator/1.7.
|
|
150
|
+
...{'User-Agent':'OpenAPI-Generator/1.7.19/ts'},
|
|
151
151
|
...axiosArgs.axiosOptions.headers,
|
|
152
|
-
...{'X-SailPoint-SDK':'typescript-1.7.
|
|
152
|
+
...{'X-SailPoint-SDK':'typescript-1.7.19'}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
package/v2026/package.json
CHANGED
package/v3/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.7.
|
|
1
|
+
## sailpoint-sdk@1.7.19
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.7.
|
|
39
|
+
npm install sailpoint-sdk@1.7.19 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v3/common.ts
CHANGED
|
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
149
|
const headers = {
|
|
150
|
-
...{'User-Agent':'OpenAPI-Generator/1.7.
|
|
150
|
+
...{'User-Agent':'OpenAPI-Generator/1.7.19/ts'},
|
|
151
151
|
...axiosArgs.axiosOptions.headers,
|
|
152
|
-
...{'X-SailPoint-SDK':'typescript-1.7.
|
|
152
|
+
...{'X-SailPoint-SDK':'typescript-1.7.19'}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|