qovery-typescript-axios 1.1.934 → 1.1.935

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/api.ts CHANGED
@@ -30996,10 +30996,11 @@ export const ApplicationMainCallsApiAxiosParamCreator = function (configuration?
30996
30996
  * To delete the application you must have the admin permission
30997
30997
  * @summary Delete application
30998
30998
  * @param {string} applicationId Application ID
30999
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
30999
31000
  * @param {*} [options] Override http request option.
31000
31001
  * @throws {RequiredError}
31001
31002
  */
31002
- deleteApplication: async (applicationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
31003
+ deleteApplication: async (applicationId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
31003
31004
  // verify required parameter 'applicationId' is not null or undefined
31004
31005
  assertParamExists('deleteApplication', 'applicationId', applicationId)
31005
31006
  const localVarPath = `/application/{applicationId}`
@@ -31022,6 +31023,10 @@ export const ApplicationMainCallsApiAxiosParamCreator = function (configuration?
31022
31023
  // http bearer authentication required
31023
31024
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
31024
31025
 
31026
+ if (skipReconcile !== undefined) {
31027
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
31028
+ }
31029
+
31025
31030
 
31026
31031
 
31027
31032
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -31307,11 +31312,12 @@ export const ApplicationMainCallsApiFp = function(configuration?: Configuration)
31307
31312
  * To delete the application you must have the admin permission
31308
31313
  * @summary Delete application
31309
31314
  * @param {string} applicationId Application ID
31315
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
31310
31316
  * @param {*} [options] Override http request option.
31311
31317
  * @throws {RequiredError}
31312
31318
  */
31313
- async deleteApplication(applicationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
31314
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApplication(applicationId, options);
31319
+ async deleteApplication(applicationId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
31320
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApplication(applicationId, skipReconcile, options);
31315
31321
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31316
31322
  const localVarOperationServerBasePath = operationServerMap['ApplicationMainCallsApi.deleteApplication']?.[localVarOperationServerIndex]?.url;
31317
31323
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -31411,11 +31417,12 @@ export const ApplicationMainCallsApiFactory = function (configuration?: Configur
31411
31417
  * To delete the application you must have the admin permission
31412
31418
  * @summary Delete application
31413
31419
  * @param {string} applicationId Application ID
31420
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
31414
31421
  * @param {*} [options] Override http request option.
31415
31422
  * @throws {RequiredError}
31416
31423
  */
31417
- deleteApplication(applicationId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
31418
- return localVarFp.deleteApplication(applicationId, options).then((request) => request(axios, basePath));
31424
+ deleteApplication(applicationId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
31425
+ return localVarFp.deleteApplication(applicationId, skipReconcile, options).then((request) => request(axios, basePath));
31419
31426
  },
31420
31427
  /**
31421
31428
  * - To edit the application you must have the admin permission. - For port edition, if you provide a port id, we will update the corresponding port. If you don\'t we will create a new one. If you remove a port from the payload, we will delete it. - For storage edition, if you provide a storage id, we will update the corresponding storage. If you don\'t we will create a new one. If you remove a storage from the payload, we will delete it.
@@ -31494,12 +31501,13 @@ export class ApplicationMainCallsApi extends BaseAPI {
31494
31501
  * To delete the application you must have the admin permission
31495
31502
  * @summary Delete application
31496
31503
  * @param {string} applicationId Application ID
31504
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
31497
31505
  * @param {*} [options] Override http request option.
31498
31506
  * @throws {RequiredError}
31499
31507
  * @memberof ApplicationMainCallsApi
31500
31508
  */
31501
- public deleteApplication(applicationId: string, options?: RawAxiosRequestConfig) {
31502
- return ApplicationMainCallsApiFp(this.configuration).deleteApplication(applicationId, options).then((request) => request(this.axios, this.basePath));
31509
+ public deleteApplication(applicationId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
31510
+ return ApplicationMainCallsApiFp(this.configuration).deleteApplication(applicationId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
31503
31511
  }
31504
31512
 
31505
31513
  /**
@@ -39345,10 +39353,11 @@ export const ClustersApiAxiosParamCreator = function (configuration?: Configurat
39345
39353
  * @param {string} organizationId Organization ID
39346
39354
  * @param {string} clusterId Cluster ID
39347
39355
  * @param {ClusterDeleteMode} [deleteMode]
39356
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy Terraform/Helm apply and tear down best-effort, tolerating already-absent resources. Not allowed with deleteMode&#x3D;DELETE_QOVERY_CONFIG.
39348
39357
  * @param {*} [options] Override http request option.
39349
39358
  * @throws {RequiredError}
39350
39359
  */
39351
- deleteCluster: async (organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39360
+ deleteCluster: async (organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39352
39361
  // verify required parameter 'organizationId' is not null or undefined
39353
39362
  assertParamExists('deleteCluster', 'organizationId', organizationId)
39354
39363
  // verify required parameter 'clusterId' is not null or undefined
@@ -39378,6 +39387,10 @@ export const ClustersApiAxiosParamCreator = function (configuration?: Configurat
39378
39387
  localVarQueryParameter['deleteMode'] = deleteMode;
39379
39388
  }
39380
39389
 
39390
+ if (skipReconcile !== undefined) {
39391
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
39392
+ }
39393
+
39381
39394
 
39382
39395
 
39383
39396
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -41162,11 +41175,12 @@ export const ClustersApiFp = function(configuration?: Configuration) {
41162
41175
  * @param {string} organizationId Organization ID
41163
41176
  * @param {string} clusterId Cluster ID
41164
41177
  * @param {ClusterDeleteMode} [deleteMode]
41178
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy Terraform/Helm apply and tear down best-effort, tolerating already-absent resources. Not allowed with deleteMode&#x3D;DELETE_QOVERY_CONFIG.
41165
41179
  * @param {*} [options] Override http request option.
41166
41180
  * @throws {RequiredError}
41167
41181
  */
41168
- async deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
41169
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCluster(organizationId, clusterId, deleteMode, options);
41182
+ async deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
41183
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCluster(organizationId, clusterId, deleteMode, skipReconcile, options);
41170
41184
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
41171
41185
  const localVarOperationServerBasePath = operationServerMap['ClustersApi.deleteCluster']?.[localVarOperationServerIndex]?.url;
41172
41186
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -41717,11 +41731,12 @@ export const ClustersApiFactory = function (configuration?: Configuration, baseP
41717
41731
  * @param {string} organizationId Organization ID
41718
41732
  * @param {string} clusterId Cluster ID
41719
41733
  * @param {ClusterDeleteMode} [deleteMode]
41734
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy Terraform/Helm apply and tear down best-effort, tolerating already-absent resources. Not allowed with deleteMode&#x3D;DELETE_QOVERY_CONFIG.
41720
41735
  * @param {*} [options] Override http request option.
41721
41736
  * @throws {RequiredError}
41722
41737
  */
41723
- deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, options?: RawAxiosRequestConfig): AxiosPromise<void> {
41724
- return localVarFp.deleteCluster(organizationId, clusterId, deleteMode, options).then((request) => request(axios, basePath));
41738
+ deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
41739
+ return localVarFp.deleteCluster(organizationId, clusterId, deleteMode, skipReconcile, options).then((request) => request(axios, basePath));
41725
41740
  },
41726
41741
  /**
41727
41742
  * allows to deploy a cluster
@@ -42166,12 +42181,13 @@ export class ClustersApi extends BaseAPI {
42166
42181
  * @param {string} organizationId Organization ID
42167
42182
  * @param {string} clusterId Cluster ID
42168
42183
  * @param {ClusterDeleteMode} [deleteMode]
42184
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy Terraform/Helm apply and tear down best-effort, tolerating already-absent resources. Not allowed with deleteMode&#x3D;DELETE_QOVERY_CONFIG.
42169
42185
  * @param {*} [options] Override http request option.
42170
42186
  * @throws {RequiredError}
42171
42187
  * @memberof ClustersApi
42172
42188
  */
42173
- public deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, options?: RawAxiosRequestConfig) {
42174
- return ClustersApiFp(this.configuration).deleteCluster(organizationId, clusterId, deleteMode, options).then((request) => request(this.axios, this.basePath));
42189
+ public deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
42190
+ return ClustersApiFp(this.configuration).deleteCluster(organizationId, clusterId, deleteMode, skipReconcile, options).then((request) => request(this.axios, this.basePath));
42175
42191
  }
42176
42192
 
42177
42193
  /**
@@ -44941,10 +44957,11 @@ export const ContainerMainCallsApiAxiosParamCreator = function (configuration?:
44941
44957
  * To delete the container you must have the admin permission
44942
44958
  * @summary Delete container
44943
44959
  * @param {string} containerId Container ID
44960
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
44944
44961
  * @param {*} [options] Override http request option.
44945
44962
  * @throws {RequiredError}
44946
44963
  */
44947
- deleteContainer: async (containerId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
44964
+ deleteContainer: async (containerId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
44948
44965
  // verify required parameter 'containerId' is not null or undefined
44949
44966
  assertParamExists('deleteContainer', 'containerId', containerId)
44950
44967
  const localVarPath = `/container/{containerId}`
@@ -44967,6 +44984,10 @@ export const ContainerMainCallsApiAxiosParamCreator = function (configuration?:
44967
44984
  // http bearer authentication required
44968
44985
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
44969
44986
 
44987
+ if (skipReconcile !== undefined) {
44988
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
44989
+ }
44990
+
44970
44991
 
44971
44992
 
44972
44993
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -45160,11 +45181,12 @@ export const ContainerMainCallsApiFp = function(configuration?: Configuration) {
45160
45181
  * To delete the container you must have the admin permission
45161
45182
  * @summary Delete container
45162
45183
  * @param {string} containerId Container ID
45184
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
45163
45185
  * @param {*} [options] Override http request option.
45164
45186
  * @throws {RequiredError}
45165
45187
  */
45166
- async deleteContainer(containerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
45167
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteContainer(containerId, options);
45188
+ async deleteContainer(containerId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
45189
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteContainer(containerId, skipReconcile, options);
45168
45190
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
45169
45191
  const localVarOperationServerBasePath = operationServerMap['ContainerMainCallsApi.deleteContainer']?.[localVarOperationServerIndex]?.url;
45170
45192
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -45236,11 +45258,12 @@ export const ContainerMainCallsApiFactory = function (configuration?: Configurat
45236
45258
  * To delete the container you must have the admin permission
45237
45259
  * @summary Delete container
45238
45260
  * @param {string} containerId Container ID
45261
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
45239
45262
  * @param {*} [options] Override http request option.
45240
45263
  * @throws {RequiredError}
45241
45264
  */
45242
- deleteContainer(containerId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
45243
- return localVarFp.deleteContainer(containerId, options).then((request) => request(axios, basePath));
45265
+ deleteContainer(containerId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
45266
+ return localVarFp.deleteContainer(containerId, skipReconcile, options).then((request) => request(axios, basePath));
45244
45267
  },
45245
45268
  /**
45246
45269
  * - To edit the container you must have the admin permission. - For port edition, if you provide a port id, we will update the corresponding port. If you don\'t we will create a new one. If you remove a port from the payload, we will delete it. - For storage edition, if you provide a storage id, we will update the corresponding storage. If you don\'t we will create a new one. If you remove a storage from the payload, we will delete it.
@@ -45297,12 +45320,13 @@ export class ContainerMainCallsApi extends BaseAPI {
45297
45320
  * To delete the container you must have the admin permission
45298
45321
  * @summary Delete container
45299
45322
  * @param {string} containerId Container ID
45323
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
45300
45324
  * @param {*} [options] Override http request option.
45301
45325
  * @throws {RequiredError}
45302
45326
  * @memberof ContainerMainCallsApi
45303
45327
  */
45304
- public deleteContainer(containerId: string, options?: RawAxiosRequestConfig) {
45305
- return ContainerMainCallsApiFp(this.configuration).deleteContainer(containerId, options).then((request) => request(this.axios, this.basePath));
45328
+ public deleteContainer(containerId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
45329
+ return ContainerMainCallsApiFp(this.configuration).deleteContainer(containerId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
45306
45330
  }
45307
45331
 
45308
45332
  /**
@@ -48064,10 +48088,11 @@ export const DatabaseMainCallsApiAxiosParamCreator = function (configuration?: C
48064
48088
  * To delete a database you must have the admin permission
48065
48089
  * @summary Delete a database
48066
48090
  * @param {string} databaseId Database ID
48091
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48067
48092
  * @param {*} [options] Override http request option.
48068
48093
  * @throws {RequiredError}
48069
48094
  */
48070
- deleteDatabase: async (databaseId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48095
+ deleteDatabase: async (databaseId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48071
48096
  // verify required parameter 'databaseId' is not null or undefined
48072
48097
  assertParamExists('deleteDatabase', 'databaseId', databaseId)
48073
48098
  const localVarPath = `/database/{databaseId}`
@@ -48090,6 +48115,10 @@ export const DatabaseMainCallsApiAxiosParamCreator = function (configuration?: C
48090
48115
  // http bearer authentication required
48091
48116
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
48092
48117
 
48118
+ if (skipReconcile !== undefined) {
48119
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
48120
+ }
48121
+
48093
48122
 
48094
48123
 
48095
48124
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -48369,11 +48398,12 @@ export const DatabaseMainCallsApiFp = function(configuration?: Configuration) {
48369
48398
  * To delete a database you must have the admin permission
48370
48399
  * @summary Delete a database
48371
48400
  * @param {string} databaseId Database ID
48401
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48372
48402
  * @param {*} [options] Override http request option.
48373
48403
  * @throws {RequiredError}
48374
48404
  */
48375
- async deleteDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
48376
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDatabase(databaseId, options);
48405
+ async deleteDatabase(databaseId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
48406
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDatabase(databaseId, skipReconcile, options);
48377
48407
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
48378
48408
  const localVarOperationServerBasePath = operationServerMap['DatabaseMainCallsApi.deleteDatabase']?.[localVarOperationServerIndex]?.url;
48379
48409
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -48472,11 +48502,12 @@ export const DatabaseMainCallsApiFactory = function (configuration?: Configurati
48472
48502
  * To delete a database you must have the admin permission
48473
48503
  * @summary Delete a database
48474
48504
  * @param {string} databaseId Database ID
48505
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48475
48506
  * @param {*} [options] Override http request option.
48476
48507
  * @throws {RequiredError}
48477
48508
  */
48478
- deleteDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
48479
- return localVarFp.deleteDatabase(databaseId, options).then((request) => request(axios, basePath));
48509
+ deleteDatabase(databaseId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
48510
+ return localVarFp.deleteDatabase(databaseId, skipReconcile, options).then((request) => request(axios, basePath));
48480
48511
  },
48481
48512
  /**
48482
48513
  * To edit a database you must have the admin permission
@@ -48554,12 +48585,13 @@ export class DatabaseMainCallsApi extends BaseAPI {
48554
48585
  * To delete a database you must have the admin permission
48555
48586
  * @summary Delete a database
48556
48587
  * @param {string} databaseId Database ID
48588
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48557
48589
  * @param {*} [options] Override http request option.
48558
48590
  * @throws {RequiredError}
48559
48591
  * @memberof DatabaseMainCallsApi
48560
48592
  */
48561
- public deleteDatabase(databaseId: string, options?: RawAxiosRequestConfig) {
48562
- return DatabaseMainCallsApiFp(this.configuration).deleteDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
48593
+ public deleteDatabase(databaseId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
48594
+ return DatabaseMainCallsApiFp(this.configuration).deleteDatabase(databaseId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
48563
48595
  }
48564
48596
 
48565
48597
  /**
@@ -50753,11 +50785,12 @@ export const EnvironmentActionsApiAxiosParamCreator = function (configuration?:
50753
50785
  * Delete selected services
50754
50786
  * @summary Delete services
50755
50787
  * @param {string} environmentId Environment ID
50788
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
50756
50789
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
50757
50790
  * @param {*} [options] Override http request option.
50758
50791
  * @throws {RequiredError}
50759
50792
  */
50760
- deleteSelectedServices: async (environmentId: string, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
50793
+ deleteSelectedServices: async (environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
50761
50794
  // verify required parameter 'environmentId' is not null or undefined
50762
50795
  assertParamExists('deleteSelectedServices', 'environmentId', environmentId)
50763
50796
  const localVarPath = `/environment/{environmentId}/service/delete`
@@ -50780,6 +50813,10 @@ export const EnvironmentActionsApiAxiosParamCreator = function (configuration?:
50780
50813
  // http bearer authentication required
50781
50814
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
50782
50815
 
50816
+ if (skipReconcile !== undefined) {
50817
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
50818
+ }
50819
+
50783
50820
 
50784
50821
 
50785
50822
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -51194,12 +51231,13 @@ export const EnvironmentActionsApiFp = function(configuration?: Configuration) {
51194
51231
  * Delete selected services
51195
51232
  * @summary Delete services
51196
51233
  * @param {string} environmentId Environment ID
51234
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
51197
51235
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
51198
51236
  * @param {*} [options] Override http request option.
51199
51237
  * @throws {RequiredError}
51200
51238
  */
51201
- async deleteSelectedServices(environmentId: string, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
51202
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSelectedServices(environmentId, environmentServiceIdsAllRequest, options);
51239
+ async deleteSelectedServices(environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
51240
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSelectedServices(environmentId, skipReconcile, environmentServiceIdsAllRequest, options);
51203
51241
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
51204
51242
  const localVarOperationServerBasePath = operationServerMap['EnvironmentActionsApi.deleteSelectedServices']?.[localVarOperationServerIndex]?.url;
51205
51243
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -51359,12 +51397,13 @@ export const EnvironmentActionsApiFactory = function (configuration?: Configurat
51359
51397
  * Delete selected services
51360
51398
  * @summary Delete services
51361
51399
  * @param {string} environmentId Environment ID
51400
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
51362
51401
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
51363
51402
  * @param {*} [options] Override http request option.
51364
51403
  * @throws {RequiredError}
51365
51404
  */
51366
- deleteSelectedServices(environmentId: string, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
51367
- return localVarFp.deleteSelectedServices(environmentId, environmentServiceIdsAllRequest, options).then((request) => request(axios, basePath));
51405
+ deleteSelectedServices(environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
51406
+ return localVarFp.deleteSelectedServices(environmentId, skipReconcile, environmentServiceIdsAllRequest, options).then((request) => request(axios, basePath));
51368
51407
  },
51369
51408
  /**
51370
51409
  * Update and deploy the selected services
@@ -51503,13 +51542,14 @@ export class EnvironmentActionsApi extends BaseAPI {
51503
51542
  * Delete selected services
51504
51543
  * @summary Delete services
51505
51544
  * @param {string} environmentId Environment ID
51545
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
51506
51546
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
51507
51547
  * @param {*} [options] Override http request option.
51508
51548
  * @throws {RequiredError}
51509
51549
  * @memberof EnvironmentActionsApi
51510
51550
  */
51511
- public deleteSelectedServices(environmentId: string, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig) {
51512
- return EnvironmentActionsApiFp(this.configuration).deleteSelectedServices(environmentId, environmentServiceIdsAllRequest, options).then((request) => request(this.axios, this.basePath));
51551
+ public deleteSelectedServices(environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig) {
51552
+ return EnvironmentActionsApiFp(this.configuration).deleteSelectedServices(environmentId, skipReconcile, environmentServiceIdsAllRequest, options).then((request) => request(this.axios, this.basePath));
51513
51553
  }
51514
51554
 
51515
51555
  /**
@@ -52442,10 +52482,11 @@ export const EnvironmentMainCallsApiAxiosParamCreator = function (configuration?
52442
52482
  * To delete an environment you must have the admin permission
52443
52483
  * @summary Delete an environment
52444
52484
  * @param {string} environmentId Environment ID
52485
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
52445
52486
  * @param {*} [options] Override http request option.
52446
52487
  * @throws {RequiredError}
52447
52488
  */
52448
- deleteEnvironment: async (environmentId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
52489
+ deleteEnvironment: async (environmentId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
52449
52490
  // verify required parameter 'environmentId' is not null or undefined
52450
52491
  assertParamExists('deleteEnvironment', 'environmentId', environmentId)
52451
52492
  const localVarPath = `/environment/{environmentId}`
@@ -52468,6 +52509,10 @@ export const EnvironmentMainCallsApiAxiosParamCreator = function (configuration?
52468
52509
  // http bearer authentication required
52469
52510
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
52470
52511
 
52512
+ if (skipReconcile !== undefined) {
52513
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
52514
+ }
52515
+
52471
52516
 
52472
52517
 
52473
52518
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -52825,11 +52870,12 @@ export const EnvironmentMainCallsApiFp = function(configuration?: Configuration)
52825
52870
  * To delete an environment you must have the admin permission
52826
52871
  * @summary Delete an environment
52827
52872
  * @param {string} environmentId Environment ID
52873
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
52828
52874
  * @param {*} [options] Override http request option.
52829
52875
  * @throws {RequiredError}
52830
52876
  */
52831
- async deleteEnvironment(environmentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
52832
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEnvironment(environmentId, options);
52877
+ async deleteEnvironment(environmentId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
52878
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEnvironment(environmentId, skipReconcile, options);
52833
52879
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52834
52880
  const localVarOperationServerBasePath = operationServerMap['EnvironmentMainCallsApi.deleteEnvironment']?.[localVarOperationServerIndex]?.url;
52835
52881
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -52953,11 +52999,12 @@ export const EnvironmentMainCallsApiFactory = function (configuration?: Configur
52953
52999
  * To delete an environment you must have the admin permission
52954
53000
  * @summary Delete an environment
52955
53001
  * @param {string} environmentId Environment ID
53002
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
52956
53003
  * @param {*} [options] Override http request option.
52957
53004
  * @throws {RequiredError}
52958
53005
  */
52959
- deleteEnvironment(environmentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
52960
- return localVarFp.deleteEnvironment(environmentId, options).then((request) => request(axios, basePath));
53006
+ deleteEnvironment(environmentId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
53007
+ return localVarFp.deleteEnvironment(environmentId, skipReconcile, options).then((request) => request(axios, basePath));
52961
53008
  },
52962
53009
  /**
52963
53010
  * To edit an environment you must have the admin permission
@@ -53054,12 +53101,13 @@ export class EnvironmentMainCallsApi extends BaseAPI {
53054
53101
  * To delete an environment you must have the admin permission
53055
53102
  * @summary Delete an environment
53056
53103
  * @param {string} environmentId Environment ID
53104
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
53057
53105
  * @param {*} [options] Override http request option.
53058
53106
  * @throws {RequiredError}
53059
53107
  * @memberof EnvironmentMainCallsApi
53060
53108
  */
53061
- public deleteEnvironment(environmentId: string, options?: RawAxiosRequestConfig) {
53062
- return EnvironmentMainCallsApiFp(this.configuration).deleteEnvironment(environmentId, options).then((request) => request(this.axios, this.basePath));
53109
+ public deleteEnvironment(environmentId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
53110
+ return EnvironmentMainCallsApiFp(this.configuration).deleteEnvironment(environmentId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
53063
53111
  }
53064
53112
 
53065
53113
  /**
@@ -57238,10 +57286,11 @@ export const HelmMainCallsApiAxiosParamCreator = function (configuration?: Confi
57238
57286
  * To delete the helm you must have the admin permission
57239
57287
  * @summary Delete helm
57240
57288
  * @param {string} helmId Helm ID
57289
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57241
57290
  * @param {*} [options] Override http request option.
57242
57291
  * @throws {RequiredError}
57243
57292
  */
57244
- deleteHelm: async (helmId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
57293
+ deleteHelm: async (helmId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
57245
57294
  // verify required parameter 'helmId' is not null or undefined
57246
57295
  assertParamExists('deleteHelm', 'helmId', helmId)
57247
57296
  const localVarPath = `/helm/{helmId}`
@@ -57264,6 +57313,10 @@ export const HelmMainCallsApiAxiosParamCreator = function (configuration?: Confi
57264
57313
  // http bearer authentication required
57265
57314
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
57266
57315
 
57316
+ if (skipReconcile !== undefined) {
57317
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
57318
+ }
57319
+
57267
57320
 
57268
57321
 
57269
57322
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -57544,11 +57597,12 @@ export const HelmMainCallsApiFp = function(configuration?: Configuration) {
57544
57597
  * To delete the helm you must have the admin permission
57545
57598
  * @summary Delete helm
57546
57599
  * @param {string} helmId Helm ID
57600
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57547
57601
  * @param {*} [options] Override http request option.
57548
57602
  * @throws {RequiredError}
57549
57603
  */
57550
- async deleteHelm(helmId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
57551
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteHelm(helmId, options);
57604
+ async deleteHelm(helmId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
57605
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteHelm(helmId, skipReconcile, options);
57552
57606
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
57553
57607
  const localVarOperationServerBasePath = operationServerMap['HelmMainCallsApi.deleteHelm']?.[localVarOperationServerIndex]?.url;
57554
57608
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -57647,11 +57701,12 @@ export const HelmMainCallsApiFactory = function (configuration?: Configuration,
57647
57701
  * To delete the helm you must have the admin permission
57648
57702
  * @summary Delete helm
57649
57703
  * @param {string} helmId Helm ID
57704
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57650
57705
  * @param {*} [options] Override http request option.
57651
57706
  * @throws {RequiredError}
57652
57707
  */
57653
- deleteHelm(helmId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
57654
- return localVarFp.deleteHelm(helmId, options).then((request) => request(axios, basePath));
57708
+ deleteHelm(helmId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
57709
+ return localVarFp.deleteHelm(helmId, skipReconcile, options).then((request) => request(axios, basePath));
57655
57710
  },
57656
57711
  /**
57657
57712
  * - To edit the helm you must have the admin permission.
@@ -57729,12 +57784,13 @@ export class HelmMainCallsApi extends BaseAPI {
57729
57784
  * To delete the helm you must have the admin permission
57730
57785
  * @summary Delete helm
57731
57786
  * @param {string} helmId Helm ID
57787
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57732
57788
  * @param {*} [options] Override http request option.
57733
57789
  * @throws {RequiredError}
57734
57790
  * @memberof HelmMainCallsApi
57735
57791
  */
57736
- public deleteHelm(helmId: string, options?: RawAxiosRequestConfig) {
57737
- return HelmMainCallsApiFp(this.configuration).deleteHelm(helmId, options).then((request) => request(this.axios, this.basePath));
57792
+ public deleteHelm(helmId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
57793
+ return HelmMainCallsApiFp(this.configuration).deleteHelm(helmId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
57738
57794
  }
57739
57795
 
57740
57796
  /**
@@ -60901,10 +60957,11 @@ export const JobMainCallsApiAxiosParamCreator = function (configuration?: Config
60901
60957
  * To delete the job you must have the admin permission
60902
60958
  * @summary Delete job
60903
60959
  * @param {string} jobId Job ID
60960
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
60904
60961
  * @param {*} [options] Override http request option.
60905
60962
  * @throws {RequiredError}
60906
60963
  */
60907
- deleteJob: async (jobId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
60964
+ deleteJob: async (jobId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
60908
60965
  // verify required parameter 'jobId' is not null or undefined
60909
60966
  assertParamExists('deleteJob', 'jobId', jobId)
60910
60967
  const localVarPath = `/job/{jobId}`
@@ -60927,6 +60984,10 @@ export const JobMainCallsApiAxiosParamCreator = function (configuration?: Config
60927
60984
  // http bearer authentication required
60928
60985
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
60929
60986
 
60987
+ if (skipReconcile !== undefined) {
60988
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
60989
+ }
60990
+
60930
60991
 
60931
60992
 
60932
60993
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -61130,11 +61191,12 @@ export const JobMainCallsApiFp = function(configuration?: Configuration) {
61130
61191
  * To delete the job you must have the admin permission
61131
61192
  * @summary Delete job
61132
61193
  * @param {string} jobId Job ID
61194
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
61133
61195
  * @param {*} [options] Override http request option.
61134
61196
  * @throws {RequiredError}
61135
61197
  */
61136
- async deleteJob(jobId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
61137
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteJob(jobId, options);
61198
+ async deleteJob(jobId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
61199
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteJob(jobId, skipReconcile, options);
61138
61200
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
61139
61201
  const localVarOperationServerBasePath = operationServerMap['JobMainCallsApi.deleteJob']?.[localVarOperationServerIndex]?.url;
61140
61202
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -61208,11 +61270,12 @@ export const JobMainCallsApiFactory = function (configuration?: Configuration, b
61208
61270
  * To delete the job you must have the admin permission
61209
61271
  * @summary Delete job
61210
61272
  * @param {string} jobId Job ID
61273
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
61211
61274
  * @param {*} [options] Override http request option.
61212
61275
  * @throws {RequiredError}
61213
61276
  */
61214
- deleteJob(jobId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
61215
- return localVarFp.deleteJob(jobId, options).then((request) => request(axios, basePath));
61277
+ deleteJob(jobId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
61278
+ return localVarFp.deleteJob(jobId, skipReconcile, options).then((request) => request(axios, basePath));
61216
61279
  },
61217
61280
  /**
61218
61281
  * - To edit the job you must have the admin permission.
@@ -61271,12 +61334,13 @@ export class JobMainCallsApi extends BaseAPI {
61271
61334
  * To delete the job you must have the admin permission
61272
61335
  * @summary Delete job
61273
61336
  * @param {string} jobId Job ID
61337
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
61274
61338
  * @param {*} [options] Override http request option.
61275
61339
  * @throws {RequiredError}
61276
61340
  * @memberof JobMainCallsApi
61277
61341
  */
61278
- public deleteJob(jobId: string, options?: RawAxiosRequestConfig) {
61279
- return JobMainCallsApiFp(this.configuration).deleteJob(jobId, options).then((request) => request(this.axios, this.basePath));
61342
+ public deleteJob(jobId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
61343
+ return JobMainCallsApiFp(this.configuration).deleteJob(jobId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
61280
61344
  }
61281
61345
 
61282
61346
  /**
@@ -73309,11 +73373,12 @@ export const TerraformMainCallsApiAxiosParamCreator = function (configuration?:
73309
73373
  * @summary Delete Terraform
73310
73374
  * @param {string} terraformId Terraform ID
73311
73375
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73376
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73312
73377
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73313
73378
  * @param {*} [options] Override http request option.
73314
73379
  * @throws {RequiredError}
73315
73380
  */
73316
- deleteTerraform: async (terraformId: string, resourcesOnly?: boolean, forceTerraformAction?: DeleteTerraformAction, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
73381
+ deleteTerraform: async (terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
73317
73382
  // verify required parameter 'terraformId' is not null or undefined
73318
73383
  assertParamExists('deleteTerraform', 'terraformId', terraformId)
73319
73384
  const localVarPath = `/terraform/{terraformId}`
@@ -73340,6 +73405,10 @@ export const TerraformMainCallsApiAxiosParamCreator = function (configuration?:
73340
73405
  localVarQueryParameter['resources_only'] = resourcesOnly;
73341
73406
  }
73342
73407
 
73408
+ if (skipReconcile !== undefined) {
73409
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
73410
+ }
73411
+
73343
73412
  if (forceTerraformAction !== undefined) {
73344
73413
  localVarQueryParameter['force_terraform_action'] = forceTerraformAction;
73345
73414
  }
@@ -73534,12 +73603,13 @@ export const TerraformMainCallsApiFp = function(configuration?: Configuration) {
73534
73603
  * @summary Delete Terraform
73535
73604
  * @param {string} terraformId Terraform ID
73536
73605
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73606
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73537
73607
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73538
73608
  * @param {*} [options] Override http request option.
73539
73609
  * @throws {RequiredError}
73540
73610
  */
73541
- async deleteTerraform(terraformId: string, resourcesOnly?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
73542
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTerraform(terraformId, resourcesOnly, forceTerraformAction, options);
73611
+ async deleteTerraform(terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
73612
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTerraform(terraformId, resourcesOnly, skipReconcile, forceTerraformAction, options);
73543
73613
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73544
73614
  const localVarOperationServerBasePath = operationServerMap['TerraformMainCallsApi.deleteTerraform']?.[localVarOperationServerIndex]?.url;
73545
73615
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -73611,12 +73681,13 @@ export const TerraformMainCallsApiFactory = function (configuration?: Configurat
73611
73681
  * @summary Delete Terraform
73612
73682
  * @param {string} terraformId Terraform ID
73613
73683
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73684
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73614
73685
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73615
73686
  * @param {*} [options] Override http request option.
73616
73687
  * @throws {RequiredError}
73617
73688
  */
73618
- deleteTerraform(terraformId: string, resourcesOnly?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig): AxiosPromise<void> {
73619
- return localVarFp.deleteTerraform(terraformId, resourcesOnly, forceTerraformAction, options).then((request) => request(axios, basePath));
73689
+ deleteTerraform(terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig): AxiosPromise<void> {
73690
+ return localVarFp.deleteTerraform(terraformId, resourcesOnly, skipReconcile, forceTerraformAction, options).then((request) => request(axios, basePath));
73620
73691
  },
73621
73692
  /**
73622
73693
  *
@@ -73673,13 +73744,14 @@ export class TerraformMainCallsApi extends BaseAPI {
73673
73744
  * @summary Delete Terraform
73674
73745
  * @param {string} terraformId Terraform ID
73675
73746
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73747
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73676
73748
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73677
73749
  * @param {*} [options] Override http request option.
73678
73750
  * @throws {RequiredError}
73679
73751
  * @memberof TerraformMainCallsApi
73680
73752
  */
73681
- public deleteTerraform(terraformId: string, resourcesOnly?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig) {
73682
- return TerraformMainCallsApiFp(this.configuration).deleteTerraform(terraformId, resourcesOnly, forceTerraformAction, options).then((request) => request(this.axios, this.basePath));
73753
+ public deleteTerraform(terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig) {
73754
+ return TerraformMainCallsApiFp(this.configuration).deleteTerraform(terraformId, resourcesOnly, skipReconcile, forceTerraformAction, options).then((request) => request(this.axios, this.basePath));
73683
73755
  }
73684
73756
 
73685
73757
  /**