qovery-typescript-axios 1.1.907 → 1.1.908
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 +244 -0
- package/dist/api.d.ts +186 -0
- package/dist/api.js +115 -12
- package/dist/esm/api.d.ts +186 -0
- package/dist/esm/api.js +103 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3584,6 +3584,134 @@ export interface BlueprintMajorVersion {
|
|
|
3584
3584
|
*/
|
|
3585
3585
|
'latestTag': string;
|
|
3586
3586
|
}
|
|
3587
|
+
/**
|
|
3588
|
+
* An auto-sourced, read-only value (from spec.contextVariables); not user-editable.
|
|
3589
|
+
* @export
|
|
3590
|
+
* @interface BlueprintManifestContextVariableField
|
|
3591
|
+
*/
|
|
3592
|
+
export interface BlueprintManifestContextVariableField {
|
|
3593
|
+
/**
|
|
3594
|
+
*
|
|
3595
|
+
* @type {string}
|
|
3596
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3597
|
+
*/
|
|
3598
|
+
'kind': BlueprintManifestContextVariableFieldKindEnum;
|
|
3599
|
+
/**
|
|
3600
|
+
*
|
|
3601
|
+
* @type {string}
|
|
3602
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3603
|
+
*/
|
|
3604
|
+
'name': string;
|
|
3605
|
+
/**
|
|
3606
|
+
* Origin of the auto-sourced value (e.g. cluster.region)
|
|
3607
|
+
* @type {string}
|
|
3608
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3609
|
+
*/
|
|
3610
|
+
'source'?: string | null;
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3613
|
+
export const BlueprintManifestContextVariableFieldKindEnum = {
|
|
3614
|
+
CONTEXT_VARIABLE: 'contextVariable'
|
|
3615
|
+
} as const;
|
|
3616
|
+
|
|
3617
|
+
export type BlueprintManifestContextVariableFieldKindEnum = typeof BlueprintManifestContextVariableFieldKindEnum[keyof typeof BlueprintManifestContextVariableFieldKindEnum];
|
|
3618
|
+
|
|
3619
|
+
/**
|
|
3620
|
+
* Field type with its type-specific validation conditions, discriminated by \"type\".
|
|
3621
|
+
* @export
|
|
3622
|
+
* @interface BlueprintManifestFieldType
|
|
3623
|
+
*/
|
|
3624
|
+
export interface BlueprintManifestFieldType {
|
|
3625
|
+
/**
|
|
3626
|
+
*
|
|
3627
|
+
* @type {string}
|
|
3628
|
+
* @memberof BlueprintManifestFieldType
|
|
3629
|
+
*/
|
|
3630
|
+
'type': BlueprintManifestFieldTypeTypeEnum;
|
|
3631
|
+
/**
|
|
3632
|
+
* Lower bound, only present for number fields
|
|
3633
|
+
* @type {number}
|
|
3634
|
+
* @memberof BlueprintManifestFieldType
|
|
3635
|
+
*/
|
|
3636
|
+
'min'?: number | null;
|
|
3637
|
+
/**
|
|
3638
|
+
* Upper bound, only present for number fields
|
|
3639
|
+
* @type {number}
|
|
3640
|
+
* @memberof BlueprintManifestFieldType
|
|
3641
|
+
*/
|
|
3642
|
+
'max'?: number | null;
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
export const BlueprintManifestFieldTypeTypeEnum = {
|
|
3646
|
+
STRING: 'string',
|
|
3647
|
+
BOOL: 'bool',
|
|
3648
|
+
NUMBER: 'number'
|
|
3649
|
+
} as const;
|
|
3650
|
+
|
|
3651
|
+
export type BlueprintManifestFieldTypeTypeEnum = typeof BlueprintManifestFieldTypeTypeEnum[keyof typeof BlueprintManifestFieldTypeTypeEnum];
|
|
3652
|
+
|
|
3653
|
+
/**
|
|
3654
|
+
* An editable form input the user fills in (from spec.variables).
|
|
3655
|
+
* @export
|
|
3656
|
+
* @interface BlueprintManifestVariableField
|
|
3657
|
+
*/
|
|
3658
|
+
export interface BlueprintManifestVariableField {
|
|
3659
|
+
/**
|
|
3660
|
+
*
|
|
3661
|
+
* @type {string}
|
|
3662
|
+
* @memberof BlueprintManifestVariableField
|
|
3663
|
+
*/
|
|
3664
|
+
'kind': BlueprintManifestVariableFieldKindEnum;
|
|
3665
|
+
/**
|
|
3666
|
+
*
|
|
3667
|
+
* @type {string}
|
|
3668
|
+
* @memberof BlueprintManifestVariableField
|
|
3669
|
+
*/
|
|
3670
|
+
'name': string;
|
|
3671
|
+
/**
|
|
3672
|
+
*
|
|
3673
|
+
* @type {BlueprintManifestFieldType}
|
|
3674
|
+
* @memberof BlueprintManifestVariableField
|
|
3675
|
+
*/
|
|
3676
|
+
'type': BlueprintManifestFieldType;
|
|
3677
|
+
/**
|
|
3678
|
+
*
|
|
3679
|
+
* @type {boolean}
|
|
3680
|
+
* @memberof BlueprintManifestVariableField
|
|
3681
|
+
*/
|
|
3682
|
+
'required': boolean;
|
|
3683
|
+
/**
|
|
3684
|
+
*
|
|
3685
|
+
* @type {boolean}
|
|
3686
|
+
* @memberof BlueprintManifestVariableField
|
|
3687
|
+
*/
|
|
3688
|
+
'is_secret': boolean;
|
|
3689
|
+
/**
|
|
3690
|
+
*
|
|
3691
|
+
* @type {string}
|
|
3692
|
+
* @memberof BlueprintManifestVariableField
|
|
3693
|
+
*/
|
|
3694
|
+
'description'?: string | null;
|
|
3695
|
+
/**
|
|
3696
|
+
*
|
|
3697
|
+
* @type {Array<string>}
|
|
3698
|
+
* @memberof BlueprintManifestVariableField
|
|
3699
|
+
*/
|
|
3700
|
+
'allowed_values'?: Array<string> | null;
|
|
3701
|
+
/**
|
|
3702
|
+
*
|
|
3703
|
+
* @type {string}
|
|
3704
|
+
* @memberof BlueprintManifestVariableField
|
|
3705
|
+
*/
|
|
3706
|
+
'default_value'?: string | null;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
export const BlueprintManifestVariableFieldKindEnum = {
|
|
3710
|
+
VARIABLE: 'variable'
|
|
3711
|
+
} as const;
|
|
3712
|
+
|
|
3713
|
+
export type BlueprintManifestVariableFieldKindEnum = typeof BlueprintManifestVariableFieldKindEnum[keyof typeof BlueprintManifestVariableFieldKindEnum];
|
|
3714
|
+
|
|
3587
3715
|
/**
|
|
3588
3716
|
*
|
|
3589
3717
|
* @export
|
|
@@ -12657,6 +12785,25 @@ export interface GenericObjectCurrentCost {
|
|
|
12657
12785
|
*/
|
|
12658
12786
|
'cost': Cost;
|
|
12659
12787
|
}
|
|
12788
|
+
/**
|
|
12789
|
+
*
|
|
12790
|
+
* @export
|
|
12791
|
+
* @interface GetBlueprintCatalogServiceManifest200Response
|
|
12792
|
+
*/
|
|
12793
|
+
export interface GetBlueprintCatalogServiceManifest200Response {
|
|
12794
|
+
/**
|
|
12795
|
+
*
|
|
12796
|
+
* @type {Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>}
|
|
12797
|
+
* @memberof GetBlueprintCatalogServiceManifest200Response
|
|
12798
|
+
*/
|
|
12799
|
+
'results'?: Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>;
|
|
12800
|
+
}
|
|
12801
|
+
/**
|
|
12802
|
+
* @type GetBlueprintCatalogServiceManifest200ResponseResultsInner
|
|
12803
|
+
* @export
|
|
12804
|
+
*/
|
|
12805
|
+
export type GetBlueprintCatalogServiceManifest200ResponseResultsInner = { kind: 'contextVariable' } & BlueprintManifestContextVariableField | { kind: 'variable' } & BlueprintManifestVariableField;
|
|
12806
|
+
|
|
12660
12807
|
/**
|
|
12661
12808
|
*
|
|
12662
12809
|
* @export
|
|
@@ -32227,6 +32374,59 @@ export class BillingApi extends BaseAPI {
|
|
|
32227
32374
|
*/
|
|
32228
32375
|
export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32229
32376
|
return {
|
|
32377
|
+
/**
|
|
32378
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
32379
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32380
|
+
* @param {string} organizationId Organization ID
|
|
32381
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32382
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32383
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32384
|
+
* @param {*} [options] Override http request option.
|
|
32385
|
+
* @throws {RequiredError}
|
|
32386
|
+
*/
|
|
32387
|
+
getBlueprintCatalogServiceManifest: async (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32388
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
32389
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'organizationId', organizationId)
|
|
32390
|
+
// verify required parameter 'provider' is not null or undefined
|
|
32391
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'provider', provider)
|
|
32392
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
32393
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceFamily', serviceFamily)
|
|
32394
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
32395
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceVersion', serviceVersion)
|
|
32396
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest`
|
|
32397
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
32398
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
32399
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
32400
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
32401
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32402
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32403
|
+
let baseOptions;
|
|
32404
|
+
if (configuration) {
|
|
32405
|
+
baseOptions = configuration.baseOptions;
|
|
32406
|
+
}
|
|
32407
|
+
|
|
32408
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
32409
|
+
const localVarHeaderParameter = {} as any;
|
|
32410
|
+
const localVarQueryParameter = {} as any;
|
|
32411
|
+
|
|
32412
|
+
// authentication ApiKeyAuth required
|
|
32413
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
32414
|
+
|
|
32415
|
+
// authentication bearerAuth required
|
|
32416
|
+
// http bearer authentication required
|
|
32417
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32418
|
+
|
|
32419
|
+
|
|
32420
|
+
|
|
32421
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32422
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32423
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32424
|
+
|
|
32425
|
+
return {
|
|
32426
|
+
url: toPathString(localVarUrlObj),
|
|
32427
|
+
options: localVarRequestOptions,
|
|
32428
|
+
};
|
|
32429
|
+
},
|
|
32230
32430
|
/**
|
|
32231
32431
|
*
|
|
32232
32432
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -32290,6 +32490,22 @@ export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Co
|
|
|
32290
32490
|
export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
32291
32491
|
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration)
|
|
32292
32492
|
return {
|
|
32493
|
+
/**
|
|
32494
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
32495
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32496
|
+
* @param {string} organizationId Organization ID
|
|
32497
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32498
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32499
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32500
|
+
* @param {*} [options] Override http request option.
|
|
32501
|
+
* @throws {RequiredError}
|
|
32502
|
+
*/
|
|
32503
|
+
async getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBlueprintCatalogServiceManifest200Response>> {
|
|
32504
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
32505
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32506
|
+
const localVarOperationServerBasePath = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceManifest']?.[localVarOperationServerIndex]?.url;
|
|
32507
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32508
|
+
},
|
|
32293
32509
|
/**
|
|
32294
32510
|
*
|
|
32295
32511
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -32316,6 +32532,19 @@ export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
|
32316
32532
|
export const BlueprintCatalogApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32317
32533
|
const localVarFp = BlueprintCatalogApiFp(configuration)
|
|
32318
32534
|
return {
|
|
32535
|
+
/**
|
|
32536
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
32537
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32538
|
+
* @param {string} organizationId Organization ID
|
|
32539
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32540
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32541
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32542
|
+
* @param {*} [options] Override http request option.
|
|
32543
|
+
* @throws {RequiredError}
|
|
32544
|
+
*/
|
|
32545
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBlueprintCatalogServiceManifest200Response> {
|
|
32546
|
+
return localVarFp.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
32547
|
+
},
|
|
32319
32548
|
/**
|
|
32320
32549
|
*
|
|
32321
32550
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -32339,6 +32568,21 @@ export const BlueprintCatalogApiFactory = function (configuration?: Configuratio
|
|
|
32339
32568
|
* @extends {BaseAPI}
|
|
32340
32569
|
*/
|
|
32341
32570
|
export class BlueprintCatalogApi extends BaseAPI {
|
|
32571
|
+
/**
|
|
32572
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
32573
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32574
|
+
* @param {string} organizationId Organization ID
|
|
32575
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32576
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32577
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32578
|
+
* @param {*} [options] Override http request option.
|
|
32579
|
+
* @throws {RequiredError}
|
|
32580
|
+
* @memberof BlueprintCatalogApi
|
|
32581
|
+
*/
|
|
32582
|
+
public getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) {
|
|
32583
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
32584
|
+
}
|
|
32585
|
+
|
|
32342
32586
|
/**
|
|
32343
32587
|
*
|
|
32344
32588
|
* @summary Get the README of a blueprint catalog service
|
package/dist/api.d.ts
CHANGED
|
@@ -3463,6 +3463,125 @@ export interface BlueprintMajorVersion {
|
|
|
3463
3463
|
*/
|
|
3464
3464
|
'latestTag': string;
|
|
3465
3465
|
}
|
|
3466
|
+
/**
|
|
3467
|
+
* An auto-sourced, read-only value (from spec.contextVariables); not user-editable.
|
|
3468
|
+
* @export
|
|
3469
|
+
* @interface BlueprintManifestContextVariableField
|
|
3470
|
+
*/
|
|
3471
|
+
export interface BlueprintManifestContextVariableField {
|
|
3472
|
+
/**
|
|
3473
|
+
*
|
|
3474
|
+
* @type {string}
|
|
3475
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3476
|
+
*/
|
|
3477
|
+
'kind': BlueprintManifestContextVariableFieldKindEnum;
|
|
3478
|
+
/**
|
|
3479
|
+
*
|
|
3480
|
+
* @type {string}
|
|
3481
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3482
|
+
*/
|
|
3483
|
+
'name': string;
|
|
3484
|
+
/**
|
|
3485
|
+
* Origin of the auto-sourced value (e.g. cluster.region)
|
|
3486
|
+
* @type {string}
|
|
3487
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3488
|
+
*/
|
|
3489
|
+
'source'?: string | null;
|
|
3490
|
+
}
|
|
3491
|
+
export declare const BlueprintManifestContextVariableFieldKindEnum: {
|
|
3492
|
+
readonly CONTEXT_VARIABLE: "contextVariable";
|
|
3493
|
+
};
|
|
3494
|
+
export type BlueprintManifestContextVariableFieldKindEnum = typeof BlueprintManifestContextVariableFieldKindEnum[keyof typeof BlueprintManifestContextVariableFieldKindEnum];
|
|
3495
|
+
/**
|
|
3496
|
+
* Field type with its type-specific validation conditions, discriminated by \"type\".
|
|
3497
|
+
* @export
|
|
3498
|
+
* @interface BlueprintManifestFieldType
|
|
3499
|
+
*/
|
|
3500
|
+
export interface BlueprintManifestFieldType {
|
|
3501
|
+
/**
|
|
3502
|
+
*
|
|
3503
|
+
* @type {string}
|
|
3504
|
+
* @memberof BlueprintManifestFieldType
|
|
3505
|
+
*/
|
|
3506
|
+
'type': BlueprintManifestFieldTypeTypeEnum;
|
|
3507
|
+
/**
|
|
3508
|
+
* Lower bound, only present for number fields
|
|
3509
|
+
* @type {number}
|
|
3510
|
+
* @memberof BlueprintManifestFieldType
|
|
3511
|
+
*/
|
|
3512
|
+
'min'?: number | null;
|
|
3513
|
+
/**
|
|
3514
|
+
* Upper bound, only present for number fields
|
|
3515
|
+
* @type {number}
|
|
3516
|
+
* @memberof BlueprintManifestFieldType
|
|
3517
|
+
*/
|
|
3518
|
+
'max'?: number | null;
|
|
3519
|
+
}
|
|
3520
|
+
export declare const BlueprintManifestFieldTypeTypeEnum: {
|
|
3521
|
+
readonly STRING: "string";
|
|
3522
|
+
readonly BOOL: "bool";
|
|
3523
|
+
readonly NUMBER: "number";
|
|
3524
|
+
};
|
|
3525
|
+
export type BlueprintManifestFieldTypeTypeEnum = typeof BlueprintManifestFieldTypeTypeEnum[keyof typeof BlueprintManifestFieldTypeTypeEnum];
|
|
3526
|
+
/**
|
|
3527
|
+
* An editable form input the user fills in (from spec.variables).
|
|
3528
|
+
* @export
|
|
3529
|
+
* @interface BlueprintManifestVariableField
|
|
3530
|
+
*/
|
|
3531
|
+
export interface BlueprintManifestVariableField {
|
|
3532
|
+
/**
|
|
3533
|
+
*
|
|
3534
|
+
* @type {string}
|
|
3535
|
+
* @memberof BlueprintManifestVariableField
|
|
3536
|
+
*/
|
|
3537
|
+
'kind': BlueprintManifestVariableFieldKindEnum;
|
|
3538
|
+
/**
|
|
3539
|
+
*
|
|
3540
|
+
* @type {string}
|
|
3541
|
+
* @memberof BlueprintManifestVariableField
|
|
3542
|
+
*/
|
|
3543
|
+
'name': string;
|
|
3544
|
+
/**
|
|
3545
|
+
*
|
|
3546
|
+
* @type {BlueprintManifestFieldType}
|
|
3547
|
+
* @memberof BlueprintManifestVariableField
|
|
3548
|
+
*/
|
|
3549
|
+
'type': BlueprintManifestFieldType;
|
|
3550
|
+
/**
|
|
3551
|
+
*
|
|
3552
|
+
* @type {boolean}
|
|
3553
|
+
* @memberof BlueprintManifestVariableField
|
|
3554
|
+
*/
|
|
3555
|
+
'required': boolean;
|
|
3556
|
+
/**
|
|
3557
|
+
*
|
|
3558
|
+
* @type {boolean}
|
|
3559
|
+
* @memberof BlueprintManifestVariableField
|
|
3560
|
+
*/
|
|
3561
|
+
'is_secret': boolean;
|
|
3562
|
+
/**
|
|
3563
|
+
*
|
|
3564
|
+
* @type {string}
|
|
3565
|
+
* @memberof BlueprintManifestVariableField
|
|
3566
|
+
*/
|
|
3567
|
+
'description'?: string | null;
|
|
3568
|
+
/**
|
|
3569
|
+
*
|
|
3570
|
+
* @type {Array<string>}
|
|
3571
|
+
* @memberof BlueprintManifestVariableField
|
|
3572
|
+
*/
|
|
3573
|
+
'allowed_values'?: Array<string> | null;
|
|
3574
|
+
/**
|
|
3575
|
+
*
|
|
3576
|
+
* @type {string}
|
|
3577
|
+
* @memberof BlueprintManifestVariableField
|
|
3578
|
+
*/
|
|
3579
|
+
'default_value'?: string | null;
|
|
3580
|
+
}
|
|
3581
|
+
export declare const BlueprintManifestVariableFieldKindEnum: {
|
|
3582
|
+
readonly VARIABLE: "variable";
|
|
3583
|
+
};
|
|
3584
|
+
export type BlueprintManifestVariableFieldKindEnum = typeof BlueprintManifestVariableFieldKindEnum[keyof typeof BlueprintManifestVariableFieldKindEnum];
|
|
3466
3585
|
/**
|
|
3467
3586
|
*
|
|
3468
3587
|
* @export
|
|
@@ -12262,6 +12381,28 @@ export interface GenericObjectCurrentCost {
|
|
|
12262
12381
|
*/
|
|
12263
12382
|
'cost': Cost;
|
|
12264
12383
|
}
|
|
12384
|
+
/**
|
|
12385
|
+
*
|
|
12386
|
+
* @export
|
|
12387
|
+
* @interface GetBlueprintCatalogServiceManifest200Response
|
|
12388
|
+
*/
|
|
12389
|
+
export interface GetBlueprintCatalogServiceManifest200Response {
|
|
12390
|
+
/**
|
|
12391
|
+
*
|
|
12392
|
+
* @type {Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>}
|
|
12393
|
+
* @memberof GetBlueprintCatalogServiceManifest200Response
|
|
12394
|
+
*/
|
|
12395
|
+
'results'?: Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>;
|
|
12396
|
+
}
|
|
12397
|
+
/**
|
|
12398
|
+
* @type GetBlueprintCatalogServiceManifest200ResponseResultsInner
|
|
12399
|
+
* @export
|
|
12400
|
+
*/
|
|
12401
|
+
export type GetBlueprintCatalogServiceManifest200ResponseResultsInner = {
|
|
12402
|
+
kind: 'contextVariable';
|
|
12403
|
+
} & BlueprintManifestContextVariableField | {
|
|
12404
|
+
kind: 'variable';
|
|
12405
|
+
} & BlueprintManifestVariableField;
|
|
12265
12406
|
/**
|
|
12266
12407
|
*
|
|
12267
12408
|
* @export
|
|
@@ -27186,6 +27327,17 @@ export declare class BillingApi extends BaseAPI {
|
|
|
27186
27327
|
* @export
|
|
27187
27328
|
*/
|
|
27188
27329
|
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27330
|
+
/**
|
|
27331
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27332
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27333
|
+
* @param {string} organizationId Organization ID
|
|
27334
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27335
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27336
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27337
|
+
* @param {*} [options] Override http request option.
|
|
27338
|
+
* @throws {RequiredError}
|
|
27339
|
+
*/
|
|
27340
|
+
getBlueprintCatalogServiceManifest: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27189
27341
|
/**
|
|
27190
27342
|
*
|
|
27191
27343
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27203,6 +27355,17 @@ export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Conf
|
|
|
27203
27355
|
* @export
|
|
27204
27356
|
*/
|
|
27205
27357
|
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27358
|
+
/**
|
|
27359
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27360
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27361
|
+
* @param {string} organizationId Organization ID
|
|
27362
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27363
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27364
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27365
|
+
* @param {*} [options] Override http request option.
|
|
27366
|
+
* @throws {RequiredError}
|
|
27367
|
+
*/
|
|
27368
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBlueprintCatalogServiceManifest200Response>>;
|
|
27206
27369
|
/**
|
|
27207
27370
|
*
|
|
27208
27371
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27220,6 +27383,17 @@ export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
|
27220
27383
|
* @export
|
|
27221
27384
|
*/
|
|
27222
27385
|
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27386
|
+
/**
|
|
27387
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27388
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27389
|
+
* @param {string} organizationId Organization ID
|
|
27390
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27391
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27392
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27393
|
+
* @param {*} [options] Override http request option.
|
|
27394
|
+
* @throws {RequiredError}
|
|
27395
|
+
*/
|
|
27396
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBlueprintCatalogServiceManifest200Response>;
|
|
27223
27397
|
/**
|
|
27224
27398
|
*
|
|
27225
27399
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27239,6 +27413,18 @@ export declare const BlueprintCatalogApiFactory: (configuration?: Configuration,
|
|
|
27239
27413
|
* @extends {BaseAPI}
|
|
27240
27414
|
*/
|
|
27241
27415
|
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27416
|
+
/**
|
|
27417
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27418
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27419
|
+
* @param {string} organizationId Organization ID
|
|
27420
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27421
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27422
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27423
|
+
* @param {*} [options] Override http request option.
|
|
27424
|
+
* @throws {RequiredError}
|
|
27425
|
+
* @memberof BlueprintCatalogApi
|
|
27426
|
+
*/
|
|
27427
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBlueprintCatalogServiceManifest200Response, any, {}>>;
|
|
27242
27428
|
/**
|
|
27243
27429
|
*
|
|
27244
27430
|
* @summary Get the README of a blueprint catalog service
|
package/dist/api.js
CHANGED
|
@@ -22,18 +22,18 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = void 0;
|
|
25
|
+
exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.BlueprintManifestVariableFieldKindEnum = exports.BlueprintManifestFieldTypeTypeEnum = exports.BlueprintManifestContextVariableFieldKindEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
+
exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = void 0;
|
|
27
|
+
exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = void 0;
|
|
28
|
+
exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = void 0;
|
|
29
|
+
exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = exports.BlueprintCatalogApiFactory = exports.BlueprintCatalogApiFp = exports.BlueprintCatalogApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = void 0;
|
|
30
|
+
exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = void 0;
|
|
31
|
+
exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = void 0;
|
|
32
|
+
exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = void 0;
|
|
33
|
+
exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = void 0;
|
|
34
|
+
exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = void 0;
|
|
35
|
+
exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = void 0;
|
|
36
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = void 0;
|
|
37
37
|
const axios_1 = require("axios");
|
|
38
38
|
// Some imports not used depending on template conditions
|
|
39
39
|
// @ts-ignore
|
|
@@ -251,6 +251,17 @@ exports.AwsStaticCredentialsRequestTypeEnum = {
|
|
|
251
251
|
exports.AzureStaticClusterCredentialsObjectTypeEnum = {
|
|
252
252
|
AZURE: 'AZURE'
|
|
253
253
|
};
|
|
254
|
+
exports.BlueprintManifestContextVariableFieldKindEnum = {
|
|
255
|
+
CONTEXT_VARIABLE: 'contextVariable'
|
|
256
|
+
};
|
|
257
|
+
exports.BlueprintManifestFieldTypeTypeEnum = {
|
|
258
|
+
STRING: 'string',
|
|
259
|
+
BOOL: 'bool',
|
|
260
|
+
NUMBER: 'number'
|
|
261
|
+
};
|
|
262
|
+
exports.BlueprintManifestVariableFieldKindEnum = {
|
|
263
|
+
VARIABLE: 'variable'
|
|
264
|
+
};
|
|
254
265
|
/**
|
|
255
266
|
* `DOCKER` requires `dockerfile_path`
|
|
256
267
|
* @export
|
|
@@ -8842,6 +8853,52 @@ exports.BillingApi = BillingApi;
|
|
|
8842
8853
|
*/
|
|
8843
8854
|
const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8844
8855
|
return {
|
|
8856
|
+
/**
|
|
8857
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
8858
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8859
|
+
* @param {string} organizationId Organization ID
|
|
8860
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8861
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8862
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8863
|
+
* @param {*} [options] Override http request option.
|
|
8864
|
+
* @throws {RequiredError}
|
|
8865
|
+
*/
|
|
8866
|
+
getBlueprintCatalogServiceManifest: (organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1) => __awaiter(this, [organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1], void 0, function* (organizationId, provider, serviceFamily, serviceVersion, options = {}) {
|
|
8867
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8868
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'organizationId', organizationId);
|
|
8869
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8870
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'provider', provider);
|
|
8871
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8872
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'serviceFamily', serviceFamily);
|
|
8873
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8874
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'serviceVersion', serviceVersion);
|
|
8875
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest`
|
|
8876
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8877
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8878
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8879
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8880
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8881
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
8882
|
+
let baseOptions;
|
|
8883
|
+
if (configuration) {
|
|
8884
|
+
baseOptions = configuration.baseOptions;
|
|
8885
|
+
}
|
|
8886
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8887
|
+
const localVarHeaderParameter = {};
|
|
8888
|
+
const localVarQueryParameter = {};
|
|
8889
|
+
// authentication ApiKeyAuth required
|
|
8890
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
8891
|
+
// authentication bearerAuth required
|
|
8892
|
+
// http bearer authentication required
|
|
8893
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
8894
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
8895
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8896
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8897
|
+
return {
|
|
8898
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
8899
|
+
options: localVarRequestOptions,
|
|
8900
|
+
};
|
|
8901
|
+
}),
|
|
8845
8902
|
/**
|
|
8846
8903
|
*
|
|
8847
8904
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8898,6 +8955,25 @@ exports.BlueprintCatalogApiAxiosParamCreator = BlueprintCatalogApiAxiosParamCrea
|
|
|
8898
8955
|
const BlueprintCatalogApiFp = function (configuration) {
|
|
8899
8956
|
const localVarAxiosParamCreator = (0, exports.BlueprintCatalogApiAxiosParamCreator)(configuration);
|
|
8900
8957
|
return {
|
|
8958
|
+
/**
|
|
8959
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
8960
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8961
|
+
* @param {string} organizationId Organization ID
|
|
8962
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8963
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8964
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8965
|
+
* @param {*} [options] Override http request option.
|
|
8966
|
+
* @throws {RequiredError}
|
|
8967
|
+
*/
|
|
8968
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8969
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8970
|
+
var _a, _b, _c;
|
|
8971
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8972
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8973
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceManifest']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8974
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8975
|
+
});
|
|
8976
|
+
},
|
|
8901
8977
|
/**
|
|
8902
8978
|
*
|
|
8903
8979
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8927,6 +9003,19 @@ exports.BlueprintCatalogApiFp = BlueprintCatalogApiFp;
|
|
|
8927
9003
|
const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8928
9004
|
const localVarFp = (0, exports.BlueprintCatalogApiFp)(configuration);
|
|
8929
9005
|
return {
|
|
9006
|
+
/**
|
|
9007
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
9008
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
9009
|
+
* @param {string} organizationId Organization ID
|
|
9010
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
9011
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
9012
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
9013
|
+
* @param {*} [options] Override http request option.
|
|
9014
|
+
* @throws {RequiredError}
|
|
9015
|
+
*/
|
|
9016
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
9017
|
+
return localVarFp.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
9018
|
+
},
|
|
8930
9019
|
/**
|
|
8931
9020
|
*
|
|
8932
9021
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8950,6 +9039,20 @@ exports.BlueprintCatalogApiFactory = BlueprintCatalogApiFactory;
|
|
|
8950
9039
|
* @extends {BaseAPI}
|
|
8951
9040
|
*/
|
|
8952
9041
|
class BlueprintCatalogApi extends base_1.BaseAPI {
|
|
9042
|
+
/**
|
|
9043
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
9044
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
9045
|
+
* @param {string} organizationId Organization ID
|
|
9046
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
9047
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
9048
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
9049
|
+
* @param {*} [options] Override http request option.
|
|
9050
|
+
* @throws {RequiredError}
|
|
9051
|
+
* @memberof BlueprintCatalogApi
|
|
9052
|
+
*/
|
|
9053
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
9054
|
+
return (0, exports.BlueprintCatalogApiFp)(this.configuration).getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
9055
|
+
}
|
|
8953
9056
|
/**
|
|
8954
9057
|
*
|
|
8955
9058
|
* @summary Get the README of a blueprint catalog service
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3463,6 +3463,125 @@ export interface BlueprintMajorVersion {
|
|
|
3463
3463
|
*/
|
|
3464
3464
|
'latestTag': string;
|
|
3465
3465
|
}
|
|
3466
|
+
/**
|
|
3467
|
+
* An auto-sourced, read-only value (from spec.contextVariables); not user-editable.
|
|
3468
|
+
* @export
|
|
3469
|
+
* @interface BlueprintManifestContextVariableField
|
|
3470
|
+
*/
|
|
3471
|
+
export interface BlueprintManifestContextVariableField {
|
|
3472
|
+
/**
|
|
3473
|
+
*
|
|
3474
|
+
* @type {string}
|
|
3475
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3476
|
+
*/
|
|
3477
|
+
'kind': BlueprintManifestContextVariableFieldKindEnum;
|
|
3478
|
+
/**
|
|
3479
|
+
*
|
|
3480
|
+
* @type {string}
|
|
3481
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3482
|
+
*/
|
|
3483
|
+
'name': string;
|
|
3484
|
+
/**
|
|
3485
|
+
* Origin of the auto-sourced value (e.g. cluster.region)
|
|
3486
|
+
* @type {string}
|
|
3487
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3488
|
+
*/
|
|
3489
|
+
'source'?: string | null;
|
|
3490
|
+
}
|
|
3491
|
+
export declare const BlueprintManifestContextVariableFieldKindEnum: {
|
|
3492
|
+
readonly CONTEXT_VARIABLE: "contextVariable";
|
|
3493
|
+
};
|
|
3494
|
+
export type BlueprintManifestContextVariableFieldKindEnum = typeof BlueprintManifestContextVariableFieldKindEnum[keyof typeof BlueprintManifestContextVariableFieldKindEnum];
|
|
3495
|
+
/**
|
|
3496
|
+
* Field type with its type-specific validation conditions, discriminated by \"type\".
|
|
3497
|
+
* @export
|
|
3498
|
+
* @interface BlueprintManifestFieldType
|
|
3499
|
+
*/
|
|
3500
|
+
export interface BlueprintManifestFieldType {
|
|
3501
|
+
/**
|
|
3502
|
+
*
|
|
3503
|
+
* @type {string}
|
|
3504
|
+
* @memberof BlueprintManifestFieldType
|
|
3505
|
+
*/
|
|
3506
|
+
'type': BlueprintManifestFieldTypeTypeEnum;
|
|
3507
|
+
/**
|
|
3508
|
+
* Lower bound, only present for number fields
|
|
3509
|
+
* @type {number}
|
|
3510
|
+
* @memberof BlueprintManifestFieldType
|
|
3511
|
+
*/
|
|
3512
|
+
'min'?: number | null;
|
|
3513
|
+
/**
|
|
3514
|
+
* Upper bound, only present for number fields
|
|
3515
|
+
* @type {number}
|
|
3516
|
+
* @memberof BlueprintManifestFieldType
|
|
3517
|
+
*/
|
|
3518
|
+
'max'?: number | null;
|
|
3519
|
+
}
|
|
3520
|
+
export declare const BlueprintManifestFieldTypeTypeEnum: {
|
|
3521
|
+
readonly STRING: "string";
|
|
3522
|
+
readonly BOOL: "bool";
|
|
3523
|
+
readonly NUMBER: "number";
|
|
3524
|
+
};
|
|
3525
|
+
export type BlueprintManifestFieldTypeTypeEnum = typeof BlueprintManifestFieldTypeTypeEnum[keyof typeof BlueprintManifestFieldTypeTypeEnum];
|
|
3526
|
+
/**
|
|
3527
|
+
* An editable form input the user fills in (from spec.variables).
|
|
3528
|
+
* @export
|
|
3529
|
+
* @interface BlueprintManifestVariableField
|
|
3530
|
+
*/
|
|
3531
|
+
export interface BlueprintManifestVariableField {
|
|
3532
|
+
/**
|
|
3533
|
+
*
|
|
3534
|
+
* @type {string}
|
|
3535
|
+
* @memberof BlueprintManifestVariableField
|
|
3536
|
+
*/
|
|
3537
|
+
'kind': BlueprintManifestVariableFieldKindEnum;
|
|
3538
|
+
/**
|
|
3539
|
+
*
|
|
3540
|
+
* @type {string}
|
|
3541
|
+
* @memberof BlueprintManifestVariableField
|
|
3542
|
+
*/
|
|
3543
|
+
'name': string;
|
|
3544
|
+
/**
|
|
3545
|
+
*
|
|
3546
|
+
* @type {BlueprintManifestFieldType}
|
|
3547
|
+
* @memberof BlueprintManifestVariableField
|
|
3548
|
+
*/
|
|
3549
|
+
'type': BlueprintManifestFieldType;
|
|
3550
|
+
/**
|
|
3551
|
+
*
|
|
3552
|
+
* @type {boolean}
|
|
3553
|
+
* @memberof BlueprintManifestVariableField
|
|
3554
|
+
*/
|
|
3555
|
+
'required': boolean;
|
|
3556
|
+
/**
|
|
3557
|
+
*
|
|
3558
|
+
* @type {boolean}
|
|
3559
|
+
* @memberof BlueprintManifestVariableField
|
|
3560
|
+
*/
|
|
3561
|
+
'is_secret': boolean;
|
|
3562
|
+
/**
|
|
3563
|
+
*
|
|
3564
|
+
* @type {string}
|
|
3565
|
+
* @memberof BlueprintManifestVariableField
|
|
3566
|
+
*/
|
|
3567
|
+
'description'?: string | null;
|
|
3568
|
+
/**
|
|
3569
|
+
*
|
|
3570
|
+
* @type {Array<string>}
|
|
3571
|
+
* @memberof BlueprintManifestVariableField
|
|
3572
|
+
*/
|
|
3573
|
+
'allowed_values'?: Array<string> | null;
|
|
3574
|
+
/**
|
|
3575
|
+
*
|
|
3576
|
+
* @type {string}
|
|
3577
|
+
* @memberof BlueprintManifestVariableField
|
|
3578
|
+
*/
|
|
3579
|
+
'default_value'?: string | null;
|
|
3580
|
+
}
|
|
3581
|
+
export declare const BlueprintManifestVariableFieldKindEnum: {
|
|
3582
|
+
readonly VARIABLE: "variable";
|
|
3583
|
+
};
|
|
3584
|
+
export type BlueprintManifestVariableFieldKindEnum = typeof BlueprintManifestVariableFieldKindEnum[keyof typeof BlueprintManifestVariableFieldKindEnum];
|
|
3466
3585
|
/**
|
|
3467
3586
|
*
|
|
3468
3587
|
* @export
|
|
@@ -12262,6 +12381,28 @@ export interface GenericObjectCurrentCost {
|
|
|
12262
12381
|
*/
|
|
12263
12382
|
'cost': Cost;
|
|
12264
12383
|
}
|
|
12384
|
+
/**
|
|
12385
|
+
*
|
|
12386
|
+
* @export
|
|
12387
|
+
* @interface GetBlueprintCatalogServiceManifest200Response
|
|
12388
|
+
*/
|
|
12389
|
+
export interface GetBlueprintCatalogServiceManifest200Response {
|
|
12390
|
+
/**
|
|
12391
|
+
*
|
|
12392
|
+
* @type {Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>}
|
|
12393
|
+
* @memberof GetBlueprintCatalogServiceManifest200Response
|
|
12394
|
+
*/
|
|
12395
|
+
'results'?: Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>;
|
|
12396
|
+
}
|
|
12397
|
+
/**
|
|
12398
|
+
* @type GetBlueprintCatalogServiceManifest200ResponseResultsInner
|
|
12399
|
+
* @export
|
|
12400
|
+
*/
|
|
12401
|
+
export type GetBlueprintCatalogServiceManifest200ResponseResultsInner = {
|
|
12402
|
+
kind: 'contextVariable';
|
|
12403
|
+
} & BlueprintManifestContextVariableField | {
|
|
12404
|
+
kind: 'variable';
|
|
12405
|
+
} & BlueprintManifestVariableField;
|
|
12265
12406
|
/**
|
|
12266
12407
|
*
|
|
12267
12408
|
* @export
|
|
@@ -27186,6 +27327,17 @@ export declare class BillingApi extends BaseAPI {
|
|
|
27186
27327
|
* @export
|
|
27187
27328
|
*/
|
|
27188
27329
|
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27330
|
+
/**
|
|
27331
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27332
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27333
|
+
* @param {string} organizationId Organization ID
|
|
27334
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27335
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27336
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27337
|
+
* @param {*} [options] Override http request option.
|
|
27338
|
+
* @throws {RequiredError}
|
|
27339
|
+
*/
|
|
27340
|
+
getBlueprintCatalogServiceManifest: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27189
27341
|
/**
|
|
27190
27342
|
*
|
|
27191
27343
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27203,6 +27355,17 @@ export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Conf
|
|
|
27203
27355
|
* @export
|
|
27204
27356
|
*/
|
|
27205
27357
|
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27358
|
+
/**
|
|
27359
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27360
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27361
|
+
* @param {string} organizationId Organization ID
|
|
27362
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27363
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27364
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27365
|
+
* @param {*} [options] Override http request option.
|
|
27366
|
+
* @throws {RequiredError}
|
|
27367
|
+
*/
|
|
27368
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBlueprintCatalogServiceManifest200Response>>;
|
|
27206
27369
|
/**
|
|
27207
27370
|
*
|
|
27208
27371
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27220,6 +27383,17 @@ export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
|
27220
27383
|
* @export
|
|
27221
27384
|
*/
|
|
27222
27385
|
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27386
|
+
/**
|
|
27387
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27388
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27389
|
+
* @param {string} organizationId Organization ID
|
|
27390
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27391
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27392
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27393
|
+
* @param {*} [options] Override http request option.
|
|
27394
|
+
* @throws {RequiredError}
|
|
27395
|
+
*/
|
|
27396
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBlueprintCatalogServiceManifest200Response>;
|
|
27223
27397
|
/**
|
|
27224
27398
|
*
|
|
27225
27399
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27239,6 +27413,18 @@ export declare const BlueprintCatalogApiFactory: (configuration?: Configuration,
|
|
|
27239
27413
|
* @extends {BaseAPI}
|
|
27240
27414
|
*/
|
|
27241
27415
|
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27416
|
+
/**
|
|
27417
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
27418
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27419
|
+
* @param {string} organizationId Organization ID
|
|
27420
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27421
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27422
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27423
|
+
* @param {*} [options] Override http request option.
|
|
27424
|
+
* @throws {RequiredError}
|
|
27425
|
+
* @memberof BlueprintCatalogApi
|
|
27426
|
+
*/
|
|
27427
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBlueprintCatalogServiceManifest200Response, any, {}>>;
|
|
27242
27428
|
/**
|
|
27243
27429
|
*
|
|
27244
27430
|
* @summary Get the README of a blueprint catalog service
|
package/dist/esm/api.js
CHANGED
|
@@ -237,6 +237,17 @@ export const AwsStaticCredentialsRequestTypeEnum = {
|
|
|
237
237
|
export const AzureStaticClusterCredentialsObjectTypeEnum = {
|
|
238
238
|
AZURE: 'AZURE'
|
|
239
239
|
};
|
|
240
|
+
export const BlueprintManifestContextVariableFieldKindEnum = {
|
|
241
|
+
CONTEXT_VARIABLE: 'contextVariable'
|
|
242
|
+
};
|
|
243
|
+
export const BlueprintManifestFieldTypeTypeEnum = {
|
|
244
|
+
STRING: 'string',
|
|
245
|
+
BOOL: 'bool',
|
|
246
|
+
NUMBER: 'number'
|
|
247
|
+
};
|
|
248
|
+
export const BlueprintManifestVariableFieldKindEnum = {
|
|
249
|
+
VARIABLE: 'variable'
|
|
250
|
+
};
|
|
240
251
|
/**
|
|
241
252
|
* `DOCKER` requires `dockerfile_path`
|
|
242
253
|
* @export
|
|
@@ -8764,6 +8775,52 @@ export class BillingApi extends BaseAPI {
|
|
|
8764
8775
|
*/
|
|
8765
8776
|
export const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8766
8777
|
return {
|
|
8778
|
+
/**
|
|
8779
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
8780
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8781
|
+
* @param {string} organizationId Organization ID
|
|
8782
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8783
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8784
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8785
|
+
* @param {*} [options] Override http request option.
|
|
8786
|
+
* @throws {RequiredError}
|
|
8787
|
+
*/
|
|
8788
|
+
getBlueprintCatalogServiceManifest: (organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1) => __awaiter(this, [organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1], void 0, function* (organizationId, provider, serviceFamily, serviceVersion, options = {}) {
|
|
8789
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8790
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'organizationId', organizationId);
|
|
8791
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8792
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'provider', provider);
|
|
8793
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8794
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceFamily', serviceFamily);
|
|
8795
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8796
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceVersion', serviceVersion);
|
|
8797
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest`
|
|
8798
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8799
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8800
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8801
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8802
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8803
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8804
|
+
let baseOptions;
|
|
8805
|
+
if (configuration) {
|
|
8806
|
+
baseOptions = configuration.baseOptions;
|
|
8807
|
+
}
|
|
8808
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8809
|
+
const localVarHeaderParameter = {};
|
|
8810
|
+
const localVarQueryParameter = {};
|
|
8811
|
+
// authentication ApiKeyAuth required
|
|
8812
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
8813
|
+
// authentication bearerAuth required
|
|
8814
|
+
// http bearer authentication required
|
|
8815
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8816
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8817
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8818
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8819
|
+
return {
|
|
8820
|
+
url: toPathString(localVarUrlObj),
|
|
8821
|
+
options: localVarRequestOptions,
|
|
8822
|
+
};
|
|
8823
|
+
}),
|
|
8767
8824
|
/**
|
|
8768
8825
|
*
|
|
8769
8826
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8819,6 +8876,25 @@ export const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
|
8819
8876
|
export const BlueprintCatalogApiFp = function (configuration) {
|
|
8820
8877
|
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration);
|
|
8821
8878
|
return {
|
|
8879
|
+
/**
|
|
8880
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
8881
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8882
|
+
* @param {string} organizationId Organization ID
|
|
8883
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8884
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8885
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8886
|
+
* @param {*} [options] Override http request option.
|
|
8887
|
+
* @throws {RequiredError}
|
|
8888
|
+
*/
|
|
8889
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8890
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8891
|
+
var _a, _b, _c;
|
|
8892
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8893
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8894
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceManifest']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8895
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8896
|
+
});
|
|
8897
|
+
},
|
|
8822
8898
|
/**
|
|
8823
8899
|
*
|
|
8824
8900
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8847,6 +8923,19 @@ export const BlueprintCatalogApiFp = function (configuration) {
|
|
|
8847
8923
|
export const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8848
8924
|
const localVarFp = BlueprintCatalogApiFp(configuration);
|
|
8849
8925
|
return {
|
|
8926
|
+
/**
|
|
8927
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
8928
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8929
|
+
* @param {string} organizationId Organization ID
|
|
8930
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8931
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8932
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8933
|
+
* @param {*} [options] Override http request option.
|
|
8934
|
+
* @throws {RequiredError}
|
|
8935
|
+
*/
|
|
8936
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8937
|
+
return localVarFp.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
8938
|
+
},
|
|
8850
8939
|
/**
|
|
8851
8940
|
*
|
|
8852
8941
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8869,6 +8958,20 @@ export const BlueprintCatalogApiFactory = function (configuration, basePath, axi
|
|
|
8869
8958
|
* @extends {BaseAPI}
|
|
8870
8959
|
*/
|
|
8871
8960
|
export class BlueprintCatalogApi extends BaseAPI {
|
|
8961
|
+
/**
|
|
8962
|
+
* Returns the list of form fields the console must display to deploy the selected blueprint, derived from the blueprint\'s qbm.yml manifest. Includes editable variables (overridable=true) and auto-sourced context variables (overridable=false, with a source).
|
|
8963
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8964
|
+
* @param {string} organizationId Organization ID
|
|
8965
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8966
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8967
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8968
|
+
* @param {*} [options] Override http request option.
|
|
8969
|
+
* @throws {RequiredError}
|
|
8970
|
+
* @memberof BlueprintCatalogApi
|
|
8971
|
+
*/
|
|
8972
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8973
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
8974
|
+
}
|
|
8872
8975
|
/**
|
|
8873
8976
|
*
|
|
8874
8977
|
* @summary Get the README of a blueprint catalog service
|