qovery-typescript-axios 1.1.897 → 1.1.899
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 +350 -0
- package/dist/api.d.ts +229 -0
- package/dist/api.js +246 -7
- package/dist/esm/api.d.ts +229 -0
- package/dist/esm/api.js +231 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3442,6 +3442,105 @@ export interface BillingStatus {
|
|
|
3442
3442
|
*/
|
|
3443
3443
|
'message'?: string;
|
|
3444
3444
|
}
|
|
3445
|
+
/**
|
|
3446
|
+
*
|
|
3447
|
+
* @export
|
|
3448
|
+
* @interface BlueprintCatalogResponse
|
|
3449
|
+
*/
|
|
3450
|
+
export interface BlueprintCatalogResponse {
|
|
3451
|
+
/**
|
|
3452
|
+
*
|
|
3453
|
+
* @type {string}
|
|
3454
|
+
* @memberof BlueprintCatalogResponse
|
|
3455
|
+
*/
|
|
3456
|
+
'version': string;
|
|
3457
|
+
/**
|
|
3458
|
+
*
|
|
3459
|
+
* @type {string}
|
|
3460
|
+
* @memberof BlueprintCatalogResponse
|
|
3461
|
+
*/
|
|
3462
|
+
'generatedAt': string;
|
|
3463
|
+
/**
|
|
3464
|
+
*
|
|
3465
|
+
* @type {Array<BlueprintItem>}
|
|
3466
|
+
* @memberof BlueprintCatalogResponse
|
|
3467
|
+
*/
|
|
3468
|
+
'blueprints': Array<BlueprintItem>;
|
|
3469
|
+
}
|
|
3470
|
+
/**
|
|
3471
|
+
*
|
|
3472
|
+
* @export
|
|
3473
|
+
* @interface BlueprintItem
|
|
3474
|
+
*/
|
|
3475
|
+
export interface BlueprintItem {
|
|
3476
|
+
/**
|
|
3477
|
+
*
|
|
3478
|
+
* @type {string}
|
|
3479
|
+
* @memberof BlueprintItem
|
|
3480
|
+
*/
|
|
3481
|
+
'name': string;
|
|
3482
|
+
/**
|
|
3483
|
+
*
|
|
3484
|
+
* @type {string}
|
|
3485
|
+
* @memberof BlueprintItem
|
|
3486
|
+
*/
|
|
3487
|
+
'kind': string;
|
|
3488
|
+
/**
|
|
3489
|
+
*
|
|
3490
|
+
* @type {string}
|
|
3491
|
+
* @memberof BlueprintItem
|
|
3492
|
+
*/
|
|
3493
|
+
'description': string;
|
|
3494
|
+
/**
|
|
3495
|
+
*
|
|
3496
|
+
* @type {string}
|
|
3497
|
+
* @memberof BlueprintItem
|
|
3498
|
+
*/
|
|
3499
|
+
'icon': string;
|
|
3500
|
+
/**
|
|
3501
|
+
*
|
|
3502
|
+
* @type {Array<string>}
|
|
3503
|
+
* @memberof BlueprintItem
|
|
3504
|
+
*/
|
|
3505
|
+
'categories': Array<string>;
|
|
3506
|
+
/**
|
|
3507
|
+
*
|
|
3508
|
+
* @type {string}
|
|
3509
|
+
* @memberof BlueprintItem
|
|
3510
|
+
*/
|
|
3511
|
+
'provider': string;
|
|
3512
|
+
/**
|
|
3513
|
+
*
|
|
3514
|
+
* @type {string}
|
|
3515
|
+
* @memberof BlueprintItem
|
|
3516
|
+
*/
|
|
3517
|
+
'serviceFamily': string;
|
|
3518
|
+
/**
|
|
3519
|
+
*
|
|
3520
|
+
* @type {Array<BlueprintMajorVersion>}
|
|
3521
|
+
* @memberof BlueprintItem
|
|
3522
|
+
*/
|
|
3523
|
+
'majorVersions': Array<BlueprintMajorVersion>;
|
|
3524
|
+
}
|
|
3525
|
+
/**
|
|
3526
|
+
*
|
|
3527
|
+
* @export
|
|
3528
|
+
* @interface BlueprintMajorVersion
|
|
3529
|
+
*/
|
|
3530
|
+
export interface BlueprintMajorVersion {
|
|
3531
|
+
/**
|
|
3532
|
+
*
|
|
3533
|
+
* @type {string}
|
|
3534
|
+
* @memberof BlueprintMajorVersion
|
|
3535
|
+
*/
|
|
3536
|
+
'serviceVersion': string;
|
|
3537
|
+
/**
|
|
3538
|
+
*
|
|
3539
|
+
* @type {string}
|
|
3540
|
+
* @memberof BlueprintMajorVersion
|
|
3541
|
+
*/
|
|
3542
|
+
'latestTag': string;
|
|
3543
|
+
}
|
|
3445
3544
|
/**
|
|
3446
3545
|
*
|
|
3447
3546
|
* @export
|
|
@@ -31925,6 +32024,257 @@ export class BillingApi extends BaseAPI {
|
|
|
31925
32024
|
|
|
31926
32025
|
|
|
31927
32026
|
|
|
32027
|
+
/**
|
|
32028
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
32029
|
+
* @export
|
|
32030
|
+
*/
|
|
32031
|
+
export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32032
|
+
return {
|
|
32033
|
+
/**
|
|
32034
|
+
*
|
|
32035
|
+
* @summary Get the README of a blueprint catalog service
|
|
32036
|
+
* @param {string} organizationId Organization ID
|
|
32037
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32038
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32039
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32040
|
+
* @param {*} [options] Override http request option.
|
|
32041
|
+
* @throws {RequiredError}
|
|
32042
|
+
*/
|
|
32043
|
+
getBlueprintCatalogServiceReadme: async (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32044
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
32045
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'organizationId', organizationId)
|
|
32046
|
+
// verify required parameter 'provider' is not null or undefined
|
|
32047
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'provider', provider)
|
|
32048
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
32049
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily)
|
|
32050
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
32051
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion)
|
|
32052
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
32053
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
32054
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
32055
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
32056
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
32057
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32058
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32059
|
+
let baseOptions;
|
|
32060
|
+
if (configuration) {
|
|
32061
|
+
baseOptions = configuration.baseOptions;
|
|
32062
|
+
}
|
|
32063
|
+
|
|
32064
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
32065
|
+
const localVarHeaderParameter = {} as any;
|
|
32066
|
+
const localVarQueryParameter = {} as any;
|
|
32067
|
+
|
|
32068
|
+
// authentication ApiKeyAuth required
|
|
32069
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
32070
|
+
|
|
32071
|
+
// authentication bearerAuth required
|
|
32072
|
+
// http bearer authentication required
|
|
32073
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32074
|
+
|
|
32075
|
+
|
|
32076
|
+
|
|
32077
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32078
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32079
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32080
|
+
|
|
32081
|
+
return {
|
|
32082
|
+
url: toPathString(localVarUrlObj),
|
|
32083
|
+
options: localVarRequestOptions,
|
|
32084
|
+
};
|
|
32085
|
+
},
|
|
32086
|
+
}
|
|
32087
|
+
};
|
|
32088
|
+
|
|
32089
|
+
/**
|
|
32090
|
+
* BlueprintCatalogApi - functional programming interface
|
|
32091
|
+
* @export
|
|
32092
|
+
*/
|
|
32093
|
+
export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
32094
|
+
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration)
|
|
32095
|
+
return {
|
|
32096
|
+
/**
|
|
32097
|
+
*
|
|
32098
|
+
* @summary Get the README of a blueprint catalog service
|
|
32099
|
+
* @param {string} organizationId Organization ID
|
|
32100
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32101
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32102
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32103
|
+
* @param {*} [options] Override http request option.
|
|
32104
|
+
* @throws {RequiredError}
|
|
32105
|
+
*/
|
|
32106
|
+
async getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
32107
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
32108
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32109
|
+
const localVarOperationServerBasePath = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']?.[localVarOperationServerIndex]?.url;
|
|
32110
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32111
|
+
},
|
|
32112
|
+
}
|
|
32113
|
+
};
|
|
32114
|
+
|
|
32115
|
+
/**
|
|
32116
|
+
* BlueprintCatalogApi - factory interface
|
|
32117
|
+
* @export
|
|
32118
|
+
*/
|
|
32119
|
+
export const BlueprintCatalogApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32120
|
+
const localVarFp = BlueprintCatalogApiFp(configuration)
|
|
32121
|
+
return {
|
|
32122
|
+
/**
|
|
32123
|
+
*
|
|
32124
|
+
* @summary Get the README of a blueprint catalog service
|
|
32125
|
+
* @param {string} organizationId Organization ID
|
|
32126
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32127
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32128
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32129
|
+
* @param {*} [options] Override http request option.
|
|
32130
|
+
* @throws {RequiredError}
|
|
32131
|
+
*/
|
|
32132
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string> {
|
|
32133
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
32134
|
+
},
|
|
32135
|
+
};
|
|
32136
|
+
};
|
|
32137
|
+
|
|
32138
|
+
/**
|
|
32139
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
32140
|
+
* @export
|
|
32141
|
+
* @class BlueprintCatalogApi
|
|
32142
|
+
* @extends {BaseAPI}
|
|
32143
|
+
*/
|
|
32144
|
+
export class BlueprintCatalogApi extends BaseAPI {
|
|
32145
|
+
/**
|
|
32146
|
+
*
|
|
32147
|
+
* @summary Get the README of a blueprint catalog service
|
|
32148
|
+
* @param {string} organizationId Organization ID
|
|
32149
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32150
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32151
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32152
|
+
* @param {*} [options] Override http request option.
|
|
32153
|
+
* @throws {RequiredError}
|
|
32154
|
+
* @memberof BlueprintCatalogApi
|
|
32155
|
+
*/
|
|
32156
|
+
public getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) {
|
|
32157
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
32158
|
+
}
|
|
32159
|
+
}
|
|
32160
|
+
|
|
32161
|
+
|
|
32162
|
+
|
|
32163
|
+
/**
|
|
32164
|
+
* BlueprintMainCallsApi - axios parameter creator
|
|
32165
|
+
* @export
|
|
32166
|
+
*/
|
|
32167
|
+
export const BlueprintMainCallsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32168
|
+
return {
|
|
32169
|
+
/**
|
|
32170
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
32171
|
+
* @summary Get the blueprint service catalog
|
|
32172
|
+
* @param {string} organizationId Organization ID
|
|
32173
|
+
* @param {*} [options] Override http request option.
|
|
32174
|
+
* @throws {RequiredError}
|
|
32175
|
+
*/
|
|
32176
|
+
getBlueprintCatalog: async (organizationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32177
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
32178
|
+
assertParamExists('getBlueprintCatalog', 'organizationId', organizationId)
|
|
32179
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog`
|
|
32180
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
|
|
32181
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32182
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32183
|
+
let baseOptions;
|
|
32184
|
+
if (configuration) {
|
|
32185
|
+
baseOptions = configuration.baseOptions;
|
|
32186
|
+
}
|
|
32187
|
+
|
|
32188
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
32189
|
+
const localVarHeaderParameter = {} as any;
|
|
32190
|
+
const localVarQueryParameter = {} as any;
|
|
32191
|
+
|
|
32192
|
+
// authentication ApiKeyAuth required
|
|
32193
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
32194
|
+
|
|
32195
|
+
// authentication bearerAuth required
|
|
32196
|
+
// http bearer authentication required
|
|
32197
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32198
|
+
|
|
32199
|
+
|
|
32200
|
+
|
|
32201
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32202
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32203
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32204
|
+
|
|
32205
|
+
return {
|
|
32206
|
+
url: toPathString(localVarUrlObj),
|
|
32207
|
+
options: localVarRequestOptions,
|
|
32208
|
+
};
|
|
32209
|
+
},
|
|
32210
|
+
}
|
|
32211
|
+
};
|
|
32212
|
+
|
|
32213
|
+
/**
|
|
32214
|
+
* BlueprintMainCallsApi - functional programming interface
|
|
32215
|
+
* @export
|
|
32216
|
+
*/
|
|
32217
|
+
export const BlueprintMainCallsApiFp = function(configuration?: Configuration) {
|
|
32218
|
+
const localVarAxiosParamCreator = BlueprintMainCallsApiAxiosParamCreator(configuration)
|
|
32219
|
+
return {
|
|
32220
|
+
/**
|
|
32221
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
32222
|
+
* @summary Get the blueprint service catalog
|
|
32223
|
+
* @param {string} organizationId Organization ID
|
|
32224
|
+
* @param {*} [options] Override http request option.
|
|
32225
|
+
* @throws {RequiredError}
|
|
32226
|
+
*/
|
|
32227
|
+
async getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlueprintCatalogResponse>> {
|
|
32228
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalog(organizationId, options);
|
|
32229
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32230
|
+
const localVarOperationServerBasePath = operationServerMap['BlueprintMainCallsApi.getBlueprintCatalog']?.[localVarOperationServerIndex]?.url;
|
|
32231
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32232
|
+
},
|
|
32233
|
+
}
|
|
32234
|
+
};
|
|
32235
|
+
|
|
32236
|
+
/**
|
|
32237
|
+
* BlueprintMainCallsApi - factory interface
|
|
32238
|
+
* @export
|
|
32239
|
+
*/
|
|
32240
|
+
export const BlueprintMainCallsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32241
|
+
const localVarFp = BlueprintMainCallsApiFp(configuration)
|
|
32242
|
+
return {
|
|
32243
|
+
/**
|
|
32244
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
32245
|
+
* @summary Get the blueprint service catalog
|
|
32246
|
+
* @param {string} organizationId Organization ID
|
|
32247
|
+
* @param {*} [options] Override http request option.
|
|
32248
|
+
* @throws {RequiredError}
|
|
32249
|
+
*/
|
|
32250
|
+
getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<BlueprintCatalogResponse> {
|
|
32251
|
+
return localVarFp.getBlueprintCatalog(organizationId, options).then((request) => request(axios, basePath));
|
|
32252
|
+
},
|
|
32253
|
+
};
|
|
32254
|
+
};
|
|
32255
|
+
|
|
32256
|
+
/**
|
|
32257
|
+
* BlueprintMainCallsApi - object-oriented interface
|
|
32258
|
+
* @export
|
|
32259
|
+
* @class BlueprintMainCallsApi
|
|
32260
|
+
* @extends {BaseAPI}
|
|
32261
|
+
*/
|
|
32262
|
+
export class BlueprintMainCallsApi extends BaseAPI {
|
|
32263
|
+
/**
|
|
32264
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
32265
|
+
* @summary Get the blueprint service catalog
|
|
32266
|
+
* @param {string} organizationId Organization ID
|
|
32267
|
+
* @param {*} [options] Override http request option.
|
|
32268
|
+
* @throws {RequiredError}
|
|
32269
|
+
* @memberof BlueprintMainCallsApi
|
|
32270
|
+
*/
|
|
32271
|
+
public getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig) {
|
|
32272
|
+
return BlueprintMainCallsApiFp(this.configuration).getBlueprintCatalog(organizationId, options).then((request) => request(this.axios, this.basePath));
|
|
32273
|
+
}
|
|
32274
|
+
}
|
|
32275
|
+
|
|
32276
|
+
|
|
32277
|
+
|
|
31928
32278
|
/**
|
|
31929
32279
|
* CloudProviderApi - axios parameter creator
|
|
31930
32280
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -3319,6 +3319,105 @@ export interface BillingStatus {
|
|
|
3319
3319
|
*/
|
|
3320
3320
|
'message'?: string;
|
|
3321
3321
|
}
|
|
3322
|
+
/**
|
|
3323
|
+
*
|
|
3324
|
+
* @export
|
|
3325
|
+
* @interface BlueprintCatalogResponse
|
|
3326
|
+
*/
|
|
3327
|
+
export interface BlueprintCatalogResponse {
|
|
3328
|
+
/**
|
|
3329
|
+
*
|
|
3330
|
+
* @type {string}
|
|
3331
|
+
* @memberof BlueprintCatalogResponse
|
|
3332
|
+
*/
|
|
3333
|
+
'version': string;
|
|
3334
|
+
/**
|
|
3335
|
+
*
|
|
3336
|
+
* @type {string}
|
|
3337
|
+
* @memberof BlueprintCatalogResponse
|
|
3338
|
+
*/
|
|
3339
|
+
'generatedAt': string;
|
|
3340
|
+
/**
|
|
3341
|
+
*
|
|
3342
|
+
* @type {Array<BlueprintItem>}
|
|
3343
|
+
* @memberof BlueprintCatalogResponse
|
|
3344
|
+
*/
|
|
3345
|
+
'blueprints': Array<BlueprintItem>;
|
|
3346
|
+
}
|
|
3347
|
+
/**
|
|
3348
|
+
*
|
|
3349
|
+
* @export
|
|
3350
|
+
* @interface BlueprintItem
|
|
3351
|
+
*/
|
|
3352
|
+
export interface BlueprintItem {
|
|
3353
|
+
/**
|
|
3354
|
+
*
|
|
3355
|
+
* @type {string}
|
|
3356
|
+
* @memberof BlueprintItem
|
|
3357
|
+
*/
|
|
3358
|
+
'name': string;
|
|
3359
|
+
/**
|
|
3360
|
+
*
|
|
3361
|
+
* @type {string}
|
|
3362
|
+
* @memberof BlueprintItem
|
|
3363
|
+
*/
|
|
3364
|
+
'kind': string;
|
|
3365
|
+
/**
|
|
3366
|
+
*
|
|
3367
|
+
* @type {string}
|
|
3368
|
+
* @memberof BlueprintItem
|
|
3369
|
+
*/
|
|
3370
|
+
'description': string;
|
|
3371
|
+
/**
|
|
3372
|
+
*
|
|
3373
|
+
* @type {string}
|
|
3374
|
+
* @memberof BlueprintItem
|
|
3375
|
+
*/
|
|
3376
|
+
'icon': string;
|
|
3377
|
+
/**
|
|
3378
|
+
*
|
|
3379
|
+
* @type {Array<string>}
|
|
3380
|
+
* @memberof BlueprintItem
|
|
3381
|
+
*/
|
|
3382
|
+
'categories': Array<string>;
|
|
3383
|
+
/**
|
|
3384
|
+
*
|
|
3385
|
+
* @type {string}
|
|
3386
|
+
* @memberof BlueprintItem
|
|
3387
|
+
*/
|
|
3388
|
+
'provider': string;
|
|
3389
|
+
/**
|
|
3390
|
+
*
|
|
3391
|
+
* @type {string}
|
|
3392
|
+
* @memberof BlueprintItem
|
|
3393
|
+
*/
|
|
3394
|
+
'serviceFamily': string;
|
|
3395
|
+
/**
|
|
3396
|
+
*
|
|
3397
|
+
* @type {Array<BlueprintMajorVersion>}
|
|
3398
|
+
* @memberof BlueprintItem
|
|
3399
|
+
*/
|
|
3400
|
+
'majorVersions': Array<BlueprintMajorVersion>;
|
|
3401
|
+
}
|
|
3402
|
+
/**
|
|
3403
|
+
*
|
|
3404
|
+
* @export
|
|
3405
|
+
* @interface BlueprintMajorVersion
|
|
3406
|
+
*/
|
|
3407
|
+
export interface BlueprintMajorVersion {
|
|
3408
|
+
/**
|
|
3409
|
+
*
|
|
3410
|
+
* @type {string}
|
|
3411
|
+
* @memberof BlueprintMajorVersion
|
|
3412
|
+
*/
|
|
3413
|
+
'serviceVersion': string;
|
|
3414
|
+
/**
|
|
3415
|
+
*
|
|
3416
|
+
* @type {string}
|
|
3417
|
+
* @memberof BlueprintMajorVersion
|
|
3418
|
+
*/
|
|
3419
|
+
'latestTag': string;
|
|
3420
|
+
}
|
|
3322
3421
|
/**
|
|
3323
3422
|
*
|
|
3324
3423
|
* @export
|
|
@@ -26889,6 +26988,136 @@ export declare class BillingApi extends BaseAPI {
|
|
|
26889
26988
|
*/
|
|
26890
26989
|
organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
26891
26990
|
}
|
|
26991
|
+
/**
|
|
26992
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
26993
|
+
* @export
|
|
26994
|
+
*/
|
|
26995
|
+
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26996
|
+
/**
|
|
26997
|
+
*
|
|
26998
|
+
* @summary Get the README of a blueprint catalog service
|
|
26999
|
+
* @param {string} organizationId Organization ID
|
|
27000
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27001
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27002
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27003
|
+
* @param {*} [options] Override http request option.
|
|
27004
|
+
* @throws {RequiredError}
|
|
27005
|
+
*/
|
|
27006
|
+
getBlueprintCatalogServiceReadme: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27007
|
+
};
|
|
27008
|
+
/**
|
|
27009
|
+
* BlueprintCatalogApi - functional programming interface
|
|
27010
|
+
* @export
|
|
27011
|
+
*/
|
|
27012
|
+
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27013
|
+
/**
|
|
27014
|
+
*
|
|
27015
|
+
* @summary Get the README of a blueprint catalog service
|
|
27016
|
+
* @param {string} organizationId Organization ID
|
|
27017
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27018
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27019
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27020
|
+
* @param {*} [options] Override http request option.
|
|
27021
|
+
* @throws {RequiredError}
|
|
27022
|
+
*/
|
|
27023
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
27024
|
+
};
|
|
27025
|
+
/**
|
|
27026
|
+
* BlueprintCatalogApi - factory interface
|
|
27027
|
+
* @export
|
|
27028
|
+
*/
|
|
27029
|
+
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27030
|
+
/**
|
|
27031
|
+
*
|
|
27032
|
+
* @summary Get the README of a blueprint catalog service
|
|
27033
|
+
* @param {string} organizationId Organization ID
|
|
27034
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27035
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27036
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27037
|
+
* @param {*} [options] Override http request option.
|
|
27038
|
+
* @throws {RequiredError}
|
|
27039
|
+
*/
|
|
27040
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
27041
|
+
};
|
|
27042
|
+
/**
|
|
27043
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
27044
|
+
* @export
|
|
27045
|
+
* @class BlueprintCatalogApi
|
|
27046
|
+
* @extends {BaseAPI}
|
|
27047
|
+
*/
|
|
27048
|
+
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27049
|
+
/**
|
|
27050
|
+
*
|
|
27051
|
+
* @summary Get the README of a blueprint catalog service
|
|
27052
|
+
* @param {string} organizationId Organization ID
|
|
27053
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27054
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27055
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27056
|
+
* @param {*} [options] Override http request option.
|
|
27057
|
+
* @throws {RequiredError}
|
|
27058
|
+
* @memberof BlueprintCatalogApi
|
|
27059
|
+
*/
|
|
27060
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
27061
|
+
}
|
|
27062
|
+
/**
|
|
27063
|
+
* BlueprintMainCallsApi - axios parameter creator
|
|
27064
|
+
* @export
|
|
27065
|
+
*/
|
|
27066
|
+
export declare const BlueprintMainCallsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27067
|
+
/**
|
|
27068
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
27069
|
+
* @summary Get the blueprint service catalog
|
|
27070
|
+
* @param {string} organizationId Organization ID
|
|
27071
|
+
* @param {*} [options] Override http request option.
|
|
27072
|
+
* @throws {RequiredError}
|
|
27073
|
+
*/
|
|
27074
|
+
getBlueprintCatalog: (organizationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27075
|
+
};
|
|
27076
|
+
/**
|
|
27077
|
+
* BlueprintMainCallsApi - functional programming interface
|
|
27078
|
+
* @export
|
|
27079
|
+
*/
|
|
27080
|
+
export declare const BlueprintMainCallsApiFp: (configuration?: Configuration) => {
|
|
27081
|
+
/**
|
|
27082
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
27083
|
+
* @summary Get the blueprint service catalog
|
|
27084
|
+
* @param {string} organizationId Organization ID
|
|
27085
|
+
* @param {*} [options] Override http request option.
|
|
27086
|
+
* @throws {RequiredError}
|
|
27087
|
+
*/
|
|
27088
|
+
getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlueprintCatalogResponse>>;
|
|
27089
|
+
};
|
|
27090
|
+
/**
|
|
27091
|
+
* BlueprintMainCallsApi - factory interface
|
|
27092
|
+
* @export
|
|
27093
|
+
*/
|
|
27094
|
+
export declare const BlueprintMainCallsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27095
|
+
/**
|
|
27096
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
27097
|
+
* @summary Get the blueprint service catalog
|
|
27098
|
+
* @param {string} organizationId Organization ID
|
|
27099
|
+
* @param {*} [options] Override http request option.
|
|
27100
|
+
* @throws {RequiredError}
|
|
27101
|
+
*/
|
|
27102
|
+
getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<BlueprintCatalogResponse>;
|
|
27103
|
+
};
|
|
27104
|
+
/**
|
|
27105
|
+
* BlueprintMainCallsApi - object-oriented interface
|
|
27106
|
+
* @export
|
|
27107
|
+
* @class BlueprintMainCallsApi
|
|
27108
|
+
* @extends {BaseAPI}
|
|
27109
|
+
*/
|
|
27110
|
+
export declare class BlueprintMainCallsApi extends BaseAPI {
|
|
27111
|
+
/**
|
|
27112
|
+
* Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
|
|
27113
|
+
* @summary Get the blueprint service catalog
|
|
27114
|
+
* @param {string} organizationId Organization ID
|
|
27115
|
+
* @param {*} [options] Override http request option.
|
|
27116
|
+
* @throws {RequiredError}
|
|
27117
|
+
* @memberof BlueprintMainCallsApi
|
|
27118
|
+
*/
|
|
27119
|
+
getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlueprintCatalogResponse, any, {}>>;
|
|
27120
|
+
}
|
|
26892
27121
|
/**
|
|
26893
27122
|
* CloudProviderApi - axios parameter creator
|
|
26894
27123
|
* @export
|