qovery-typescript-axios 1.1.822 → 1.1.825

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
@@ -3166,6 +3166,12 @@ export interface Cluster {
3166
3166
  * @memberof Cluster
3167
3167
  */
3168
3168
  'keda'?: ClusterKeda;
3169
+ /**
3170
+ *
3171
+ * @type {ClusterLabelsGroupList}
3172
+ * @memberof Cluster
3173
+ */
3174
+ 'labels_groups'?: ClusterLabelsGroupList;
3169
3175
  }
3170
3176
 
3171
3177
 
@@ -4200,6 +4206,32 @@ export interface ClusterKeda {
4200
4206
  */
4201
4207
  'enabled': boolean;
4202
4208
  }
4209
+ /**
4210
+ *
4211
+ * @export
4212
+ * @interface ClusterLabelsGroup
4213
+ */
4214
+ export interface ClusterLabelsGroup {
4215
+ /**
4216
+ *
4217
+ * @type {string}
4218
+ * @memberof ClusterLabelsGroup
4219
+ */
4220
+ 'id'?: string;
4221
+ }
4222
+ /**
4223
+ *
4224
+ * @export
4225
+ * @interface ClusterLabelsGroupList
4226
+ */
4227
+ export interface ClusterLabelsGroupList {
4228
+ /**
4229
+ *
4230
+ * @type {Array<ClusterLabelsGroup>}
4231
+ * @memberof ClusterLabelsGroupList
4232
+ */
4233
+ 'id'?: Array<ClusterLabelsGroup>;
4234
+ }
4203
4235
  /**
4204
4236
  *
4205
4237
  * @export
@@ -4720,6 +4752,12 @@ export interface ClusterRequest {
4720
4752
  * @memberof ClusterRequest
4721
4753
  */
4722
4754
  'keda'?: ClusterKeda;
4755
+ /**
4756
+ *
4757
+ * @type {ClusterLabelsGroupList}
4758
+ * @memberof ClusterRequest
4759
+ */
4760
+ 'labels_groups'?: ClusterLabelsGroupList;
4723
4761
  }
4724
4762
 
4725
4763
 
@@ -6875,12 +6913,6 @@ export interface Database {
6875
6913
  * @memberof Database
6876
6914
  */
6877
6915
  'disk_encrypted'?: boolean;
6878
- /**
6879
- * Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases.
6880
- * @type {boolean}
6881
- * @memberof Database
6882
- */
6883
- 'apply_immediately'?: boolean;
6884
6916
  /**
6885
6917
  *
6886
6918
  * @type {ServiceTypeEnum}
@@ -7010,12 +7042,6 @@ export interface DatabaseEditRequest {
7010
7042
  * @memberof DatabaseEditRequest
7011
7043
  */
7012
7044
  'icon_uri'?: string;
7013
- /**
7014
- * Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases. Warning: Applying changes immediately may cause a brief service interruption.
7015
- * @type {boolean}
7016
- * @memberof DatabaseEditRequest
7017
- */
7018
- 'apply_immediately'?: boolean;
7019
7045
  }
7020
7046
 
7021
7047
 
@@ -39046,10 +39072,11 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
39046
39072
  *
39047
39073
  * @summary Deploy database
39048
39074
  * @param {string} databaseId Database ID
39075
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39049
39076
  * @param {*} [options] Override http request option.
39050
39077
  * @throws {RequiredError}
39051
39078
  */
39052
- deployDatabase: async (databaseId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39079
+ deployDatabase: async (databaseId: string, applyImmediately?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39053
39080
  // verify required parameter 'databaseId' is not null or undefined
39054
39081
  assertParamExists('deployDatabase', 'databaseId', databaseId)
39055
39082
  const localVarPath = `/database/{databaseId}/deploy`
@@ -39072,6 +39099,10 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
39072
39099
  // http bearer authentication required
39073
39100
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
39074
39101
 
39102
+ if (applyImmediately !== undefined) {
39103
+ localVarQueryParameter['applyImmediately'] = applyImmediately;
39104
+ }
39105
+
39075
39106
 
39076
39107
 
39077
39108
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -39128,10 +39159,11 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
39128
39159
  *
39129
39160
  * @summary Redeploy database
39130
39161
  * @param {string} databaseId Database ID
39162
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39131
39163
  * @param {*} [options] Override http request option.
39132
39164
  * @throws {RequiredError}
39133
39165
  */
39134
- redeployDatabase: async (databaseId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39166
+ redeployDatabase: async (databaseId: string, applyImmediately?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
39135
39167
  // verify required parameter 'databaseId' is not null or undefined
39136
39168
  assertParamExists('redeployDatabase', 'databaseId', databaseId)
39137
39169
  const localVarPath = `/database/{databaseId}/redeploy`
@@ -39154,6 +39186,10 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
39154
39186
  // http bearer authentication required
39155
39187
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
39156
39188
 
39189
+ if (applyImmediately !== undefined) {
39190
+ localVarQueryParameter['applyImmediately'] = applyImmediately;
39191
+ }
39192
+
39157
39193
 
39158
39194
 
39159
39195
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -39265,11 +39301,12 @@ export const DatabaseActionsApiFp = function(configuration?: Configuration) {
39265
39301
  *
39266
39302
  * @summary Deploy database
39267
39303
  * @param {string} databaseId Database ID
39304
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39268
39305
  * @param {*} [options] Override http request option.
39269
39306
  * @throws {RequiredError}
39270
39307
  */
39271
- async deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
39272
- const localVarAxiosArgs = await localVarAxiosParamCreator.deployDatabase(databaseId, options);
39308
+ async deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
39309
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deployDatabase(databaseId, applyImmediately, options);
39273
39310
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39274
39311
  const localVarOperationServerBasePath = operationServerMap['DatabaseActionsApi.deployDatabase']?.[localVarOperationServerIndex]?.url;
39275
39312
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -39291,11 +39328,12 @@ export const DatabaseActionsApiFp = function(configuration?: Configuration) {
39291
39328
  *
39292
39329
  * @summary Redeploy database
39293
39330
  * @param {string} databaseId Database ID
39331
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39294
39332
  * @param {*} [options] Override http request option.
39295
39333
  * @throws {RequiredError}
39296
39334
  */
39297
- async redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
39298
- const localVarAxiosArgs = await localVarAxiosParamCreator.redeployDatabase(databaseId, options);
39335
+ async redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
39336
+ const localVarAxiosArgs = await localVarAxiosParamCreator.redeployDatabase(databaseId, applyImmediately, options);
39299
39337
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
39300
39338
  const localVarOperationServerBasePath = operationServerMap['DatabaseActionsApi.redeployDatabase']?.[localVarOperationServerIndex]?.url;
39301
39339
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -39341,11 +39379,12 @@ export const DatabaseActionsApiFactory = function (configuration?: Configuration
39341
39379
  *
39342
39380
  * @summary Deploy database
39343
39381
  * @param {string} databaseId Database ID
39382
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39344
39383
  * @param {*} [options] Override http request option.
39345
39384
  * @throws {RequiredError}
39346
39385
  */
39347
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
39348
- return localVarFp.deployDatabase(databaseId, options).then((request) => request(axios, basePath));
39386
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
39387
+ return localVarFp.deployDatabase(databaseId, applyImmediately, options).then((request) => request(axios, basePath));
39349
39388
  },
39350
39389
  /**
39351
39390
  *
@@ -39361,11 +39400,12 @@ export const DatabaseActionsApiFactory = function (configuration?: Configuration
39361
39400
  *
39362
39401
  * @summary Redeploy database
39363
39402
  * @param {string} databaseId Database ID
39403
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39364
39404
  * @param {*} [options] Override http request option.
39365
39405
  * @throws {RequiredError}
39366
39406
  */
39367
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
39368
- return localVarFp.redeployDatabase(databaseId, options).then((request) => request(axios, basePath));
39407
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
39408
+ return localVarFp.redeployDatabase(databaseId, applyImmediately, options).then((request) => request(axios, basePath));
39369
39409
  },
39370
39410
  /**
39371
39411
  *
@@ -39402,12 +39442,13 @@ export class DatabaseActionsApi extends BaseAPI {
39402
39442
  *
39403
39443
  * @summary Deploy database
39404
39444
  * @param {string} databaseId Database ID
39445
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39405
39446
  * @param {*} [options] Override http request option.
39406
39447
  * @throws {RequiredError}
39407
39448
  * @memberof DatabaseActionsApi
39408
39449
  */
39409
- public deployDatabase(databaseId: string, options?: RawAxiosRequestConfig) {
39410
- return DatabaseActionsApiFp(this.configuration).deployDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
39450
+ public deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) {
39451
+ return DatabaseActionsApiFp(this.configuration).deployDatabase(databaseId, applyImmediately, options).then((request) => request(this.axios, this.basePath));
39411
39452
  }
39412
39453
 
39413
39454
  /**
@@ -39426,12 +39467,13 @@ export class DatabaseActionsApi extends BaseAPI {
39426
39467
  *
39427
39468
  * @summary Redeploy database
39428
39469
  * @param {string} databaseId Database ID
39470
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
39429
39471
  * @param {*} [options] Override http request option.
39430
39472
  * @throws {RequiredError}
39431
39473
  * @memberof DatabaseActionsApi
39432
39474
  */
39433
- public redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig) {
39434
- return DatabaseActionsApiFp(this.configuration).redeployDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
39475
+ public redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) {
39476
+ return DatabaseActionsApiFp(this.configuration).redeployDatabase(databaseId, applyImmediately, options).then((request) => request(this.axios, this.basePath));
39435
39477
  }
39436
39478
 
39437
39479
  /**
package/dist/api.d.ts CHANGED
@@ -3054,6 +3054,12 @@ export interface Cluster {
3054
3054
  * @memberof Cluster
3055
3055
  */
3056
3056
  'keda'?: ClusterKeda;
3057
+ /**
3058
+ *
3059
+ * @type {ClusterLabelsGroupList}
3060
+ * @memberof Cluster
3061
+ */
3062
+ 'labels_groups'?: ClusterLabelsGroupList;
3057
3063
  }
3058
3064
  /**
3059
3065
  *
@@ -4073,6 +4079,32 @@ export interface ClusterKeda {
4073
4079
  */
4074
4080
  'enabled': boolean;
4075
4081
  }
4082
+ /**
4083
+ *
4084
+ * @export
4085
+ * @interface ClusterLabelsGroup
4086
+ */
4087
+ export interface ClusterLabelsGroup {
4088
+ /**
4089
+ *
4090
+ * @type {string}
4091
+ * @memberof ClusterLabelsGroup
4092
+ */
4093
+ 'id'?: string;
4094
+ }
4095
+ /**
4096
+ *
4097
+ * @export
4098
+ * @interface ClusterLabelsGroupList
4099
+ */
4100
+ export interface ClusterLabelsGroupList {
4101
+ /**
4102
+ *
4103
+ * @type {Array<ClusterLabelsGroup>}
4104
+ * @memberof ClusterLabelsGroupList
4105
+ */
4106
+ 'id'?: Array<ClusterLabelsGroup>;
4107
+ }
4076
4108
  /**
4077
4109
  *
4078
4110
  * @export
@@ -4588,6 +4620,12 @@ export interface ClusterRequest {
4588
4620
  * @memberof ClusterRequest
4589
4621
  */
4590
4622
  'keda'?: ClusterKeda;
4623
+ /**
4624
+ *
4625
+ * @type {ClusterLabelsGroupList}
4626
+ * @memberof ClusterRequest
4627
+ */
4628
+ 'labels_groups'?: ClusterLabelsGroupList;
4591
4629
  }
4592
4630
  /**
4593
4631
  *
@@ -6688,12 +6726,6 @@ export interface Database {
6688
6726
  * @memberof Database
6689
6727
  */
6690
6728
  'disk_encrypted'?: boolean;
6691
- /**
6692
- * Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases.
6693
- * @type {boolean}
6694
- * @memberof Database
6695
- */
6696
- 'apply_immediately'?: boolean;
6697
6729
  /**
6698
6730
  *
6699
6731
  * @type {ServiceTypeEnum}
@@ -6815,12 +6847,6 @@ export interface DatabaseEditRequest {
6815
6847
  * @memberof DatabaseEditRequest
6816
6848
  */
6817
6849
  'icon_uri'?: string;
6818
- /**
6819
- * Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases. Warning: Applying changes immediately may cause a brief service interruption.
6820
- * @type {boolean}
6821
- * @memberof DatabaseEditRequest
6822
- */
6823
- 'apply_immediately'?: boolean;
6824
6850
  }
6825
6851
  /**
6826
6852
  *
@@ -28775,10 +28801,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
28775
28801
  *
28776
28802
  * @summary Deploy database
28777
28803
  * @param {string} databaseId Database ID
28804
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28778
28805
  * @param {*} [options] Override http request option.
28779
28806
  * @throws {RequiredError}
28780
28807
  */
28781
- deployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28808
+ deployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28782
28809
  /**
28783
28810
  *
28784
28811
  * @summary Retart database
@@ -28791,10 +28818,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
28791
28818
  *
28792
28819
  * @summary Redeploy database
28793
28820
  * @param {string} databaseId Database ID
28821
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28794
28822
  * @param {*} [options] Override http request option.
28795
28823
  * @throws {RequiredError}
28796
28824
  */
28797
- redeployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28825
+ redeployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28798
28826
  /**
28799
28827
  *
28800
28828
  * @summary Stop database
@@ -28822,10 +28850,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
28822
28850
  *
28823
28851
  * @summary Deploy database
28824
28852
  * @param {string} databaseId Database ID
28853
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28825
28854
  * @param {*} [options] Override http request option.
28826
28855
  * @throws {RequiredError}
28827
28856
  */
28828
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28857
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28829
28858
  /**
28830
28859
  *
28831
28860
  * @summary Retart database
@@ -28838,10 +28867,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
28838
28867
  *
28839
28868
  * @summary Redeploy database
28840
28869
  * @param {string} databaseId Database ID
28870
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28841
28871
  * @param {*} [options] Override http request option.
28842
28872
  * @throws {RequiredError}
28843
28873
  */
28844
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28874
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28845
28875
  /**
28846
28876
  *
28847
28877
  * @summary Stop database
@@ -28869,10 +28899,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
28869
28899
  *
28870
28900
  * @summary Deploy database
28871
28901
  * @param {string} databaseId Database ID
28902
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28872
28903
  * @param {*} [options] Override http request option.
28873
28904
  * @throws {RequiredError}
28874
28905
  */
28875
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28906
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28876
28907
  /**
28877
28908
  *
28878
28909
  * @summary Retart database
@@ -28885,10 +28916,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
28885
28916
  *
28886
28917
  * @summary Redeploy database
28887
28918
  * @param {string} databaseId Database ID
28919
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28888
28920
  * @param {*} [options] Override http request option.
28889
28921
  * @throws {RequiredError}
28890
28922
  */
28891
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28923
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28892
28924
  /**
28893
28925
  *
28894
28926
  * @summary Stop database
@@ -28918,11 +28950,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
28918
28950
  *
28919
28951
  * @summary Deploy database
28920
28952
  * @param {string} databaseId Database ID
28953
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28921
28954
  * @param {*} [options] Override http request option.
28922
28955
  * @throws {RequiredError}
28923
28956
  * @memberof DatabaseActionsApi
28924
28957
  */
28925
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28958
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28926
28959
  /**
28927
28960
  *
28928
28961
  * @summary Retart database
@@ -28936,11 +28969,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
28936
28969
  *
28937
28970
  * @summary Redeploy database
28938
28971
  * @param {string} databaseId Database ID
28972
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28939
28973
  * @param {*} [options] Override http request option.
28940
28974
  * @throws {RequiredError}
28941
28975
  * @memberof DatabaseActionsApi
28942
28976
  */
28943
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28977
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28944
28978
  /**
28945
28979
  *
28946
28980
  * @summary Stop database
package/dist/api.js CHANGED
@@ -17768,10 +17768,11 @@ const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17768
17768
  *
17769
17769
  * @summary Deploy database
17770
17770
  * @param {string} databaseId Database ID
17771
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17771
17772
  * @param {*} [options] Override http request option.
17772
17773
  * @throws {RequiredError}
17773
17774
  */
17774
- deployDatabase: (databaseId_1, ...args_1) => __awaiter(this, [databaseId_1, ...args_1], void 0, function* (databaseId, options = {}) {
17775
+ deployDatabase: (databaseId_1, applyImmediately_1, ...args_1) => __awaiter(this, [databaseId_1, applyImmediately_1, ...args_1], void 0, function* (databaseId, applyImmediately, options = {}) {
17775
17776
  // verify required parameter 'databaseId' is not null or undefined
17776
17777
  (0, common_1.assertParamExists)('deployDatabase', 'databaseId', databaseId);
17777
17778
  const localVarPath = `/database/{databaseId}/deploy`
@@ -17790,6 +17791,9 @@ const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17790
17791
  // authentication bearerAuth required
17791
17792
  // http bearer authentication required
17792
17793
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
17794
+ if (applyImmediately !== undefined) {
17795
+ localVarQueryParameter['applyImmediately'] = applyImmediately;
17796
+ }
17793
17797
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
17794
17798
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17795
17799
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -17836,10 +17840,11 @@ const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17836
17840
  *
17837
17841
  * @summary Redeploy database
17838
17842
  * @param {string} databaseId Database ID
17843
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17839
17844
  * @param {*} [options] Override http request option.
17840
17845
  * @throws {RequiredError}
17841
17846
  */
17842
- redeployDatabase: (databaseId_1, ...args_1) => __awaiter(this, [databaseId_1, ...args_1], void 0, function* (databaseId, options = {}) {
17847
+ redeployDatabase: (databaseId_1, applyImmediately_1, ...args_1) => __awaiter(this, [databaseId_1, applyImmediately_1, ...args_1], void 0, function* (databaseId, applyImmediately, options = {}) {
17843
17848
  // verify required parameter 'databaseId' is not null or undefined
17844
17849
  (0, common_1.assertParamExists)('redeployDatabase', 'databaseId', databaseId);
17845
17850
  const localVarPath = `/database/{databaseId}/redeploy`
@@ -17858,6 +17863,9 @@ const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17858
17863
  // authentication bearerAuth required
17859
17864
  // http bearer authentication required
17860
17865
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
17866
+ if (applyImmediately !== undefined) {
17867
+ localVarQueryParameter['applyImmediately'] = applyImmediately;
17868
+ }
17861
17869
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
17862
17870
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17863
17871
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -17951,13 +17959,14 @@ const DatabaseActionsApiFp = function (configuration) {
17951
17959
  *
17952
17960
  * @summary Deploy database
17953
17961
  * @param {string} databaseId Database ID
17962
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17954
17963
  * @param {*} [options] Override http request option.
17955
17964
  * @throws {RequiredError}
17956
17965
  */
17957
- deployDatabase(databaseId, options) {
17966
+ deployDatabase(databaseId, applyImmediately, options) {
17958
17967
  return __awaiter(this, void 0, void 0, function* () {
17959
17968
  var _a, _b, _c;
17960
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deployDatabase(databaseId, options);
17969
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deployDatabase(databaseId, applyImmediately, options);
17961
17970
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17962
17971
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DatabaseActionsApi.deployDatabase']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17963
17972
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -17983,13 +17992,14 @@ const DatabaseActionsApiFp = function (configuration) {
17983
17992
  *
17984
17993
  * @summary Redeploy database
17985
17994
  * @param {string} databaseId Database ID
17995
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17986
17996
  * @param {*} [options] Override http request option.
17987
17997
  * @throws {RequiredError}
17988
17998
  */
17989
- redeployDatabase(databaseId, options) {
17999
+ redeployDatabase(databaseId, applyImmediately, options) {
17990
18000
  return __awaiter(this, void 0, void 0, function* () {
17991
18001
  var _a, _b, _c;
17992
- const localVarAxiosArgs = yield localVarAxiosParamCreator.redeployDatabase(databaseId, options);
18002
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.redeployDatabase(databaseId, applyImmediately, options);
17993
18003
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17994
18004
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DatabaseActionsApi.redeployDatabase']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17995
18005
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -18042,11 +18052,12 @@ const DatabaseActionsApiFactory = function (configuration, basePath, axios) {
18042
18052
  *
18043
18053
  * @summary Deploy database
18044
18054
  * @param {string} databaseId Database ID
18055
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
18045
18056
  * @param {*} [options] Override http request option.
18046
18057
  * @throws {RequiredError}
18047
18058
  */
18048
- deployDatabase(databaseId, options) {
18049
- return localVarFp.deployDatabase(databaseId, options).then((request) => request(axios, basePath));
18059
+ deployDatabase(databaseId, applyImmediately, options) {
18060
+ return localVarFp.deployDatabase(databaseId, applyImmediately, options).then((request) => request(axios, basePath));
18050
18061
  },
18051
18062
  /**
18052
18063
  *
@@ -18062,11 +18073,12 @@ const DatabaseActionsApiFactory = function (configuration, basePath, axios) {
18062
18073
  *
18063
18074
  * @summary Redeploy database
18064
18075
  * @param {string} databaseId Database ID
18076
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
18065
18077
  * @param {*} [options] Override http request option.
18066
18078
  * @throws {RequiredError}
18067
18079
  */
18068
- redeployDatabase(databaseId, options) {
18069
- return localVarFp.redeployDatabase(databaseId, options).then((request) => request(axios, basePath));
18080
+ redeployDatabase(databaseId, applyImmediately, options) {
18081
+ return localVarFp.redeployDatabase(databaseId, applyImmediately, options).then((request) => request(axios, basePath));
18070
18082
  },
18071
18083
  /**
18072
18084
  *
@@ -18103,12 +18115,13 @@ class DatabaseActionsApi extends base_1.BaseAPI {
18103
18115
  *
18104
18116
  * @summary Deploy database
18105
18117
  * @param {string} databaseId Database ID
18118
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
18106
18119
  * @param {*} [options] Override http request option.
18107
18120
  * @throws {RequiredError}
18108
18121
  * @memberof DatabaseActionsApi
18109
18122
  */
18110
- deployDatabase(databaseId, options) {
18111
- return (0, exports.DatabaseActionsApiFp)(this.configuration).deployDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
18123
+ deployDatabase(databaseId, applyImmediately, options) {
18124
+ return (0, exports.DatabaseActionsApiFp)(this.configuration).deployDatabase(databaseId, applyImmediately, options).then((request) => request(this.axios, this.basePath));
18112
18125
  }
18113
18126
  /**
18114
18127
  *
@@ -18125,12 +18138,13 @@ class DatabaseActionsApi extends base_1.BaseAPI {
18125
18138
  *
18126
18139
  * @summary Redeploy database
18127
18140
  * @param {string} databaseId Database ID
18141
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
18128
18142
  * @param {*} [options] Override http request option.
18129
18143
  * @throws {RequiredError}
18130
18144
  * @memberof DatabaseActionsApi
18131
18145
  */
18132
- redeployDatabase(databaseId, options) {
18133
- return (0, exports.DatabaseActionsApiFp)(this.configuration).redeployDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
18146
+ redeployDatabase(databaseId, applyImmediately, options) {
18147
+ return (0, exports.DatabaseActionsApiFp)(this.configuration).redeployDatabase(databaseId, applyImmediately, options).then((request) => request(this.axios, this.basePath));
18134
18148
  }
18135
18149
  /**
18136
18150
  *
package/dist/esm/api.d.ts CHANGED
@@ -3054,6 +3054,12 @@ export interface Cluster {
3054
3054
  * @memberof Cluster
3055
3055
  */
3056
3056
  'keda'?: ClusterKeda;
3057
+ /**
3058
+ *
3059
+ * @type {ClusterLabelsGroupList}
3060
+ * @memberof Cluster
3061
+ */
3062
+ 'labels_groups'?: ClusterLabelsGroupList;
3057
3063
  }
3058
3064
  /**
3059
3065
  *
@@ -4073,6 +4079,32 @@ export interface ClusterKeda {
4073
4079
  */
4074
4080
  'enabled': boolean;
4075
4081
  }
4082
+ /**
4083
+ *
4084
+ * @export
4085
+ * @interface ClusterLabelsGroup
4086
+ */
4087
+ export interface ClusterLabelsGroup {
4088
+ /**
4089
+ *
4090
+ * @type {string}
4091
+ * @memberof ClusterLabelsGroup
4092
+ */
4093
+ 'id'?: string;
4094
+ }
4095
+ /**
4096
+ *
4097
+ * @export
4098
+ * @interface ClusterLabelsGroupList
4099
+ */
4100
+ export interface ClusterLabelsGroupList {
4101
+ /**
4102
+ *
4103
+ * @type {Array<ClusterLabelsGroup>}
4104
+ * @memberof ClusterLabelsGroupList
4105
+ */
4106
+ 'id'?: Array<ClusterLabelsGroup>;
4107
+ }
4076
4108
  /**
4077
4109
  *
4078
4110
  * @export
@@ -4588,6 +4620,12 @@ export interface ClusterRequest {
4588
4620
  * @memberof ClusterRequest
4589
4621
  */
4590
4622
  'keda'?: ClusterKeda;
4623
+ /**
4624
+ *
4625
+ * @type {ClusterLabelsGroupList}
4626
+ * @memberof ClusterRequest
4627
+ */
4628
+ 'labels_groups'?: ClusterLabelsGroupList;
4591
4629
  }
4592
4630
  /**
4593
4631
  *
@@ -6688,12 +6726,6 @@ export interface Database {
6688
6726
  * @memberof Database
6689
6727
  */
6690
6728
  'disk_encrypted'?: boolean;
6691
- /**
6692
- * Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases.
6693
- * @type {boolean}
6694
- * @memberof Database
6695
- */
6696
- 'apply_immediately'?: boolean;
6697
6729
  /**
6698
6730
  *
6699
6731
  * @type {ServiceTypeEnum}
@@ -6815,12 +6847,6 @@ export interface DatabaseEditRequest {
6815
6847
  * @memberof DatabaseEditRequest
6816
6848
  */
6817
6849
  'icon_uri'?: string;
6818
- /**
6819
- * Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases. Warning: Applying changes immediately may cause a brief service interruption.
6820
- * @type {boolean}
6821
- * @memberof DatabaseEditRequest
6822
- */
6823
- 'apply_immediately'?: boolean;
6824
6850
  }
6825
6851
  /**
6826
6852
  *
@@ -28775,10 +28801,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
28775
28801
  *
28776
28802
  * @summary Deploy database
28777
28803
  * @param {string} databaseId Database ID
28804
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28778
28805
  * @param {*} [options] Override http request option.
28779
28806
  * @throws {RequiredError}
28780
28807
  */
28781
- deployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28808
+ deployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28782
28809
  /**
28783
28810
  *
28784
28811
  * @summary Retart database
@@ -28791,10 +28818,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
28791
28818
  *
28792
28819
  * @summary Redeploy database
28793
28820
  * @param {string} databaseId Database ID
28821
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28794
28822
  * @param {*} [options] Override http request option.
28795
28823
  * @throws {RequiredError}
28796
28824
  */
28797
- redeployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28825
+ redeployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28798
28826
  /**
28799
28827
  *
28800
28828
  * @summary Stop database
@@ -28822,10 +28850,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
28822
28850
  *
28823
28851
  * @summary Deploy database
28824
28852
  * @param {string} databaseId Database ID
28853
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28825
28854
  * @param {*} [options] Override http request option.
28826
28855
  * @throws {RequiredError}
28827
28856
  */
28828
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28857
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28829
28858
  /**
28830
28859
  *
28831
28860
  * @summary Retart database
@@ -28838,10 +28867,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
28838
28867
  *
28839
28868
  * @summary Redeploy database
28840
28869
  * @param {string} databaseId Database ID
28870
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28841
28871
  * @param {*} [options] Override http request option.
28842
28872
  * @throws {RequiredError}
28843
28873
  */
28844
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28874
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
28845
28875
  /**
28846
28876
  *
28847
28877
  * @summary Stop database
@@ -28869,10 +28899,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
28869
28899
  *
28870
28900
  * @summary Deploy database
28871
28901
  * @param {string} databaseId Database ID
28902
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28872
28903
  * @param {*} [options] Override http request option.
28873
28904
  * @throws {RequiredError}
28874
28905
  */
28875
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28906
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28876
28907
  /**
28877
28908
  *
28878
28909
  * @summary Retart database
@@ -28885,10 +28916,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
28885
28916
  *
28886
28917
  * @summary Redeploy database
28887
28918
  * @param {string} databaseId Database ID
28919
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28888
28920
  * @param {*} [options] Override http request option.
28889
28921
  * @throws {RequiredError}
28890
28922
  */
28891
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28923
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
28892
28924
  /**
28893
28925
  *
28894
28926
  * @summary Stop database
@@ -28918,11 +28950,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
28918
28950
  *
28919
28951
  * @summary Deploy database
28920
28952
  * @param {string} databaseId Database ID
28953
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28921
28954
  * @param {*} [options] Override http request option.
28922
28955
  * @throws {RequiredError}
28923
28956
  * @memberof DatabaseActionsApi
28924
28957
  */
28925
- deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28958
+ deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28926
28959
  /**
28927
28960
  *
28928
28961
  * @summary Retart database
@@ -28936,11 +28969,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
28936
28969
  *
28937
28970
  * @summary Redeploy database
28938
28971
  * @param {string} databaseId Database ID
28972
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
28939
28973
  * @param {*} [options] Override http request option.
28940
28974
  * @throws {RequiredError}
28941
28975
  * @memberof DatabaseActionsApi
28942
28976
  */
28943
- redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28977
+ redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
28944
28978
  /**
28945
28979
  *
28946
28980
  * @summary Stop database
package/dist/esm/api.js CHANGED
@@ -17644,10 +17644,11 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17644
17644
  *
17645
17645
  * @summary Deploy database
17646
17646
  * @param {string} databaseId Database ID
17647
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17647
17648
  * @param {*} [options] Override http request option.
17648
17649
  * @throws {RequiredError}
17649
17650
  */
17650
- deployDatabase: (databaseId_1, ...args_1) => __awaiter(this, [databaseId_1, ...args_1], void 0, function* (databaseId, options = {}) {
17651
+ deployDatabase: (databaseId_1, applyImmediately_1, ...args_1) => __awaiter(this, [databaseId_1, applyImmediately_1, ...args_1], void 0, function* (databaseId, applyImmediately, options = {}) {
17651
17652
  // verify required parameter 'databaseId' is not null or undefined
17652
17653
  assertParamExists('deployDatabase', 'databaseId', databaseId);
17653
17654
  const localVarPath = `/database/{databaseId}/deploy`
@@ -17666,6 +17667,9 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17666
17667
  // authentication bearerAuth required
17667
17668
  // http bearer authentication required
17668
17669
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
17670
+ if (applyImmediately !== undefined) {
17671
+ localVarQueryParameter['applyImmediately'] = applyImmediately;
17672
+ }
17669
17673
  setSearchParams(localVarUrlObj, localVarQueryParameter);
17670
17674
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17671
17675
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -17712,10 +17716,11 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17712
17716
  *
17713
17717
  * @summary Redeploy database
17714
17718
  * @param {string} databaseId Database ID
17719
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17715
17720
  * @param {*} [options] Override http request option.
17716
17721
  * @throws {RequiredError}
17717
17722
  */
17718
- redeployDatabase: (databaseId_1, ...args_1) => __awaiter(this, [databaseId_1, ...args_1], void 0, function* (databaseId, options = {}) {
17723
+ redeployDatabase: (databaseId_1, applyImmediately_1, ...args_1) => __awaiter(this, [databaseId_1, applyImmediately_1, ...args_1], void 0, function* (databaseId, applyImmediately, options = {}) {
17719
17724
  // verify required parameter 'databaseId' is not null or undefined
17720
17725
  assertParamExists('redeployDatabase', 'databaseId', databaseId);
17721
17726
  const localVarPath = `/database/{databaseId}/redeploy`
@@ -17734,6 +17739,9 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration) {
17734
17739
  // authentication bearerAuth required
17735
17740
  // http bearer authentication required
17736
17741
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
17742
+ if (applyImmediately !== undefined) {
17743
+ localVarQueryParameter['applyImmediately'] = applyImmediately;
17744
+ }
17737
17745
  setSearchParams(localVarUrlObj, localVarQueryParameter);
17738
17746
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17739
17747
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -17826,13 +17834,14 @@ export const DatabaseActionsApiFp = function (configuration) {
17826
17834
  *
17827
17835
  * @summary Deploy database
17828
17836
  * @param {string} databaseId Database ID
17837
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17829
17838
  * @param {*} [options] Override http request option.
17830
17839
  * @throws {RequiredError}
17831
17840
  */
17832
- deployDatabase(databaseId, options) {
17841
+ deployDatabase(databaseId, applyImmediately, options) {
17833
17842
  return __awaiter(this, void 0, void 0, function* () {
17834
17843
  var _a, _b, _c;
17835
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deployDatabase(databaseId, options);
17844
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deployDatabase(databaseId, applyImmediately, options);
17836
17845
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17837
17846
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DatabaseActionsApi.deployDatabase']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17838
17847
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -17858,13 +17867,14 @@ export const DatabaseActionsApiFp = function (configuration) {
17858
17867
  *
17859
17868
  * @summary Redeploy database
17860
17869
  * @param {string} databaseId Database ID
17870
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17861
17871
  * @param {*} [options] Override http request option.
17862
17872
  * @throws {RequiredError}
17863
17873
  */
17864
- redeployDatabase(databaseId, options) {
17874
+ redeployDatabase(databaseId, applyImmediately, options) {
17865
17875
  return __awaiter(this, void 0, void 0, function* () {
17866
17876
  var _a, _b, _c;
17867
- const localVarAxiosArgs = yield localVarAxiosParamCreator.redeployDatabase(databaseId, options);
17877
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.redeployDatabase(databaseId, applyImmediately, options);
17868
17878
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17869
17879
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DatabaseActionsApi.redeployDatabase']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17870
17880
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -17916,11 +17926,12 @@ export const DatabaseActionsApiFactory = function (configuration, basePath, axio
17916
17926
  *
17917
17927
  * @summary Deploy database
17918
17928
  * @param {string} databaseId Database ID
17929
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17919
17930
  * @param {*} [options] Override http request option.
17920
17931
  * @throws {RequiredError}
17921
17932
  */
17922
- deployDatabase(databaseId, options) {
17923
- return localVarFp.deployDatabase(databaseId, options).then((request) => request(axios, basePath));
17933
+ deployDatabase(databaseId, applyImmediately, options) {
17934
+ return localVarFp.deployDatabase(databaseId, applyImmediately, options).then((request) => request(axios, basePath));
17924
17935
  },
17925
17936
  /**
17926
17937
  *
@@ -17936,11 +17947,12 @@ export const DatabaseActionsApiFactory = function (configuration, basePath, axio
17936
17947
  *
17937
17948
  * @summary Redeploy database
17938
17949
  * @param {string} databaseId Database ID
17950
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17939
17951
  * @param {*} [options] Override http request option.
17940
17952
  * @throws {RequiredError}
17941
17953
  */
17942
- redeployDatabase(databaseId, options) {
17943
- return localVarFp.redeployDatabase(databaseId, options).then((request) => request(axios, basePath));
17954
+ redeployDatabase(databaseId, applyImmediately, options) {
17955
+ return localVarFp.redeployDatabase(databaseId, applyImmediately, options).then((request) => request(axios, basePath));
17944
17956
  },
17945
17957
  /**
17946
17958
  *
@@ -17976,12 +17988,13 @@ export class DatabaseActionsApi extends BaseAPI {
17976
17988
  *
17977
17989
  * @summary Deploy database
17978
17990
  * @param {string} databaseId Database ID
17991
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
17979
17992
  * @param {*} [options] Override http request option.
17980
17993
  * @throws {RequiredError}
17981
17994
  * @memberof DatabaseActionsApi
17982
17995
  */
17983
- deployDatabase(databaseId, options) {
17984
- return DatabaseActionsApiFp(this.configuration).deployDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
17996
+ deployDatabase(databaseId, applyImmediately, options) {
17997
+ return DatabaseActionsApiFp(this.configuration).deployDatabase(databaseId, applyImmediately, options).then((request) => request(this.axios, this.basePath));
17985
17998
  }
17986
17999
  /**
17987
18000
  *
@@ -17998,12 +18011,13 @@ export class DatabaseActionsApi extends BaseAPI {
17998
18011
  *
17999
18012
  * @summary Redeploy database
18000
18013
  * @param {string} databaseId Database ID
18014
+ * @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
18001
18015
  * @param {*} [options] Override http request option.
18002
18016
  * @throws {RequiredError}
18003
18017
  * @memberof DatabaseActionsApi
18004
18018
  */
18005
- redeployDatabase(databaseId, options) {
18006
- return DatabaseActionsApiFp(this.configuration).redeployDatabase(databaseId, options).then((request) => request(this.axios, this.basePath));
18019
+ redeployDatabase(databaseId, applyImmediately, options) {
18020
+ return DatabaseActionsApiFp(this.configuration).redeployDatabase(databaseId, applyImmediately, options).then((request) => request(this.axios, this.basePath));
18007
18021
  }
18008
18022
  /**
18009
18023
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.822",
3
+ "version": "v1.1.825",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {