qovery-typescript-axios 1.1.824 → 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 +30 -14
- package/dist/api.d.ts +16 -8
- package/dist/api.js +28 -14
- package/dist/esm/api.d.ts +16 -8
- package/dist/esm/api.js +28 -14
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -39072,10 +39072,11 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
|
|
|
39072
39072
|
*
|
|
39073
39073
|
* @summary Deploy database
|
|
39074
39074
|
* @param {string} databaseId Database ID
|
|
39075
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39075
39076
|
* @param {*} [options] Override http request option.
|
|
39076
39077
|
* @throws {RequiredError}
|
|
39077
39078
|
*/
|
|
39078
|
-
deployDatabase: async (databaseId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39079
|
+
deployDatabase: async (databaseId: string, applyImmediately?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39079
39080
|
// verify required parameter 'databaseId' is not null or undefined
|
|
39080
39081
|
assertParamExists('deployDatabase', 'databaseId', databaseId)
|
|
39081
39082
|
const localVarPath = `/database/{databaseId}/deploy`
|
|
@@ -39098,6 +39099,10 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
|
|
|
39098
39099
|
// http bearer authentication required
|
|
39099
39100
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
39100
39101
|
|
|
39102
|
+
if (applyImmediately !== undefined) {
|
|
39103
|
+
localVarQueryParameter['applyImmediately'] = applyImmediately;
|
|
39104
|
+
}
|
|
39105
|
+
|
|
39101
39106
|
|
|
39102
39107
|
|
|
39103
39108
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -39154,10 +39159,11 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
|
|
|
39154
39159
|
*
|
|
39155
39160
|
* @summary Redeploy database
|
|
39156
39161
|
* @param {string} databaseId Database ID
|
|
39162
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39157
39163
|
* @param {*} [options] Override http request option.
|
|
39158
39164
|
* @throws {RequiredError}
|
|
39159
39165
|
*/
|
|
39160
|
-
redeployDatabase: async (databaseId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39166
|
+
redeployDatabase: async (databaseId: string, applyImmediately?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39161
39167
|
// verify required parameter 'databaseId' is not null or undefined
|
|
39162
39168
|
assertParamExists('redeployDatabase', 'databaseId', databaseId)
|
|
39163
39169
|
const localVarPath = `/database/{databaseId}/redeploy`
|
|
@@ -39180,6 +39186,10 @@ export const DatabaseActionsApiAxiosParamCreator = function (configuration?: Con
|
|
|
39180
39186
|
// http bearer authentication required
|
|
39181
39187
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
39182
39188
|
|
|
39189
|
+
if (applyImmediately !== undefined) {
|
|
39190
|
+
localVarQueryParameter['applyImmediately'] = applyImmediately;
|
|
39191
|
+
}
|
|
39192
|
+
|
|
39183
39193
|
|
|
39184
39194
|
|
|
39185
39195
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -39291,11 +39301,12 @@ export const DatabaseActionsApiFp = function(configuration?: Configuration) {
|
|
|
39291
39301
|
*
|
|
39292
39302
|
* @summary Deploy database
|
|
39293
39303
|
* @param {string} databaseId Database ID
|
|
39304
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39294
39305
|
* @param {*} [options] Override http request option.
|
|
39295
39306
|
* @throws {RequiredError}
|
|
39296
39307
|
*/
|
|
39297
|
-
async deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
|
|
39298
|
-
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);
|
|
39299
39310
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
39300
39311
|
const localVarOperationServerBasePath = operationServerMap['DatabaseActionsApi.deployDatabase']?.[localVarOperationServerIndex]?.url;
|
|
39301
39312
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -39317,11 +39328,12 @@ export const DatabaseActionsApiFp = function(configuration?: Configuration) {
|
|
|
39317
39328
|
*
|
|
39318
39329
|
* @summary Redeploy database
|
|
39319
39330
|
* @param {string} databaseId Database ID
|
|
39331
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39320
39332
|
* @param {*} [options] Override http request option.
|
|
39321
39333
|
* @throws {RequiredError}
|
|
39322
39334
|
*/
|
|
39323
|
-
async redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
|
|
39324
|
-
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);
|
|
39325
39337
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
39326
39338
|
const localVarOperationServerBasePath = operationServerMap['DatabaseActionsApi.redeployDatabase']?.[localVarOperationServerIndex]?.url;
|
|
39327
39339
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -39367,11 +39379,12 @@ export const DatabaseActionsApiFactory = function (configuration?: Configuration
|
|
|
39367
39379
|
*
|
|
39368
39380
|
* @summary Deploy database
|
|
39369
39381
|
* @param {string} databaseId Database ID
|
|
39382
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39370
39383
|
* @param {*} [options] Override http request option.
|
|
39371
39384
|
* @throws {RequiredError}
|
|
39372
39385
|
*/
|
|
39373
|
-
deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
|
|
39374
|
-
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));
|
|
39375
39388
|
},
|
|
39376
39389
|
/**
|
|
39377
39390
|
*
|
|
@@ -39387,11 +39400,12 @@ export const DatabaseActionsApiFactory = function (configuration?: Configuration
|
|
|
39387
39400
|
*
|
|
39388
39401
|
* @summary Redeploy database
|
|
39389
39402
|
* @param {string} databaseId Database ID
|
|
39403
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39390
39404
|
* @param {*} [options] Override http request option.
|
|
39391
39405
|
* @throws {RequiredError}
|
|
39392
39406
|
*/
|
|
39393
|
-
redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
|
|
39394
|
-
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));
|
|
39395
39409
|
},
|
|
39396
39410
|
/**
|
|
39397
39411
|
*
|
|
@@ -39428,12 +39442,13 @@ export class DatabaseActionsApi extends BaseAPI {
|
|
|
39428
39442
|
*
|
|
39429
39443
|
* @summary Deploy database
|
|
39430
39444
|
* @param {string} databaseId Database ID
|
|
39445
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39431
39446
|
* @param {*} [options] Override http request option.
|
|
39432
39447
|
* @throws {RequiredError}
|
|
39433
39448
|
* @memberof DatabaseActionsApi
|
|
39434
39449
|
*/
|
|
39435
|
-
public deployDatabase(databaseId: string, options?: RawAxiosRequestConfig) {
|
|
39436
|
-
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));
|
|
39437
39452
|
}
|
|
39438
39453
|
|
|
39439
39454
|
/**
|
|
@@ -39452,12 +39467,13 @@ export class DatabaseActionsApi extends BaseAPI {
|
|
|
39452
39467
|
*
|
|
39453
39468
|
* @summary Redeploy database
|
|
39454
39469
|
* @param {string} databaseId Database ID
|
|
39470
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
39455
39471
|
* @param {*} [options] Override http request option.
|
|
39456
39472
|
* @throws {RequiredError}
|
|
39457
39473
|
* @memberof DatabaseActionsApi
|
|
39458
39474
|
*/
|
|
39459
|
-
public redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig) {
|
|
39460
|
-
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));
|
|
39461
39477
|
}
|
|
39462
39478
|
|
|
39463
39479
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -28801,10 +28801,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
|
|
|
28801
28801
|
*
|
|
28802
28802
|
* @summary Deploy database
|
|
28803
28803
|
* @param {string} databaseId Database ID
|
|
28804
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28804
28805
|
* @param {*} [options] Override http request option.
|
|
28805
28806
|
* @throws {RequiredError}
|
|
28806
28807
|
*/
|
|
28807
|
-
deployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28808
|
+
deployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28808
28809
|
/**
|
|
28809
28810
|
*
|
|
28810
28811
|
* @summary Retart database
|
|
@@ -28817,10 +28818,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
|
|
|
28817
28818
|
*
|
|
28818
28819
|
* @summary Redeploy database
|
|
28819
28820
|
* @param {string} databaseId Database ID
|
|
28821
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28820
28822
|
* @param {*} [options] Override http request option.
|
|
28821
28823
|
* @throws {RequiredError}
|
|
28822
28824
|
*/
|
|
28823
|
-
redeployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28825
|
+
redeployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28824
28826
|
/**
|
|
28825
28827
|
*
|
|
28826
28828
|
* @summary Stop database
|
|
@@ -28848,10 +28850,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
|
|
|
28848
28850
|
*
|
|
28849
28851
|
* @summary Deploy database
|
|
28850
28852
|
* @param {string} databaseId Database ID
|
|
28853
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28851
28854
|
* @param {*} [options] Override http request option.
|
|
28852
28855
|
* @throws {RequiredError}
|
|
28853
28856
|
*/
|
|
28854
|
-
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>>;
|
|
28855
28858
|
/**
|
|
28856
28859
|
*
|
|
28857
28860
|
* @summary Retart database
|
|
@@ -28864,10 +28867,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
|
|
|
28864
28867
|
*
|
|
28865
28868
|
* @summary Redeploy database
|
|
28866
28869
|
* @param {string} databaseId Database ID
|
|
28870
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28867
28871
|
* @param {*} [options] Override http request option.
|
|
28868
28872
|
* @throws {RequiredError}
|
|
28869
28873
|
*/
|
|
28870
|
-
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>>;
|
|
28871
28875
|
/**
|
|
28872
28876
|
*
|
|
28873
28877
|
* @summary Stop database
|
|
@@ -28895,10 +28899,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
|
|
|
28895
28899
|
*
|
|
28896
28900
|
* @summary Deploy database
|
|
28897
28901
|
* @param {string} databaseId Database ID
|
|
28902
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28898
28903
|
* @param {*} [options] Override http request option.
|
|
28899
28904
|
* @throws {RequiredError}
|
|
28900
28905
|
*/
|
|
28901
|
-
deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28906
|
+
deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28902
28907
|
/**
|
|
28903
28908
|
*
|
|
28904
28909
|
* @summary Retart database
|
|
@@ -28911,10 +28916,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
|
|
|
28911
28916
|
*
|
|
28912
28917
|
* @summary Redeploy database
|
|
28913
28918
|
* @param {string} databaseId Database ID
|
|
28919
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28914
28920
|
* @param {*} [options] Override http request option.
|
|
28915
28921
|
* @throws {RequiredError}
|
|
28916
28922
|
*/
|
|
28917
|
-
redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28923
|
+
redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28918
28924
|
/**
|
|
28919
28925
|
*
|
|
28920
28926
|
* @summary Stop database
|
|
@@ -28944,11 +28950,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
|
|
|
28944
28950
|
*
|
|
28945
28951
|
* @summary Deploy database
|
|
28946
28952
|
* @param {string} databaseId Database ID
|
|
28953
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28947
28954
|
* @param {*} [options] Override http request option.
|
|
28948
28955
|
* @throws {RequiredError}
|
|
28949
28956
|
* @memberof DatabaseActionsApi
|
|
28950
28957
|
*/
|
|
28951
|
-
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, {}>>;
|
|
28952
28959
|
/**
|
|
28953
28960
|
*
|
|
28954
28961
|
* @summary Retart database
|
|
@@ -28962,11 +28969,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
|
|
|
28962
28969
|
*
|
|
28963
28970
|
* @summary Redeploy database
|
|
28964
28971
|
* @param {string} databaseId Database ID
|
|
28972
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28965
28973
|
* @param {*} [options] Override http request option.
|
|
28966
28974
|
* @throws {RequiredError}
|
|
28967
28975
|
* @memberof DatabaseActionsApi
|
|
28968
28976
|
*/
|
|
28969
|
-
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, {}>>;
|
|
28970
28978
|
/**
|
|
28971
28979
|
*
|
|
28972
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
|
@@ -28801,10 +28801,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
|
|
|
28801
28801
|
*
|
|
28802
28802
|
* @summary Deploy database
|
|
28803
28803
|
* @param {string} databaseId Database ID
|
|
28804
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28804
28805
|
* @param {*} [options] Override http request option.
|
|
28805
28806
|
* @throws {RequiredError}
|
|
28806
28807
|
*/
|
|
28807
|
-
deployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28808
|
+
deployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28808
28809
|
/**
|
|
28809
28810
|
*
|
|
28810
28811
|
* @summary Retart database
|
|
@@ -28817,10 +28818,11 @@ export declare const DatabaseActionsApiAxiosParamCreator: (configuration?: Confi
|
|
|
28817
28818
|
*
|
|
28818
28819
|
* @summary Redeploy database
|
|
28819
28820
|
* @param {string} databaseId Database ID
|
|
28821
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28820
28822
|
* @param {*} [options] Override http request option.
|
|
28821
28823
|
* @throws {RequiredError}
|
|
28822
28824
|
*/
|
|
28823
|
-
redeployDatabase: (databaseId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28825
|
+
redeployDatabase: (databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28824
28826
|
/**
|
|
28825
28827
|
*
|
|
28826
28828
|
* @summary Stop database
|
|
@@ -28848,10 +28850,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
|
|
|
28848
28850
|
*
|
|
28849
28851
|
* @summary Deploy database
|
|
28850
28852
|
* @param {string} databaseId Database ID
|
|
28853
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28851
28854
|
* @param {*} [options] Override http request option.
|
|
28852
28855
|
* @throws {RequiredError}
|
|
28853
28856
|
*/
|
|
28854
|
-
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>>;
|
|
28855
28858
|
/**
|
|
28856
28859
|
*
|
|
28857
28860
|
* @summary Retart database
|
|
@@ -28864,10 +28867,11 @@ export declare const DatabaseActionsApiFp: (configuration?: Configuration) => {
|
|
|
28864
28867
|
*
|
|
28865
28868
|
* @summary Redeploy database
|
|
28866
28869
|
* @param {string} databaseId Database ID
|
|
28870
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28867
28871
|
* @param {*} [options] Override http request option.
|
|
28868
28872
|
* @throws {RequiredError}
|
|
28869
28873
|
*/
|
|
28870
|
-
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>>;
|
|
28871
28875
|
/**
|
|
28872
28876
|
*
|
|
28873
28877
|
* @summary Stop database
|
|
@@ -28895,10 +28899,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
|
|
|
28895
28899
|
*
|
|
28896
28900
|
* @summary Deploy database
|
|
28897
28901
|
* @param {string} databaseId Database ID
|
|
28902
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28898
28903
|
* @param {*} [options] Override http request option.
|
|
28899
28904
|
* @throws {RequiredError}
|
|
28900
28905
|
*/
|
|
28901
|
-
deployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28906
|
+
deployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28902
28907
|
/**
|
|
28903
28908
|
*
|
|
28904
28909
|
* @summary Retart database
|
|
@@ -28911,10 +28916,11 @@ export declare const DatabaseActionsApiFactory: (configuration?: Configuration,
|
|
|
28911
28916
|
*
|
|
28912
28917
|
* @summary Redeploy database
|
|
28913
28918
|
* @param {string} databaseId Database ID
|
|
28919
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28914
28920
|
* @param {*} [options] Override http request option.
|
|
28915
28921
|
* @throws {RequiredError}
|
|
28916
28922
|
*/
|
|
28917
|
-
redeployDatabase(databaseId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28923
|
+
redeployDatabase(databaseId: string, applyImmediately?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
28918
28924
|
/**
|
|
28919
28925
|
*
|
|
28920
28926
|
* @summary Stop database
|
|
@@ -28944,11 +28950,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
|
|
|
28944
28950
|
*
|
|
28945
28951
|
* @summary Deploy database
|
|
28946
28952
|
* @param {string} databaseId Database ID
|
|
28953
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28947
28954
|
* @param {*} [options] Override http request option.
|
|
28948
28955
|
* @throws {RequiredError}
|
|
28949
28956
|
* @memberof DatabaseActionsApi
|
|
28950
28957
|
*/
|
|
28951
|
-
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, {}>>;
|
|
28952
28959
|
/**
|
|
28953
28960
|
*
|
|
28954
28961
|
* @summary Retart database
|
|
@@ -28962,11 +28969,12 @@ export declare class DatabaseActionsApi extends BaseAPI {
|
|
|
28962
28969
|
*
|
|
28963
28970
|
* @summary Redeploy database
|
|
28964
28971
|
* @param {string} databaseId Database ID
|
|
28972
|
+
* @param {boolean} [applyImmediately] Apply immediately regardless of the maintenance window
|
|
28965
28973
|
* @param {*} [options] Override http request option.
|
|
28966
28974
|
* @throws {RequiredError}
|
|
28967
28975
|
* @memberof DatabaseActionsApi
|
|
28968
28976
|
*/
|
|
28969
|
-
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, {}>>;
|
|
28970
28978
|
/**
|
|
28971
28979
|
*
|
|
28972
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
|
*
|