sailpoint-api-client 1.8.19 → 1.8.20

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/v2026/api.ts CHANGED
@@ -10238,6 +10238,107 @@ export interface AuthorizationSchemeV2026 {
10238
10238
  */
10239
10239
  'spec_urn'?: string;
10240
10240
  }
10241
+ /**
10242
+ * Patch operation for Auto-Write Setting
10243
+ * @export
10244
+ * @interface AutoWriteSettingPatchV2026
10245
+ */
10246
+ export interface AutoWriteSettingPatchV2026 {
10247
+ /**
10248
+ * The operation to perform. Only \"replace\" is supported.
10249
+ * @type {string}
10250
+ * @memberof AutoWriteSettingPatchV2026
10251
+ */
10252
+ 'op': AutoWriteSettingPatchV2026OpV2026;
10253
+ /**
10254
+ * The field to update. Allowed values: /enabled, /includedSourceIds, /excludedSourceIds
10255
+ * @type {string}
10256
+ * @memberof AutoWriteSettingPatchV2026
10257
+ */
10258
+ 'path': string;
10259
+ /**
10260
+ *
10261
+ * @type {AutoWriteSettingPatchValueV2026}
10262
+ * @memberof AutoWriteSettingPatchV2026
10263
+ */
10264
+ 'value': AutoWriteSettingPatchValueV2026;
10265
+ }
10266
+
10267
+ export const AutoWriteSettingPatchV2026OpV2026 = {
10268
+ Replace: 'replace'
10269
+ } as const;
10270
+
10271
+ export type AutoWriteSettingPatchV2026OpV2026 = typeof AutoWriteSettingPatchV2026OpV2026[keyof typeof AutoWriteSettingPatchV2026OpV2026];
10272
+
10273
+ /**
10274
+ * @type AutoWriteSettingPatchValueV2026
10275
+ * The new value for the field
10276
+ * @export
10277
+ */
10278
+ export type AutoWriteSettingPatchValueV2026 = Array<string> | boolean;
10279
+
10280
+ /**
10281
+ * Auto-Write Setting response with timestamps
10282
+ * @export
10283
+ * @interface AutoWriteSettingResponseV2026
10284
+ */
10285
+ export interface AutoWriteSettingResponseV2026 {
10286
+ /**
10287
+ * Whether auto-write is currently enabled for the tenant
10288
+ * @type {boolean}
10289
+ * @memberof AutoWriteSettingResponseV2026
10290
+ */
10291
+ 'enabled'?: boolean;
10292
+ /**
10293
+ * Source IDs in the allowlist. Empty array means not in allowlist mode.
10294
+ * @type {Array<string>}
10295
+ * @memberof AutoWriteSettingResponseV2026
10296
+ */
10297
+ 'includedSourceIds'?: Array<string> | null;
10298
+ /**
10299
+ * Source IDs to exclude from auto-write. Always applied.
10300
+ * @type {Array<string>}
10301
+ * @memberof AutoWriteSettingResponseV2026
10302
+ */
10303
+ 'excludedSourceIds'?: Array<string> | null;
10304
+ /**
10305
+ * When settings were first created
10306
+ * @type {string}
10307
+ * @memberof AutoWriteSettingResponseV2026
10308
+ */
10309
+ 'createdAt'?: string;
10310
+ /**
10311
+ * When settings were last modified
10312
+ * @type {string}
10313
+ * @memberof AutoWriteSettingResponseV2026
10314
+ */
10315
+ 'updatedAt'?: string;
10316
+ }
10317
+ /**
10318
+ * Auto-Write Setting for SED
10319
+ * @export
10320
+ * @interface AutoWriteSettingV2026
10321
+ */
10322
+ export interface AutoWriteSettingV2026 {
10323
+ /**
10324
+ * Whether auto-write is currently enabled for the tenant
10325
+ * @type {boolean}
10326
+ * @memberof AutoWriteSettingV2026
10327
+ */
10328
+ 'enabled'?: boolean;
10329
+ /**
10330
+ * Source IDs in the allowlist. Empty array means not in allowlist mode.
10331
+ * @type {Array<string>}
10332
+ * @memberof AutoWriteSettingV2026
10333
+ */
10334
+ 'includedSourceIds'?: Array<string> | null;
10335
+ /**
10336
+ * Source IDs to exclude from auto-write. Always applied.
10337
+ * @type {Array<string>}
10338
+ * @memberof AutoWriteSettingV2026
10339
+ */
10340
+ 'excludedSourceIds'?: Array<string> | null;
10341
+ }
10241
10342
  /**
10242
10343
  * Backup options control what will be included in the backup.
10243
10344
  * @export
@@ -141200,6 +141301,96 @@ export type UpdateSourceScheduleScheduleTypeV2026 = typeof UpdateSourceScheduleS
141200
141301
  */
141201
141302
  export const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
141202
141303
  return {
141304
+ /**
141305
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
141306
+ * @summary Create auto-write settings for SED
141307
+ * @param {AutoWriteSettingV2026} autoWriteSettingV2026 Auto-write settings to create
141308
+ * @param {*} [axiosOptions] Override http request option.
141309
+ * @throws {RequiredError}
141310
+ */
141311
+ createAutoWriteSettings: async (autoWriteSettingV2026: AutoWriteSettingV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
141312
+ // verify required parameter 'autoWriteSettingV2026' is not null or undefined
141313
+ assertParamExists('createAutoWriteSettings', 'autoWriteSettingV2026', autoWriteSettingV2026)
141314
+ const localVarPath = `/suggested-entitlement-descriptions/auto-write-settings`;
141315
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
141316
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141317
+ let baseOptions;
141318
+ if (configuration) {
141319
+ baseOptions = configuration.baseOptions;
141320
+ }
141321
+
141322
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
141323
+ const localVarHeaderParameter = {} as any;
141324
+ const localVarQueryParameter = {} as any;
141325
+
141326
+ // authentication userAuth required
141327
+ // oauth required
141328
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141329
+
141330
+ // authentication userAuth required
141331
+ // oauth required
141332
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141333
+
141334
+ // authentication applicationAuth required
141335
+ // oauth required
141336
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
141337
+
141338
+
141339
+
141340
+ localVarHeaderParameter['Content-Type'] = 'application/json';
141341
+
141342
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
141343
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
141344
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141345
+ localVarRequestOptions.data = serializeDataIfNeeded(autoWriteSettingV2026, localVarRequestOptions, configuration)
141346
+
141347
+ return {
141348
+ url: toPathString(localVarUrlObj),
141349
+ axiosOptions: localVarRequestOptions,
141350
+ };
141351
+ },
141352
+ /**
141353
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
141354
+ * @summary Get auto-write settings for SED
141355
+ * @param {*} [axiosOptions] Override http request option.
141356
+ * @throws {RequiredError}
141357
+ */
141358
+ getAutoWriteSettings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
141359
+ const localVarPath = `/suggested-entitlement-descriptions/auto-write-settings`;
141360
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
141361
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141362
+ let baseOptions;
141363
+ if (configuration) {
141364
+ baseOptions = configuration.baseOptions;
141365
+ }
141366
+
141367
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
141368
+ const localVarHeaderParameter = {} as any;
141369
+ const localVarQueryParameter = {} as any;
141370
+
141371
+ // authentication userAuth required
141372
+ // oauth required
141373
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141374
+
141375
+ // authentication userAuth required
141376
+ // oauth required
141377
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141378
+
141379
+ // authentication applicationAuth required
141380
+ // oauth required
141381
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
141382
+
141383
+
141384
+
141385
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
141386
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
141387
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141388
+
141389
+ return {
141390
+ url: toPathString(localVarUrlObj),
141391
+ axiosOptions: localVarRequestOptions,
141392
+ };
141393
+ },
141203
141394
  /**
141204
141395
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141205
141396
  * @summary Submit sed batch stats request
@@ -141584,6 +141775,54 @@ export const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator = function
141584
141775
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141585
141776
  localVarRequestOptions.data = serializeDataIfNeeded(sedBatchRequestV2026, localVarRequestOptions, configuration)
141586
141777
 
141778
+ return {
141779
+ url: toPathString(localVarUrlObj),
141780
+ axiosOptions: localVarRequestOptions,
141781
+ };
141782
+ },
141783
+ /**
141784
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
141785
+ * @summary Update auto-write settings for SED
141786
+ * @param {Array<AutoWriteSettingPatchV2026>} autoWriteSettingPatchV2026 Patch operations for auto-write settings
141787
+ * @param {*} [axiosOptions] Override http request option.
141788
+ * @throws {RequiredError}
141789
+ */
141790
+ updateAutoWriteSettings: async (autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
141791
+ // verify required parameter 'autoWriteSettingPatchV2026' is not null or undefined
141792
+ assertParamExists('updateAutoWriteSettings', 'autoWriteSettingPatchV2026', autoWriteSettingPatchV2026)
141793
+ const localVarPath = `/suggested-entitlement-descriptions/auto-write-settings`;
141794
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
141795
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141796
+ let baseOptions;
141797
+ if (configuration) {
141798
+ baseOptions = configuration.baseOptions;
141799
+ }
141800
+
141801
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
141802
+ const localVarHeaderParameter = {} as any;
141803
+ const localVarQueryParameter = {} as any;
141804
+
141805
+ // authentication userAuth required
141806
+ // oauth required
141807
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141808
+
141809
+ // authentication userAuth required
141810
+ // oauth required
141811
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
141812
+
141813
+ // authentication applicationAuth required
141814
+ // oauth required
141815
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
141816
+
141817
+
141818
+
141819
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
141820
+
141821
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
141822
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
141823
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
141824
+ localVarRequestOptions.data = serializeDataIfNeeded(autoWriteSettingPatchV2026, localVarRequestOptions, configuration)
141825
+
141587
141826
  return {
141588
141827
  url: toPathString(localVarUrlObj),
141589
141828
  axiosOptions: localVarRequestOptions,
@@ -141599,6 +141838,31 @@ export const SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator = function
141599
141838
  export const SuggestedEntitlementDescriptionV2026ApiFp = function(configuration?: Configuration) {
141600
141839
  const localVarAxiosParamCreator = SuggestedEntitlementDescriptionV2026ApiAxiosParamCreator(configuration)
141601
141840
  return {
141841
+ /**
141842
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
141843
+ * @summary Create auto-write settings for SED
141844
+ * @param {AutoWriteSettingV2026} autoWriteSettingV2026 Auto-write settings to create
141845
+ * @param {*} [axiosOptions] Override http request option.
141846
+ * @throws {RequiredError}
141847
+ */
141848
+ async createAutoWriteSettings(autoWriteSettingV2026: AutoWriteSettingV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>> {
141849
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createAutoWriteSettings(autoWriteSettingV2026, axiosOptions);
141850
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141851
+ const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.createAutoWriteSettings']?.[localVarOperationServerIndex]?.url;
141852
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141853
+ },
141854
+ /**
141855
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
141856
+ * @summary Get auto-write settings for SED
141857
+ * @param {*} [axiosOptions] Override http request option.
141858
+ * @throws {RequiredError}
141859
+ */
141860
+ async getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>> {
141861
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAutoWriteSettings(axiosOptions);
141862
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141863
+ const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.getAutoWriteSettings']?.[localVarOperationServerIndex]?.url;
141864
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141865
+ },
141602
141866
  /**
141603
141867
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141604
141868
  * @summary Submit sed batch stats request
@@ -141702,6 +141966,19 @@ export const SuggestedEntitlementDescriptionV2026ApiFp = function(configuration?
141702
141966
  const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.submitSedBatchRequest']?.[localVarOperationServerIndex]?.url;
141703
141967
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141704
141968
  },
141969
+ /**
141970
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
141971
+ * @summary Update auto-write settings for SED
141972
+ * @param {Array<AutoWriteSettingPatchV2026>} autoWriteSettingPatchV2026 Patch operations for auto-write settings
141973
+ * @param {*} [axiosOptions] Override http request option.
141974
+ * @throws {RequiredError}
141975
+ */
141976
+ async updateAutoWriteSettings(autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AutoWriteSettingResponseV2026>> {
141977
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateAutoWriteSettings(autoWriteSettingPatchV2026, axiosOptions);
141978
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
141979
+ const localVarOperationServerBasePath = operationServerMap['SuggestedEntitlementDescriptionV2026Api.updateAutoWriteSettings']?.[localVarOperationServerIndex]?.url;
141980
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
141981
+ },
141705
141982
  }
141706
141983
  };
141707
141984
 
@@ -141712,6 +141989,25 @@ export const SuggestedEntitlementDescriptionV2026ApiFp = function(configuration?
141712
141989
  export const SuggestedEntitlementDescriptionV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
141713
141990
  const localVarFp = SuggestedEntitlementDescriptionV2026ApiFp(configuration)
141714
141991
  return {
141992
+ /**
141993
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
141994
+ * @summary Create auto-write settings for SED
141995
+ * @param {SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest} requestParameters Request parameters.
141996
+ * @param {*} [axiosOptions] Override http request option.
141997
+ * @throws {RequiredError}
141998
+ */
141999
+ createAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026> {
142000
+ return localVarFp.createAutoWriteSettings(requestParameters.autoWriteSettingV2026, axiosOptions).then((request) => request(axios, basePath));
142001
+ },
142002
+ /**
142003
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
142004
+ * @summary Get auto-write settings for SED
142005
+ * @param {*} [axiosOptions] Override http request option.
142006
+ * @throws {RequiredError}
142007
+ */
142008
+ getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026> {
142009
+ return localVarFp.getAutoWriteSettings(axiosOptions).then((request) => request(axios, basePath));
142010
+ },
141715
142011
  /**
141716
142012
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141717
142013
  * @summary Submit sed batch stats request
@@ -141782,9 +142078,33 @@ export const SuggestedEntitlementDescriptionV2026ApiFactory = function (configur
141782
142078
  submitSedBatchRequest(requestParameters: SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SedBatchResponseV2026> {
141783
142079
  return localVarFp.submitSedBatchRequest(requestParameters.sedBatchRequestV2026, axiosOptions).then((request) => request(axios, basePath));
141784
142080
  },
142081
+ /**
142082
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
142083
+ * @summary Update auto-write settings for SED
142084
+ * @param {SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest} requestParameters Request parameters.
142085
+ * @param {*} [axiosOptions] Override http request option.
142086
+ * @throws {RequiredError}
142087
+ */
142088
+ updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AutoWriteSettingResponseV2026> {
142089
+ return localVarFp.updateAutoWriteSettings(requestParameters.autoWriteSettingPatchV2026, axiosOptions).then((request) => request(axios, basePath));
142090
+ },
141785
142091
  };
141786
142092
  };
141787
142093
 
142094
+ /**
142095
+ * Request parameters for createAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
142096
+ * @export
142097
+ * @interface SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest
142098
+ */
142099
+ export interface SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest {
142100
+ /**
142101
+ * Auto-write settings to create
142102
+ * @type {AutoWriteSettingV2026}
142103
+ * @memberof SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettings
142104
+ */
142105
+ readonly autoWriteSettingV2026: AutoWriteSettingV2026
142106
+ }
142107
+
141788
142108
  /**
141789
142109
  * Request parameters for getSedBatchStats operation in SuggestedEntitlementDescriptionV2026Api.
141790
142110
  * @export
@@ -141967,6 +142287,20 @@ export interface SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestReq
141967
142287
  readonly sedBatchRequestV2026?: SedBatchRequestV2026
141968
142288
  }
141969
142289
 
142290
+ /**
142291
+ * Request parameters for updateAutoWriteSettings operation in SuggestedEntitlementDescriptionV2026Api.
142292
+ * @export
142293
+ * @interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest
142294
+ */
142295
+ export interface SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest {
142296
+ /**
142297
+ * Patch operations for auto-write settings
142298
+ * @type {Array<AutoWriteSettingPatchV2026>}
142299
+ * @memberof SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettings
142300
+ */
142301
+ readonly autoWriteSettingPatchV2026: Array<AutoWriteSettingPatchV2026>
142302
+ }
142303
+
141970
142304
  /**
141971
142305
  * SuggestedEntitlementDescriptionV2026Api - object-oriented interface
141972
142306
  * @export
@@ -141974,6 +142308,29 @@ export interface SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestReq
141974
142308
  * @extends {BaseAPI}
141975
142309
  */
141976
142310
  export class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
142311
+ /**
142312
+ * Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.
142313
+ * @summary Create auto-write settings for SED
142314
+ * @param {SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest} requestParameters Request parameters.
142315
+ * @param {*} [axiosOptions] Override http request option.
142316
+ * @throws {RequiredError}
142317
+ * @memberof SuggestedEntitlementDescriptionV2026Api
142318
+ */
142319
+ public createAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiCreateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig) {
142320
+ return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).createAutoWriteSettings(requestParameters.autoWriteSettingV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
142321
+ }
142322
+
142323
+ /**
142324
+ * Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.
142325
+ * @summary Get auto-write settings for SED
142326
+ * @param {*} [axiosOptions] Override http request option.
142327
+ * @throws {RequiredError}
142328
+ * @memberof SuggestedEntitlementDescriptionV2026Api
142329
+ */
142330
+ public getAutoWriteSettings(axiosOptions?: RawAxiosRequestConfig) {
142331
+ return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).getAutoWriteSettings(axiosOptions).then((request) => request(this.axios, this.basePath));
142332
+ }
142333
+
141977
142334
  /**
141978
142335
  * \'Submit Sed Batch Stats Request. Submits batchId in the path param `(e.g. {batchId}/stats)`. API responses with stats of the batchId.\'
141979
142336
  * @summary Submit sed batch stats request
@@ -142057,6 +142414,18 @@ export class SuggestedEntitlementDescriptionV2026Api extends BaseAPI {
142057
142414
  public submitSedBatchRequest(requestParameters: SuggestedEntitlementDescriptionV2026ApiSubmitSedBatchRequestRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
142058
142415
  return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).submitSedBatchRequest(requestParameters.sedBatchRequestV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
142059
142416
  }
142417
+
142418
+ /**
142419
+ * Partially update the auto-write settings for a tenant using JSON Patch operations. Only the \"replace\" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.
142420
+ * @summary Update auto-write settings for SED
142421
+ * @param {SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest} requestParameters Request parameters.
142422
+ * @param {*} [axiosOptions] Override http request option.
142423
+ * @throws {RequiredError}
142424
+ * @memberof SuggestedEntitlementDescriptionV2026Api
142425
+ */
142426
+ public updateAutoWriteSettings(requestParameters: SuggestedEntitlementDescriptionV2026ApiUpdateAutoWriteSettingsRequest, axiosOptions?: RawAxiosRequestConfig) {
142427
+ return SuggestedEntitlementDescriptionV2026ApiFp(this.configuration).updateAutoWriteSettings(requestParameters.autoWriteSettingPatchV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
142428
+ }
142060
142429
  }
142061
142430
 
142062
142431
 
package/v2026/common.ts CHANGED
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.19`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.20`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
153
153
  userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
154
154
  const headers = {
155
155
  ...axiosArgs.axiosOptions.headers,
156
- ...{'X-SailPoint-SDK':'typescript-1.8.19'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.20'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.19",
3
+ "version": "1.8.20",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v3/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.19
1
+ ## sailpoint-sdk@1.8.20
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.8.19 --save
39
+ npm install sailpoint-sdk@1.8.20 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v3/common.ts CHANGED
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.19`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.20`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
153
153
  userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
154
154
  const headers = {
155
155
  ...axiosArgs.axiosOptions.headers,
156
- ...{'X-SailPoint-SDK':'typescript-1.8.19'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.20'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.19",
3
+ "version": "1.8.20",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {