qovery-typescript-axios 1.1.934 → 1.1.936

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
@@ -4995,6 +4995,19 @@ export const BuildModeEnum = {
4995
4995
  export type BuildModeEnum = typeof BuildModeEnum[keyof typeof BuildModeEnum];
4996
4996
 
4997
4997
 
4998
+ /**
4999
+ *
5000
+ * @export
5001
+ * @interface CancelAgenticWorkflowDeploymentRequest
5002
+ */
5003
+ export interface CancelAgenticWorkflowDeploymentRequest {
5004
+ /**
5005
+ * When false, the engine stops the deployment at the next safe point, letting the workflow\'s job terminate on its own. When true it stops waiting for that job and abandons it immediately.
5006
+ * @type {boolean}
5007
+ * @memberof CancelAgenticWorkflowDeploymentRequest
5008
+ */
5009
+ 'force_cancel'?: boolean;
5010
+ }
4998
5011
  /**
4999
5012
  *
5000
5013
  * @export
@@ -26899,6 +26912,51 @@ export class AccountInfoApi extends BaseAPI {
26899
26912
  */
26900
26913
  export const AgenticWorkflowsApiAxiosParamCreator = function (configuration?: Configuration) {
26901
26914
  return {
26915
+ /**
26916
+ * Cancel the deployment currently running the agentic workflow. An agentic workflow only ever runs as part of a deployment of its environment, so this cancels that environment deployment and aborts the workflow\'s running job.
26917
+ * @summary Cancel agentic workflow deployment
26918
+ * @param {string} agenticWorkflowId
26919
+ * @param {CancelAgenticWorkflowDeploymentRequest} [cancelAgenticWorkflowDeploymentRequest]
26920
+ * @param {*} [options] Override http request option.
26921
+ * @throws {RequiredError}
26922
+ */
26923
+ cancelAgenticWorkflowDeployment: async (agenticWorkflowId: string, cancelAgenticWorkflowDeploymentRequest?: CancelAgenticWorkflowDeploymentRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
26924
+ // verify required parameter 'agenticWorkflowId' is not null or undefined
26925
+ assertParamExists('cancelAgenticWorkflowDeployment', 'agenticWorkflowId', agenticWorkflowId)
26926
+ const localVarPath = `/agenticWorkflow/{agenticWorkflowId}/cancelDeployment`
26927
+ .replace(`{${"agenticWorkflowId"}}`, encodeURIComponent(String(agenticWorkflowId)));
26928
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26929
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26930
+ let baseOptions;
26931
+ if (configuration) {
26932
+ baseOptions = configuration.baseOptions;
26933
+ }
26934
+
26935
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
26936
+ const localVarHeaderParameter = {} as any;
26937
+ const localVarQueryParameter = {} as any;
26938
+
26939
+ // authentication ApiKeyAuth required
26940
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
26941
+
26942
+ // authentication bearerAuth required
26943
+ // http bearer authentication required
26944
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
26945
+
26946
+
26947
+
26948
+ localVarHeaderParameter['Content-Type'] = 'application/json';
26949
+
26950
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26951
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26952
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
26953
+ localVarRequestOptions.data = serializeDataIfNeeded(cancelAgenticWorkflowDeploymentRequest, localVarRequestOptions, configuration)
26954
+
26955
+ return {
26956
+ url: toPathString(localVarUrlObj),
26957
+ options: localVarRequestOptions,
26958
+ };
26959
+ },
26902
26960
  /**
26903
26961
  *
26904
26962
  * @summary Create an agentic workflow
@@ -26945,7 +27003,7 @@ export const AgenticWorkflowsApiAxiosParamCreator = function (configuration?: Co
26945
27003
  };
26946
27004
  },
26947
27005
  /**
26948
- *
27006
+ * Delete an agentic workflow. This queues a deployment that removes the workflow\'s Kubernetes resources, and the workflow is deleted once that deployment completes. A workflow that was never deployed is removed immediately, with no deployment.
26949
27007
  * @summary Delete an agentic workflow
26950
27008
  * @param {string} agenticWorkflowId
26951
27009
  * @param {*} [options] Override http request option.
@@ -27122,6 +27180,20 @@ export const AgenticWorkflowsApiAxiosParamCreator = function (configuration?: Co
27122
27180
  export const AgenticWorkflowsApiFp = function(configuration?: Configuration) {
27123
27181
  const localVarAxiosParamCreator = AgenticWorkflowsApiAxiosParamCreator(configuration)
27124
27182
  return {
27183
+ /**
27184
+ * Cancel the deployment currently running the agentic workflow. An agentic workflow only ever runs as part of a deployment of its environment, so this cancels that environment deployment and aborts the workflow\'s running job.
27185
+ * @summary Cancel agentic workflow deployment
27186
+ * @param {string} agenticWorkflowId
27187
+ * @param {CancelAgenticWorkflowDeploymentRequest} [cancelAgenticWorkflowDeploymentRequest]
27188
+ * @param {*} [options] Override http request option.
27189
+ * @throws {RequiredError}
27190
+ */
27191
+ async cancelAgenticWorkflowDeployment(agenticWorkflowId: string, cancelAgenticWorkflowDeploymentRequest?: CancelAgenticWorkflowDeploymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
27192
+ const localVarAxiosArgs = await localVarAxiosParamCreator.cancelAgenticWorkflowDeployment(agenticWorkflowId, cancelAgenticWorkflowDeploymentRequest, options);
27193
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
27194
+ const localVarOperationServerBasePath = operationServerMap['AgenticWorkflowsApi.cancelAgenticWorkflowDeployment']?.[localVarOperationServerIndex]?.url;
27195
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
27196
+ },
27125
27197
  /**
27126
27198
  *
27127
27199
  * @summary Create an agentic workflow
@@ -27137,13 +27209,13 @@ export const AgenticWorkflowsApiFp = function(configuration?: Configuration) {
27137
27209
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
27138
27210
  },
27139
27211
  /**
27140
- *
27212
+ * Delete an agentic workflow. This queues a deployment that removes the workflow\'s Kubernetes resources, and the workflow is deleted once that deployment completes. A workflow that was never deployed is removed immediately, with no deployment.
27141
27213
  * @summary Delete an agentic workflow
27142
27214
  * @param {string} agenticWorkflowId
27143
27215
  * @param {*} [options] Override http request option.
27144
27216
  * @throws {RequiredError}
27145
27217
  */
27146
- async deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
27218
+ async deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
27147
27219
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAgenticWorkflow(agenticWorkflowId, options);
27148
27220
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
27149
27221
  const localVarOperationServerBasePath = operationServerMap['AgenticWorkflowsApi.deleteAgenticWorkflow']?.[localVarOperationServerIndex]?.url;
@@ -27199,6 +27271,17 @@ export const AgenticWorkflowsApiFp = function(configuration?: Configuration) {
27199
27271
  export const AgenticWorkflowsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
27200
27272
  const localVarFp = AgenticWorkflowsApiFp(configuration)
27201
27273
  return {
27274
+ /**
27275
+ * Cancel the deployment currently running the agentic workflow. An agentic workflow only ever runs as part of a deployment of its environment, so this cancels that environment deployment and aborts the workflow\'s running job.
27276
+ * @summary Cancel agentic workflow deployment
27277
+ * @param {string} agenticWorkflowId
27278
+ * @param {CancelAgenticWorkflowDeploymentRequest} [cancelAgenticWorkflowDeploymentRequest]
27279
+ * @param {*} [options] Override http request option.
27280
+ * @throws {RequiredError}
27281
+ */
27282
+ cancelAgenticWorkflowDeployment(agenticWorkflowId: string, cancelAgenticWorkflowDeploymentRequest?: CancelAgenticWorkflowDeploymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
27283
+ return localVarFp.cancelAgenticWorkflowDeployment(agenticWorkflowId, cancelAgenticWorkflowDeploymentRequest, options).then((request) => request(axios, basePath));
27284
+ },
27202
27285
  /**
27203
27286
  *
27204
27287
  * @summary Create an agentic workflow
@@ -27211,13 +27294,13 @@ export const AgenticWorkflowsApiFactory = function (configuration?: Configuratio
27211
27294
  return localVarFp.createAgenticWorkflow(environmentId, agenticWorkflowRequest, options).then((request) => request(axios, basePath));
27212
27295
  },
27213
27296
  /**
27214
- *
27297
+ * Delete an agentic workflow. This queues a deployment that removes the workflow\'s Kubernetes resources, and the workflow is deleted once that deployment completes. A workflow that was never deployed is removed immediately, with no deployment.
27215
27298
  * @summary Delete an agentic workflow
27216
27299
  * @param {string} agenticWorkflowId
27217
27300
  * @param {*} [options] Override http request option.
27218
27301
  * @throws {RequiredError}
27219
27302
  */
27220
- deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
27303
+ deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
27221
27304
  return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
27222
27305
  },
27223
27306
  /**
@@ -27261,6 +27344,19 @@ export const AgenticWorkflowsApiFactory = function (configuration?: Configuratio
27261
27344
  * @extends {BaseAPI}
27262
27345
  */
27263
27346
  export class AgenticWorkflowsApi extends BaseAPI {
27347
+ /**
27348
+ * Cancel the deployment currently running the agentic workflow. An agentic workflow only ever runs as part of a deployment of its environment, so this cancels that environment deployment and aborts the workflow\'s running job.
27349
+ * @summary Cancel agentic workflow deployment
27350
+ * @param {string} agenticWorkflowId
27351
+ * @param {CancelAgenticWorkflowDeploymentRequest} [cancelAgenticWorkflowDeploymentRequest]
27352
+ * @param {*} [options] Override http request option.
27353
+ * @throws {RequiredError}
27354
+ * @memberof AgenticWorkflowsApi
27355
+ */
27356
+ public cancelAgenticWorkflowDeployment(agenticWorkflowId: string, cancelAgenticWorkflowDeploymentRequest?: CancelAgenticWorkflowDeploymentRequest, options?: RawAxiosRequestConfig) {
27357
+ return AgenticWorkflowsApiFp(this.configuration).cancelAgenticWorkflowDeployment(agenticWorkflowId, cancelAgenticWorkflowDeploymentRequest, options).then((request) => request(this.axios, this.basePath));
27358
+ }
27359
+
27264
27360
  /**
27265
27361
  *
27266
27362
  * @summary Create an agentic workflow
@@ -27275,7 +27371,7 @@ export class AgenticWorkflowsApi extends BaseAPI {
27275
27371
  }
27276
27372
 
27277
27373
  /**
27278
- *
27374
+ * Delete an agentic workflow. This queues a deployment that removes the workflow\'s Kubernetes resources, and the workflow is deleted once that deployment completes. A workflow that was never deployed is removed immediately, with no deployment.
27279
27375
  * @summary Delete an agentic workflow
27280
27376
  * @param {string} agenticWorkflowId
27281
27377
  * @param {*} [options] Override http request option.
@@ -30996,10 +31092,11 @@ export const ApplicationMainCallsApiAxiosParamCreator = function (configuration?
30996
31092
  * To delete the application you must have the admin permission
30997
31093
  * @summary Delete application
30998
31094
  * @param {string} applicationId Application ID
31095
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
30999
31096
  * @param {*} [options] Override http request option.
31000
31097
  * @throws {RequiredError}
31001
31098
  */
31002
- deleteApplication: async (applicationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
31099
+ deleteApplication: async (applicationId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
31003
31100
  // verify required parameter 'applicationId' is not null or undefined
31004
31101
  assertParamExists('deleteApplication', 'applicationId', applicationId)
31005
31102
  const localVarPath = `/application/{applicationId}`
@@ -31022,6 +31119,10 @@ export const ApplicationMainCallsApiAxiosParamCreator = function (configuration?
31022
31119
  // http bearer authentication required
31023
31120
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
31024
31121
 
31122
+ if (skipReconcile !== undefined) {
31123
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
31124
+ }
31125
+
31025
31126
 
31026
31127
 
31027
31128
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -31307,11 +31408,12 @@ export const ApplicationMainCallsApiFp = function(configuration?: Configuration)
31307
31408
  * To delete the application you must have the admin permission
31308
31409
  * @summary Delete application
31309
31410
  * @param {string} applicationId Application ID
31411
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
31310
31412
  * @param {*} [options] Override http request option.
31311
31413
  * @throws {RequiredError}
31312
31414
  */
31313
- async deleteApplication(applicationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
31314
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApplication(applicationId, options);
31415
+ async deleteApplication(applicationId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
31416
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApplication(applicationId, skipReconcile, options);
31315
31417
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
31316
31418
  const localVarOperationServerBasePath = operationServerMap['ApplicationMainCallsApi.deleteApplication']?.[localVarOperationServerIndex]?.url;
31317
31419
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -31411,11 +31513,12 @@ export const ApplicationMainCallsApiFactory = function (configuration?: Configur
31411
31513
  * To delete the application you must have the admin permission
31412
31514
  * @summary Delete application
31413
31515
  * @param {string} applicationId Application ID
31516
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
31414
31517
  * @param {*} [options] Override http request option.
31415
31518
  * @throws {RequiredError}
31416
31519
  */
31417
- deleteApplication(applicationId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
31418
- return localVarFp.deleteApplication(applicationId, options).then((request) => request(axios, basePath));
31520
+ deleteApplication(applicationId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
31521
+ return localVarFp.deleteApplication(applicationId, skipReconcile, options).then((request) => request(axios, basePath));
31419
31522
  },
31420
31523
  /**
31421
31524
  * - 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 +31597,13 @@ export class ApplicationMainCallsApi extends BaseAPI {
31494
31597
  * To delete the application you must have the admin permission
31495
31598
  * @summary Delete application
31496
31599
  * @param {string} applicationId Application ID
31600
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
31497
31601
  * @param {*} [options] Override http request option.
31498
31602
  * @throws {RequiredError}
31499
31603
  * @memberof ApplicationMainCallsApi
31500
31604
  */
31501
- public deleteApplication(applicationId: string, options?: RawAxiosRequestConfig) {
31502
- return ApplicationMainCallsApiFp(this.configuration).deleteApplication(applicationId, options).then((request) => request(this.axios, this.basePath));
31605
+ public deleteApplication(applicationId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
31606
+ return ApplicationMainCallsApiFp(this.configuration).deleteApplication(applicationId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
31503
31607
  }
31504
31608
 
31505
31609
  /**
@@ -39345,10 +39449,11 @@ export const ClustersApiAxiosParamCreator = function (configuration?: Configurat
39345
39449
  * @param {string} organizationId Organization ID
39346
39450
  * @param {string} clusterId Cluster ID
39347
39451
  * @param {ClusterDeleteMode} [deleteMode]
39452
+ * @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
39453
  * @param {*} [options] Override http request option.
39349
39454
  * @throws {RequiredError}
39350
39455
  */
39351
- deleteCluster: async (organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39456
+ deleteCluster: async (organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39352
39457
  // verify required parameter 'organizationId' is not null or undefined
39353
39458
  assertParamExists('deleteCluster', 'organizationId', organizationId)
39354
39459
  // verify required parameter 'clusterId' is not null or undefined
@@ -39378,6 +39483,10 @@ export const ClustersApiAxiosParamCreator = function (configuration?: Configurat
39378
39483
  localVarQueryParameter['deleteMode'] = deleteMode;
39379
39484
  }
39380
39485
 
39486
+ if (skipReconcile !== undefined) {
39487
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
39488
+ }
39489
+
39381
39490
 
39382
39491
 
39383
39492
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -41162,11 +41271,12 @@ export const ClustersApiFp = function(configuration?: Configuration) {
41162
41271
  * @param {string} organizationId Organization ID
41163
41272
  * @param {string} clusterId Cluster ID
41164
41273
  * @param {ClusterDeleteMode} [deleteMode]
41274
+ * @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
41275
  * @param {*} [options] Override http request option.
41166
41276
  * @throws {RequiredError}
41167
41277
  */
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);
41278
+ async deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
41279
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCluster(organizationId, clusterId, deleteMode, skipReconcile, options);
41170
41280
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
41171
41281
  const localVarOperationServerBasePath = operationServerMap['ClustersApi.deleteCluster']?.[localVarOperationServerIndex]?.url;
41172
41282
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -41717,11 +41827,12 @@ export const ClustersApiFactory = function (configuration?: Configuration, baseP
41717
41827
  * @param {string} organizationId Organization ID
41718
41828
  * @param {string} clusterId Cluster ID
41719
41829
  * @param {ClusterDeleteMode} [deleteMode]
41830
+ * @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
41831
  * @param {*} [options] Override http request option.
41721
41832
  * @throws {RequiredError}
41722
41833
  */
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));
41834
+ deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
41835
+ return localVarFp.deleteCluster(organizationId, clusterId, deleteMode, skipReconcile, options).then((request) => request(axios, basePath));
41725
41836
  },
41726
41837
  /**
41727
41838
  * allows to deploy a cluster
@@ -42166,12 +42277,13 @@ export class ClustersApi extends BaseAPI {
42166
42277
  * @param {string} organizationId Organization ID
42167
42278
  * @param {string} clusterId Cluster ID
42168
42279
  * @param {ClusterDeleteMode} [deleteMode]
42280
+ * @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
42281
  * @param {*} [options] Override http request option.
42170
42282
  * @throws {RequiredError}
42171
42283
  * @memberof ClustersApi
42172
42284
  */
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));
42285
+ public deleteCluster(organizationId: string, clusterId: string, deleteMode?: ClusterDeleteMode, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
42286
+ return ClustersApiFp(this.configuration).deleteCluster(organizationId, clusterId, deleteMode, skipReconcile, options).then((request) => request(this.axios, this.basePath));
42175
42287
  }
42176
42288
 
42177
42289
  /**
@@ -44941,10 +45053,11 @@ export const ContainerMainCallsApiAxiosParamCreator = function (configuration?:
44941
45053
  * To delete the container you must have the admin permission
44942
45054
  * @summary Delete container
44943
45055
  * @param {string} containerId Container ID
45056
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
44944
45057
  * @param {*} [options] Override http request option.
44945
45058
  * @throws {RequiredError}
44946
45059
  */
44947
- deleteContainer: async (containerId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
45060
+ deleteContainer: async (containerId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
44948
45061
  // verify required parameter 'containerId' is not null or undefined
44949
45062
  assertParamExists('deleteContainer', 'containerId', containerId)
44950
45063
  const localVarPath = `/container/{containerId}`
@@ -44967,6 +45080,10 @@ export const ContainerMainCallsApiAxiosParamCreator = function (configuration?:
44967
45080
  // http bearer authentication required
44968
45081
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
44969
45082
 
45083
+ if (skipReconcile !== undefined) {
45084
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
45085
+ }
45086
+
44970
45087
 
44971
45088
 
44972
45089
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -45160,11 +45277,12 @@ export const ContainerMainCallsApiFp = function(configuration?: Configuration) {
45160
45277
  * To delete the container you must have the admin permission
45161
45278
  * @summary Delete container
45162
45279
  * @param {string} containerId Container ID
45280
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
45163
45281
  * @param {*} [options] Override http request option.
45164
45282
  * @throws {RequiredError}
45165
45283
  */
45166
- async deleteContainer(containerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
45167
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteContainer(containerId, options);
45284
+ async deleteContainer(containerId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
45285
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteContainer(containerId, skipReconcile, options);
45168
45286
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
45169
45287
  const localVarOperationServerBasePath = operationServerMap['ContainerMainCallsApi.deleteContainer']?.[localVarOperationServerIndex]?.url;
45170
45288
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -45236,11 +45354,12 @@ export const ContainerMainCallsApiFactory = function (configuration?: Configurat
45236
45354
  * To delete the container you must have the admin permission
45237
45355
  * @summary Delete container
45238
45356
  * @param {string} containerId Container ID
45357
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
45239
45358
  * @param {*} [options] Override http request option.
45240
45359
  * @throws {RequiredError}
45241
45360
  */
45242
- deleteContainer(containerId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
45243
- return localVarFp.deleteContainer(containerId, options).then((request) => request(axios, basePath));
45361
+ deleteContainer(containerId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
45362
+ return localVarFp.deleteContainer(containerId, skipReconcile, options).then((request) => request(axios, basePath));
45244
45363
  },
45245
45364
  /**
45246
45365
  * - 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 +45416,13 @@ export class ContainerMainCallsApi extends BaseAPI {
45297
45416
  * To delete the container you must have the admin permission
45298
45417
  * @summary Delete container
45299
45418
  * @param {string} containerId Container ID
45419
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
45300
45420
  * @param {*} [options] Override http request option.
45301
45421
  * @throws {RequiredError}
45302
45422
  * @memberof ContainerMainCallsApi
45303
45423
  */
45304
- public deleteContainer(containerId: string, options?: RawAxiosRequestConfig) {
45305
- return ContainerMainCallsApiFp(this.configuration).deleteContainer(containerId, options).then((request) => request(this.axios, this.basePath));
45424
+ public deleteContainer(containerId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
45425
+ return ContainerMainCallsApiFp(this.configuration).deleteContainer(containerId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
45306
45426
  }
45307
45427
 
45308
45428
  /**
@@ -48064,10 +48184,11 @@ export const DatabaseMainCallsApiAxiosParamCreator = function (configuration?: C
48064
48184
  * To delete a database you must have the admin permission
48065
48185
  * @summary Delete a database
48066
48186
  * @param {string} databaseId Database ID
48187
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48067
48188
  * @param {*} [options] Override http request option.
48068
48189
  * @throws {RequiredError}
48069
48190
  */
48070
- deleteDatabase: async (databaseId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48191
+ deleteDatabase: async (databaseId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48071
48192
  // verify required parameter 'databaseId' is not null or undefined
48072
48193
  assertParamExists('deleteDatabase', 'databaseId', databaseId)
48073
48194
  const localVarPath = `/database/{databaseId}`
@@ -48090,6 +48211,10 @@ export const DatabaseMainCallsApiAxiosParamCreator = function (configuration?: C
48090
48211
  // http bearer authentication required
48091
48212
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
48092
48213
 
48214
+ if (skipReconcile !== undefined) {
48215
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
48216
+ }
48217
+
48093
48218
 
48094
48219
 
48095
48220
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -48369,11 +48494,12 @@ export const DatabaseMainCallsApiFp = function(configuration?: Configuration) {
48369
48494
  * To delete a database you must have the admin permission
48370
48495
  * @summary Delete a database
48371
48496
  * @param {string} databaseId Database ID
48497
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48372
48498
  * @param {*} [options] Override http request option.
48373
48499
  * @throws {RequiredError}
48374
48500
  */
48375
- async deleteDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
48376
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDatabase(databaseId, options);
48501
+ async deleteDatabase(databaseId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
48502
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDatabase(databaseId, skipReconcile, options);
48377
48503
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
48378
48504
  const localVarOperationServerBasePath = operationServerMap['DatabaseMainCallsApi.deleteDatabase']?.[localVarOperationServerIndex]?.url;
48379
48505
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -48472,11 +48598,12 @@ export const DatabaseMainCallsApiFactory = function (configuration?: Configurati
48472
48598
  * To delete a database you must have the admin permission
48473
48599
  * @summary Delete a database
48474
48600
  * @param {string} databaseId Database ID
48601
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48475
48602
  * @param {*} [options] Override http request option.
48476
48603
  * @throws {RequiredError}
48477
48604
  */
48478
- deleteDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
48479
- return localVarFp.deleteDatabase(databaseId, options).then((request) => request(axios, basePath));
48605
+ deleteDatabase(databaseId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
48606
+ return localVarFp.deleteDatabase(databaseId, skipReconcile, options).then((request) => request(axios, basePath));
48480
48607
  },
48481
48608
  /**
48482
48609
  * To edit a database you must have the admin permission
@@ -48554,12 +48681,13 @@ export class DatabaseMainCallsApi extends BaseAPI {
48554
48681
  * To delete a database you must have the admin permission
48555
48682
  * @summary Delete a database
48556
48683
  * @param {string} databaseId Database ID
48684
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
48557
48685
  * @param {*} [options] Override http request option.
48558
48686
  * @throws {RequiredError}
48559
48687
  * @memberof DatabaseMainCallsApi
48560
48688
  */
48561
- public deleteDatabase(databaseId: string, options?: RawAxiosRequestConfig) {
48562
- return DatabaseMainCallsApiFp(this.configuration).deleteDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
48689
+ public deleteDatabase(databaseId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
48690
+ return DatabaseMainCallsApiFp(this.configuration).deleteDatabase(databaseId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
48563
48691
  }
48564
48692
 
48565
48693
  /**
@@ -50753,11 +50881,12 @@ export const EnvironmentActionsApiAxiosParamCreator = function (configuration?:
50753
50881
  * Delete selected services
50754
50882
  * @summary Delete services
50755
50883
  * @param {string} environmentId Environment ID
50884
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
50756
50885
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
50757
50886
  * @param {*} [options] Override http request option.
50758
50887
  * @throws {RequiredError}
50759
50888
  */
50760
- deleteSelectedServices: async (environmentId: string, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
50889
+ deleteSelectedServices: async (environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
50761
50890
  // verify required parameter 'environmentId' is not null or undefined
50762
50891
  assertParamExists('deleteSelectedServices', 'environmentId', environmentId)
50763
50892
  const localVarPath = `/environment/{environmentId}/service/delete`
@@ -50780,6 +50909,10 @@ export const EnvironmentActionsApiAxiosParamCreator = function (configuration?:
50780
50909
  // http bearer authentication required
50781
50910
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
50782
50911
 
50912
+ if (skipReconcile !== undefined) {
50913
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
50914
+ }
50915
+
50783
50916
 
50784
50917
 
50785
50918
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -51194,12 +51327,13 @@ export const EnvironmentActionsApiFp = function(configuration?: Configuration) {
51194
51327
  * Delete selected services
51195
51328
  * @summary Delete services
51196
51329
  * @param {string} environmentId Environment ID
51330
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
51197
51331
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
51198
51332
  * @param {*} [options] Override http request option.
51199
51333
  * @throws {RequiredError}
51200
51334
  */
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);
51335
+ async deleteSelectedServices(environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
51336
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSelectedServices(environmentId, skipReconcile, environmentServiceIdsAllRequest, options);
51203
51337
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
51204
51338
  const localVarOperationServerBasePath = operationServerMap['EnvironmentActionsApi.deleteSelectedServices']?.[localVarOperationServerIndex]?.url;
51205
51339
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -51359,12 +51493,13 @@ export const EnvironmentActionsApiFactory = function (configuration?: Configurat
51359
51493
  * Delete selected services
51360
51494
  * @summary Delete services
51361
51495
  * @param {string} environmentId Environment ID
51496
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
51362
51497
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
51363
51498
  * @param {*} [options] Override http request option.
51364
51499
  * @throws {RequiredError}
51365
51500
  */
51366
- deleteSelectedServices(environmentId: string, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
51367
- return localVarFp.deleteSelectedServices(environmentId, environmentServiceIdsAllRequest, options).then((request) => request(axios, basePath));
51501
+ deleteSelectedServices(environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
51502
+ return localVarFp.deleteSelectedServices(environmentId, skipReconcile, environmentServiceIdsAllRequest, options).then((request) => request(axios, basePath));
51368
51503
  },
51369
51504
  /**
51370
51505
  * Update and deploy the selected services
@@ -51503,13 +51638,14 @@ export class EnvironmentActionsApi extends BaseAPI {
51503
51638
  * Delete selected services
51504
51639
  * @summary Delete services
51505
51640
  * @param {string} environmentId Environment ID
51641
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
51506
51642
  * @param {EnvironmentServiceIdsAllRequest} [environmentServiceIdsAllRequest]
51507
51643
  * @param {*} [options] Override http request option.
51508
51644
  * @throws {RequiredError}
51509
51645
  * @memberof EnvironmentActionsApi
51510
51646
  */
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));
51647
+ public deleteSelectedServices(environmentId: string, skipReconcile?: boolean, environmentServiceIdsAllRequest?: EnvironmentServiceIdsAllRequest, options?: RawAxiosRequestConfig) {
51648
+ return EnvironmentActionsApiFp(this.configuration).deleteSelectedServices(environmentId, skipReconcile, environmentServiceIdsAllRequest, options).then((request) => request(this.axios, this.basePath));
51513
51649
  }
51514
51650
 
51515
51651
  /**
@@ -52442,10 +52578,11 @@ export const EnvironmentMainCallsApiAxiosParamCreator = function (configuration?
52442
52578
  * To delete an environment you must have the admin permission
52443
52579
  * @summary Delete an environment
52444
52580
  * @param {string} environmentId Environment ID
52581
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
52445
52582
  * @param {*} [options] Override http request option.
52446
52583
  * @throws {RequiredError}
52447
52584
  */
52448
- deleteEnvironment: async (environmentId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
52585
+ deleteEnvironment: async (environmentId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
52449
52586
  // verify required parameter 'environmentId' is not null or undefined
52450
52587
  assertParamExists('deleteEnvironment', 'environmentId', environmentId)
52451
52588
  const localVarPath = `/environment/{environmentId}`
@@ -52468,6 +52605,10 @@ export const EnvironmentMainCallsApiAxiosParamCreator = function (configuration?
52468
52605
  // http bearer authentication required
52469
52606
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
52470
52607
 
52608
+ if (skipReconcile !== undefined) {
52609
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
52610
+ }
52611
+
52471
52612
 
52472
52613
 
52473
52614
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -52825,11 +52966,12 @@ export const EnvironmentMainCallsApiFp = function(configuration?: Configuration)
52825
52966
  * To delete an environment you must have the admin permission
52826
52967
  * @summary Delete an environment
52827
52968
  * @param {string} environmentId Environment ID
52969
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
52828
52970
  * @param {*} [options] Override http request option.
52829
52971
  * @throws {RequiredError}
52830
52972
  */
52831
- async deleteEnvironment(environmentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
52832
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEnvironment(environmentId, options);
52973
+ async deleteEnvironment(environmentId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
52974
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteEnvironment(environmentId, skipReconcile, options);
52833
52975
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
52834
52976
  const localVarOperationServerBasePath = operationServerMap['EnvironmentMainCallsApi.deleteEnvironment']?.[localVarOperationServerIndex]?.url;
52835
52977
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -52953,11 +53095,12 @@ export const EnvironmentMainCallsApiFactory = function (configuration?: Configur
52953
53095
  * To delete an environment you must have the admin permission
52954
53096
  * @summary Delete an environment
52955
53097
  * @param {string} environmentId Environment ID
53098
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
52956
53099
  * @param {*} [options] Override http request option.
52957
53100
  * @throws {RequiredError}
52958
53101
  */
52959
- deleteEnvironment(environmentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
52960
- return localVarFp.deleteEnvironment(environmentId, options).then((request) => request(axios, basePath));
53102
+ deleteEnvironment(environmentId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
53103
+ return localVarFp.deleteEnvironment(environmentId, skipReconcile, options).then((request) => request(axios, basePath));
52961
53104
  },
52962
53105
  /**
52963
53106
  * To edit an environment you must have the admin permission
@@ -53054,12 +53197,13 @@ export class EnvironmentMainCallsApi extends BaseAPI {
53054
53197
  * To delete an environment you must have the admin permission
53055
53198
  * @summary Delete an environment
53056
53199
  * @param {string} environmentId Environment ID
53200
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
53057
53201
  * @param {*} [options] Override http request option.
53058
53202
  * @throws {RequiredError}
53059
53203
  * @memberof EnvironmentMainCallsApi
53060
53204
  */
53061
- public deleteEnvironment(environmentId: string, options?: RawAxiosRequestConfig) {
53062
- return EnvironmentMainCallsApiFp(this.configuration).deleteEnvironment(environmentId, options).then((request) => request(this.axios, this.basePath));
53205
+ public deleteEnvironment(environmentId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
53206
+ return EnvironmentMainCallsApiFp(this.configuration).deleteEnvironment(environmentId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
53063
53207
  }
53064
53208
 
53065
53209
  /**
@@ -57238,10 +57382,11 @@ export const HelmMainCallsApiAxiosParamCreator = function (configuration?: Confi
57238
57382
  * To delete the helm you must have the admin permission
57239
57383
  * @summary Delete helm
57240
57384
  * @param {string} helmId Helm ID
57385
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57241
57386
  * @param {*} [options] Override http request option.
57242
57387
  * @throws {RequiredError}
57243
57388
  */
57244
- deleteHelm: async (helmId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
57389
+ deleteHelm: async (helmId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
57245
57390
  // verify required parameter 'helmId' is not null or undefined
57246
57391
  assertParamExists('deleteHelm', 'helmId', helmId)
57247
57392
  const localVarPath = `/helm/{helmId}`
@@ -57264,6 +57409,10 @@ export const HelmMainCallsApiAxiosParamCreator = function (configuration?: Confi
57264
57409
  // http bearer authentication required
57265
57410
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
57266
57411
 
57412
+ if (skipReconcile !== undefined) {
57413
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
57414
+ }
57415
+
57267
57416
 
57268
57417
 
57269
57418
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -57544,11 +57693,12 @@ export const HelmMainCallsApiFp = function(configuration?: Configuration) {
57544
57693
  * To delete the helm you must have the admin permission
57545
57694
  * @summary Delete helm
57546
57695
  * @param {string} helmId Helm ID
57696
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57547
57697
  * @param {*} [options] Override http request option.
57548
57698
  * @throws {RequiredError}
57549
57699
  */
57550
- async deleteHelm(helmId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
57551
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteHelm(helmId, options);
57700
+ async deleteHelm(helmId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
57701
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteHelm(helmId, skipReconcile, options);
57552
57702
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
57553
57703
  const localVarOperationServerBasePath = operationServerMap['HelmMainCallsApi.deleteHelm']?.[localVarOperationServerIndex]?.url;
57554
57704
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -57647,11 +57797,12 @@ export const HelmMainCallsApiFactory = function (configuration?: Configuration,
57647
57797
  * To delete the helm you must have the admin permission
57648
57798
  * @summary Delete helm
57649
57799
  * @param {string} helmId Helm ID
57800
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57650
57801
  * @param {*} [options] Override http request option.
57651
57802
  * @throws {RequiredError}
57652
57803
  */
57653
- deleteHelm(helmId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
57654
- return localVarFp.deleteHelm(helmId, options).then((request) => request(axios, basePath));
57804
+ deleteHelm(helmId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
57805
+ return localVarFp.deleteHelm(helmId, skipReconcile, options).then((request) => request(axios, basePath));
57655
57806
  },
57656
57807
  /**
57657
57808
  * - To edit the helm you must have the admin permission.
@@ -57729,12 +57880,13 @@ export class HelmMainCallsApi extends BaseAPI {
57729
57880
  * To delete the helm you must have the admin permission
57730
57881
  * @summary Delete helm
57731
57882
  * @param {string} helmId Helm ID
57883
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
57732
57884
  * @param {*} [options] Override http request option.
57733
57885
  * @throws {RequiredError}
57734
57886
  * @memberof HelmMainCallsApi
57735
57887
  */
57736
- public deleteHelm(helmId: string, options?: RawAxiosRequestConfig) {
57737
- return HelmMainCallsApiFp(this.configuration).deleteHelm(helmId, options).then((request) => request(this.axios, this.basePath));
57888
+ public deleteHelm(helmId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
57889
+ return HelmMainCallsApiFp(this.configuration).deleteHelm(helmId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
57738
57890
  }
57739
57891
 
57740
57892
  /**
@@ -60901,10 +61053,11 @@ export const JobMainCallsApiAxiosParamCreator = function (configuration?: Config
60901
61053
  * To delete the job you must have the admin permission
60902
61054
  * @summary Delete job
60903
61055
  * @param {string} jobId Job ID
61056
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
60904
61057
  * @param {*} [options] Override http request option.
60905
61058
  * @throws {RequiredError}
60906
61059
  */
60907
- deleteJob: async (jobId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
61060
+ deleteJob: async (jobId: string, skipReconcile?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
60908
61061
  // verify required parameter 'jobId' is not null or undefined
60909
61062
  assertParamExists('deleteJob', 'jobId', jobId)
60910
61063
  const localVarPath = `/job/{jobId}`
@@ -60927,6 +61080,10 @@ export const JobMainCallsApiAxiosParamCreator = function (configuration?: Config
60927
61080
  // http bearer authentication required
60928
61081
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
60929
61082
 
61083
+ if (skipReconcile !== undefined) {
61084
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
61085
+ }
61086
+
60930
61087
 
60931
61088
 
60932
61089
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -61130,11 +61287,12 @@ export const JobMainCallsApiFp = function(configuration?: Configuration) {
61130
61287
  * To delete the job you must have the admin permission
61131
61288
  * @summary Delete job
61132
61289
  * @param {string} jobId Job ID
61290
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
61133
61291
  * @param {*} [options] Override http request option.
61134
61292
  * @throws {RequiredError}
61135
61293
  */
61136
- async deleteJob(jobId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
61137
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteJob(jobId, options);
61294
+ async deleteJob(jobId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
61295
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteJob(jobId, skipReconcile, options);
61138
61296
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
61139
61297
  const localVarOperationServerBasePath = operationServerMap['JobMainCallsApi.deleteJob']?.[localVarOperationServerIndex]?.url;
61140
61298
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -61208,11 +61366,12 @@ export const JobMainCallsApiFactory = function (configuration?: Configuration, b
61208
61366
  * To delete the job you must have the admin permission
61209
61367
  * @summary Delete job
61210
61368
  * @param {string} jobId Job ID
61369
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
61211
61370
  * @param {*} [options] Override http request option.
61212
61371
  * @throws {RequiredError}
61213
61372
  */
61214
- deleteJob(jobId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
61215
- return localVarFp.deleteJob(jobId, options).then((request) => request(axios, basePath));
61373
+ deleteJob(jobId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
61374
+ return localVarFp.deleteJob(jobId, skipReconcile, options).then((request) => request(axios, basePath));
61216
61375
  },
61217
61376
  /**
61218
61377
  * - To edit the job you must have the admin permission.
@@ -61271,12 +61430,13 @@ export class JobMainCallsApi extends BaseAPI {
61271
61430
  * To delete the job you must have the admin permission
61272
61431
  * @summary Delete job
61273
61432
  * @param {string} jobId Job ID
61433
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
61274
61434
  * @param {*} [options] Override http request option.
61275
61435
  * @throws {RequiredError}
61276
61436
  * @memberof JobMainCallsApi
61277
61437
  */
61278
- public deleteJob(jobId: string, options?: RawAxiosRequestConfig) {
61279
- return JobMainCallsApiFp(this.configuration).deleteJob(jobId, options).then((request) => request(this.axios, this.basePath));
61438
+ public deleteJob(jobId: string, skipReconcile?: boolean, options?: RawAxiosRequestConfig) {
61439
+ return JobMainCallsApiFp(this.configuration).deleteJob(jobId, skipReconcile, options).then((request) => request(this.axios, this.basePath));
61280
61440
  }
61281
61441
 
61282
61442
  /**
@@ -73309,11 +73469,12 @@ export const TerraformMainCallsApiAxiosParamCreator = function (configuration?:
73309
73469
  * @summary Delete Terraform
73310
73470
  * @param {string} terraformId Terraform ID
73311
73471
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73472
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73312
73473
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73313
73474
  * @param {*} [options] Override http request option.
73314
73475
  * @throws {RequiredError}
73315
73476
  */
73316
- deleteTerraform: async (terraformId: string, resourcesOnly?: boolean, forceTerraformAction?: DeleteTerraformAction, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
73477
+ deleteTerraform: async (terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
73317
73478
  // verify required parameter 'terraformId' is not null or undefined
73318
73479
  assertParamExists('deleteTerraform', 'terraformId', terraformId)
73319
73480
  const localVarPath = `/terraform/{terraformId}`
@@ -73340,6 +73501,10 @@ export const TerraformMainCallsApiAxiosParamCreator = function (configuration?:
73340
73501
  localVarQueryParameter['resources_only'] = resourcesOnly;
73341
73502
  }
73342
73503
 
73504
+ if (skipReconcile !== undefined) {
73505
+ localVarQueryParameter['skipReconcile'] = skipReconcile;
73506
+ }
73507
+
73343
73508
  if (forceTerraformAction !== undefined) {
73344
73509
  localVarQueryParameter['force_terraform_action'] = forceTerraformAction;
73345
73510
  }
@@ -73534,12 +73699,13 @@ export const TerraformMainCallsApiFp = function(configuration?: Configuration) {
73534
73699
  * @summary Delete Terraform
73535
73700
  * @param {string} terraformId Terraform ID
73536
73701
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73702
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73537
73703
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73538
73704
  * @param {*} [options] Override http request option.
73539
73705
  * @throws {RequiredError}
73540
73706
  */
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);
73707
+ async deleteTerraform(terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
73708
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTerraform(terraformId, resourcesOnly, skipReconcile, forceTerraformAction, options);
73543
73709
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
73544
73710
  const localVarOperationServerBasePath = operationServerMap['TerraformMainCallsApi.deleteTerraform']?.[localVarOperationServerIndex]?.url;
73545
73711
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -73611,12 +73777,13 @@ export const TerraformMainCallsApiFactory = function (configuration?: Configurat
73611
73777
  * @summary Delete Terraform
73612
73778
  * @param {string} terraformId Terraform ID
73613
73779
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73780
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73614
73781
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73615
73782
  * @param {*} [options] Override http request option.
73616
73783
  * @throws {RequiredError}
73617
73784
  */
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));
73785
+ deleteTerraform(terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig): AxiosPromise<void> {
73786
+ return localVarFp.deleteTerraform(terraformId, resourcesOnly, skipReconcile, forceTerraformAction, options).then((request) => request(axios, basePath));
73620
73787
  },
73621
73788
  /**
73622
73789
  *
@@ -73673,13 +73840,14 @@ export class TerraformMainCallsApi extends BaseAPI {
73673
73840
  * @summary Delete Terraform
73674
73841
  * @param {string} terraformId Terraform ID
73675
73842
  * @param {boolean} [resourcesOnly] When true, only resources are deleted and Qovery configuration is kept.
73843
+ * @param {boolean} [skipReconcile] When true, skip the pre-destroy apply/reconcile and tear down best-effort, tolerating already-absent resources.
73676
73844
  * @param {DeleteTerraformAction} [forceTerraformAction] Force a specific action to be executed by Terraform during deletion.
73677
73845
  * @param {*} [options] Override http request option.
73678
73846
  * @throws {RequiredError}
73679
73847
  * @memberof TerraformMainCallsApi
73680
73848
  */
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));
73849
+ public deleteTerraform(terraformId: string, resourcesOnly?: boolean, skipReconcile?: boolean, forceTerraformAction?: DeleteTerraformAction, options?: RawAxiosRequestConfig) {
73850
+ return TerraformMainCallsApiFp(this.configuration).deleteTerraform(terraformId, resourcesOnly, skipReconcile, forceTerraformAction, options).then((request) => request(this.axios, this.basePath));
73683
73851
  }
73684
73852
 
73685
73853
  /**