qovery-typescript-axios 1.1.907 → 1.1.909
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 +247 -2
- package/dist/api.d.ts +188 -1
- package/dist/api.js +118 -14
- package/dist/esm/api.d.ts +188 -1
- package/dist/esm/api.js +106 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -44,7 +44,7 @@ export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIV
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
47
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
48
48
|
* @export
|
|
49
49
|
* @enum {string}
|
|
50
50
|
*/
|
|
@@ -55,7 +55,8 @@ export const APIVariableTypeEnum = {
|
|
|
55
55
|
OVERRIDE: 'OVERRIDE',
|
|
56
56
|
BUILT_IN: 'BUILT_IN',
|
|
57
57
|
FILE: 'FILE',
|
|
58
|
-
EXTERNAL_SECRET: 'EXTERNAL_SECRET'
|
|
58
|
+
EXTERNAL_SECRET: 'EXTERNAL_SECRET',
|
|
59
|
+
FILE_EXTERNAL_SECRET: 'FILE_EXTERNAL_SECRET'
|
|
59
60
|
} as const;
|
|
60
61
|
|
|
61
62
|
export type APIVariableTypeEnum = typeof APIVariableTypeEnum[keyof typeof APIVariableTypeEnum];
|
|
@@ -3584,6 +3585,134 @@ export interface BlueprintMajorVersion {
|
|
|
3584
3585
|
*/
|
|
3585
3586
|
'latestTag': string;
|
|
3586
3587
|
}
|
|
3588
|
+
/**
|
|
3589
|
+
* An auto-sourced, read-only value (from spec.contextVariables); not user-editable.
|
|
3590
|
+
* @export
|
|
3591
|
+
* @interface BlueprintManifestContextVariableField
|
|
3592
|
+
*/
|
|
3593
|
+
export interface BlueprintManifestContextVariableField {
|
|
3594
|
+
/**
|
|
3595
|
+
*
|
|
3596
|
+
* @type {string}
|
|
3597
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3598
|
+
*/
|
|
3599
|
+
'kind': BlueprintManifestContextVariableFieldKindEnum;
|
|
3600
|
+
/**
|
|
3601
|
+
*
|
|
3602
|
+
* @type {string}
|
|
3603
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3604
|
+
*/
|
|
3605
|
+
'name': string;
|
|
3606
|
+
/**
|
|
3607
|
+
* Origin of the auto-sourced value (e.g. cluster.region)
|
|
3608
|
+
* @type {string}
|
|
3609
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3610
|
+
*/
|
|
3611
|
+
'source'?: string | null;
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3614
|
+
export const BlueprintManifestContextVariableFieldKindEnum = {
|
|
3615
|
+
CONTEXT_VARIABLE: 'contextVariable'
|
|
3616
|
+
} as const;
|
|
3617
|
+
|
|
3618
|
+
export type BlueprintManifestContextVariableFieldKindEnum = typeof BlueprintManifestContextVariableFieldKindEnum[keyof typeof BlueprintManifestContextVariableFieldKindEnum];
|
|
3619
|
+
|
|
3620
|
+
/**
|
|
3621
|
+
* Field type with its type-specific validation conditions, discriminated by \"type\".
|
|
3622
|
+
* @export
|
|
3623
|
+
* @interface BlueprintManifestFieldType
|
|
3624
|
+
*/
|
|
3625
|
+
export interface BlueprintManifestFieldType {
|
|
3626
|
+
/**
|
|
3627
|
+
*
|
|
3628
|
+
* @type {string}
|
|
3629
|
+
* @memberof BlueprintManifestFieldType
|
|
3630
|
+
*/
|
|
3631
|
+
'type': BlueprintManifestFieldTypeTypeEnum;
|
|
3632
|
+
/**
|
|
3633
|
+
* Lower bound, only present for number fields
|
|
3634
|
+
* @type {number}
|
|
3635
|
+
* @memberof BlueprintManifestFieldType
|
|
3636
|
+
*/
|
|
3637
|
+
'min'?: number | null;
|
|
3638
|
+
/**
|
|
3639
|
+
* Upper bound, only present for number fields
|
|
3640
|
+
* @type {number}
|
|
3641
|
+
* @memberof BlueprintManifestFieldType
|
|
3642
|
+
*/
|
|
3643
|
+
'max'?: number | null;
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3646
|
+
export const BlueprintManifestFieldTypeTypeEnum = {
|
|
3647
|
+
STRING: 'string',
|
|
3648
|
+
BOOL: 'bool',
|
|
3649
|
+
NUMBER: 'number'
|
|
3650
|
+
} as const;
|
|
3651
|
+
|
|
3652
|
+
export type BlueprintManifestFieldTypeTypeEnum = typeof BlueprintManifestFieldTypeTypeEnum[keyof typeof BlueprintManifestFieldTypeTypeEnum];
|
|
3653
|
+
|
|
3654
|
+
/**
|
|
3655
|
+
* An editable form input the user fills in (from spec.variables).
|
|
3656
|
+
* @export
|
|
3657
|
+
* @interface BlueprintManifestVariableField
|
|
3658
|
+
*/
|
|
3659
|
+
export interface BlueprintManifestVariableField {
|
|
3660
|
+
/**
|
|
3661
|
+
*
|
|
3662
|
+
* @type {string}
|
|
3663
|
+
* @memberof BlueprintManifestVariableField
|
|
3664
|
+
*/
|
|
3665
|
+
'kind': BlueprintManifestVariableFieldKindEnum;
|
|
3666
|
+
/**
|
|
3667
|
+
*
|
|
3668
|
+
* @type {string}
|
|
3669
|
+
* @memberof BlueprintManifestVariableField
|
|
3670
|
+
*/
|
|
3671
|
+
'name': string;
|
|
3672
|
+
/**
|
|
3673
|
+
*
|
|
3674
|
+
* @type {BlueprintManifestFieldType}
|
|
3675
|
+
* @memberof BlueprintManifestVariableField
|
|
3676
|
+
*/
|
|
3677
|
+
'type': BlueprintManifestFieldType;
|
|
3678
|
+
/**
|
|
3679
|
+
*
|
|
3680
|
+
* @type {boolean}
|
|
3681
|
+
* @memberof BlueprintManifestVariableField
|
|
3682
|
+
*/
|
|
3683
|
+
'required': boolean;
|
|
3684
|
+
/**
|
|
3685
|
+
*
|
|
3686
|
+
* @type {boolean}
|
|
3687
|
+
* @memberof BlueprintManifestVariableField
|
|
3688
|
+
*/
|
|
3689
|
+
'is_secret': boolean;
|
|
3690
|
+
/**
|
|
3691
|
+
*
|
|
3692
|
+
* @type {string}
|
|
3693
|
+
* @memberof BlueprintManifestVariableField
|
|
3694
|
+
*/
|
|
3695
|
+
'description'?: string | null;
|
|
3696
|
+
/**
|
|
3697
|
+
*
|
|
3698
|
+
* @type {Array<string>}
|
|
3699
|
+
* @memberof BlueprintManifestVariableField
|
|
3700
|
+
*/
|
|
3701
|
+
'allowed_values'?: Array<string> | null;
|
|
3702
|
+
/**
|
|
3703
|
+
*
|
|
3704
|
+
* @type {string}
|
|
3705
|
+
* @memberof BlueprintManifestVariableField
|
|
3706
|
+
*/
|
|
3707
|
+
'default_value'?: string | null;
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
export const BlueprintManifestVariableFieldKindEnum = {
|
|
3711
|
+
VARIABLE: 'variable'
|
|
3712
|
+
} as const;
|
|
3713
|
+
|
|
3714
|
+
export type BlueprintManifestVariableFieldKindEnum = typeof BlueprintManifestVariableFieldKindEnum[keyof typeof BlueprintManifestVariableFieldKindEnum];
|
|
3715
|
+
|
|
3587
3716
|
/**
|
|
3588
3717
|
*
|
|
3589
3718
|
* @export
|
|
@@ -12657,6 +12786,25 @@ export interface GenericObjectCurrentCost {
|
|
|
12657
12786
|
*/
|
|
12658
12787
|
'cost': Cost;
|
|
12659
12788
|
}
|
|
12789
|
+
/**
|
|
12790
|
+
*
|
|
12791
|
+
* @export
|
|
12792
|
+
* @interface GetBlueprintCatalogServiceManifest200Response
|
|
12793
|
+
*/
|
|
12794
|
+
export interface GetBlueprintCatalogServiceManifest200Response {
|
|
12795
|
+
/**
|
|
12796
|
+
*
|
|
12797
|
+
* @type {Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>}
|
|
12798
|
+
* @memberof GetBlueprintCatalogServiceManifest200Response
|
|
12799
|
+
*/
|
|
12800
|
+
'results'?: Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>;
|
|
12801
|
+
}
|
|
12802
|
+
/**
|
|
12803
|
+
* @type GetBlueprintCatalogServiceManifest200ResponseResultsInner
|
|
12804
|
+
* @export
|
|
12805
|
+
*/
|
|
12806
|
+
export type GetBlueprintCatalogServiceManifest200ResponseResultsInner = { kind: 'contextVariable' } & BlueprintManifestContextVariableField | { kind: 'variable' } & BlueprintManifestVariableField;
|
|
12807
|
+
|
|
12660
12808
|
/**
|
|
12661
12809
|
*
|
|
12662
12810
|
* @export
|
|
@@ -32227,6 +32375,59 @@ export class BillingApi extends BaseAPI {
|
|
|
32227
32375
|
*/
|
|
32228
32376
|
export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32229
32377
|
return {
|
|
32378
|
+
/**
|
|
32379
|
+
* 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).
|
|
32380
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32381
|
+
* @param {string} organizationId Organization ID
|
|
32382
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32383
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32384
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32385
|
+
* @param {*} [options] Override http request option.
|
|
32386
|
+
* @throws {RequiredError}
|
|
32387
|
+
*/
|
|
32388
|
+
getBlueprintCatalogServiceManifest: async (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32389
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
32390
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'organizationId', organizationId)
|
|
32391
|
+
// verify required parameter 'provider' is not null or undefined
|
|
32392
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'provider', provider)
|
|
32393
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
32394
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceFamily', serviceFamily)
|
|
32395
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
32396
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceVersion', serviceVersion)
|
|
32397
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest`
|
|
32398
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
32399
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
32400
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
32401
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
32402
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32403
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32404
|
+
let baseOptions;
|
|
32405
|
+
if (configuration) {
|
|
32406
|
+
baseOptions = configuration.baseOptions;
|
|
32407
|
+
}
|
|
32408
|
+
|
|
32409
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
32410
|
+
const localVarHeaderParameter = {} as any;
|
|
32411
|
+
const localVarQueryParameter = {} as any;
|
|
32412
|
+
|
|
32413
|
+
// authentication ApiKeyAuth required
|
|
32414
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
32415
|
+
|
|
32416
|
+
// authentication bearerAuth required
|
|
32417
|
+
// http bearer authentication required
|
|
32418
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32419
|
+
|
|
32420
|
+
|
|
32421
|
+
|
|
32422
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32423
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32424
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32425
|
+
|
|
32426
|
+
return {
|
|
32427
|
+
url: toPathString(localVarUrlObj),
|
|
32428
|
+
options: localVarRequestOptions,
|
|
32429
|
+
};
|
|
32430
|
+
},
|
|
32230
32431
|
/**
|
|
32231
32432
|
*
|
|
32232
32433
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -32290,6 +32491,22 @@ export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Co
|
|
|
32290
32491
|
export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
32291
32492
|
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration)
|
|
32292
32493
|
return {
|
|
32494
|
+
/**
|
|
32495
|
+
* 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).
|
|
32496
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32497
|
+
* @param {string} organizationId Organization ID
|
|
32498
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32499
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32500
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32501
|
+
* @param {*} [options] Override http request option.
|
|
32502
|
+
* @throws {RequiredError}
|
|
32503
|
+
*/
|
|
32504
|
+
async getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBlueprintCatalogServiceManifest200Response>> {
|
|
32505
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
32506
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32507
|
+
const localVarOperationServerBasePath = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceManifest']?.[localVarOperationServerIndex]?.url;
|
|
32508
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32509
|
+
},
|
|
32293
32510
|
/**
|
|
32294
32511
|
*
|
|
32295
32512
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -32316,6 +32533,19 @@ export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
|
32316
32533
|
export const BlueprintCatalogApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32317
32534
|
const localVarFp = BlueprintCatalogApiFp(configuration)
|
|
32318
32535
|
return {
|
|
32536
|
+
/**
|
|
32537
|
+
* 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).
|
|
32538
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32539
|
+
* @param {string} organizationId Organization ID
|
|
32540
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32541
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32542
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32543
|
+
* @param {*} [options] Override http request option.
|
|
32544
|
+
* @throws {RequiredError}
|
|
32545
|
+
*/
|
|
32546
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBlueprintCatalogServiceManifest200Response> {
|
|
32547
|
+
return localVarFp.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
32548
|
+
},
|
|
32319
32549
|
/**
|
|
32320
32550
|
*
|
|
32321
32551
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -32339,6 +32569,21 @@ export const BlueprintCatalogApiFactory = function (configuration?: Configuratio
|
|
|
32339
32569
|
* @extends {BaseAPI}
|
|
32340
32570
|
*/
|
|
32341
32571
|
export class BlueprintCatalogApi extends BaseAPI {
|
|
32572
|
+
/**
|
|
32573
|
+
* 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).
|
|
32574
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
32575
|
+
* @param {string} organizationId Organization ID
|
|
32576
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32577
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32578
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32579
|
+
* @param {*} [options] Override http request option.
|
|
32580
|
+
* @throws {RequiredError}
|
|
32581
|
+
* @memberof BlueprintCatalogApi
|
|
32582
|
+
*/
|
|
32583
|
+
public getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) {
|
|
32584
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
32585
|
+
}
|
|
32586
|
+
|
|
32342
32587
|
/**
|
|
32343
32588
|
*
|
|
32344
32589
|
* @summary Get the README of a blueprint catalog service
|
package/dist/api.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const APIVariableScopeEnum: {
|
|
|
30
30
|
};
|
|
31
31
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
32
32
|
/**
|
|
33
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
33
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
34
34
|
* @export
|
|
35
35
|
* @enum {string}
|
|
36
36
|
*/
|
|
@@ -41,6 +41,7 @@ export declare const APIVariableTypeEnum: {
|
|
|
41
41
|
readonly BUILT_IN: "BUILT_IN";
|
|
42
42
|
readonly FILE: "FILE";
|
|
43
43
|
readonly EXTERNAL_SECRET: "EXTERNAL_SECRET";
|
|
44
|
+
readonly FILE_EXTERNAL_SECRET: "FILE_EXTERNAL_SECRET";
|
|
44
45
|
};
|
|
45
46
|
export type APIVariableTypeEnum = typeof APIVariableTypeEnum[keyof typeof APIVariableTypeEnum];
|
|
46
47
|
/**
|
|
@@ -3463,6 +3464,125 @@ export interface BlueprintMajorVersion {
|
|
|
3463
3464
|
*/
|
|
3464
3465
|
'latestTag': string;
|
|
3465
3466
|
}
|
|
3467
|
+
/**
|
|
3468
|
+
* An auto-sourced, read-only value (from spec.contextVariables); not user-editable.
|
|
3469
|
+
* @export
|
|
3470
|
+
* @interface BlueprintManifestContextVariableField
|
|
3471
|
+
*/
|
|
3472
|
+
export interface BlueprintManifestContextVariableField {
|
|
3473
|
+
/**
|
|
3474
|
+
*
|
|
3475
|
+
* @type {string}
|
|
3476
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3477
|
+
*/
|
|
3478
|
+
'kind': BlueprintManifestContextVariableFieldKindEnum;
|
|
3479
|
+
/**
|
|
3480
|
+
*
|
|
3481
|
+
* @type {string}
|
|
3482
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3483
|
+
*/
|
|
3484
|
+
'name': string;
|
|
3485
|
+
/**
|
|
3486
|
+
* Origin of the auto-sourced value (e.g. cluster.region)
|
|
3487
|
+
* @type {string}
|
|
3488
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3489
|
+
*/
|
|
3490
|
+
'source'?: string | null;
|
|
3491
|
+
}
|
|
3492
|
+
export declare const BlueprintManifestContextVariableFieldKindEnum: {
|
|
3493
|
+
readonly CONTEXT_VARIABLE: "contextVariable";
|
|
3494
|
+
};
|
|
3495
|
+
export type BlueprintManifestContextVariableFieldKindEnum = typeof BlueprintManifestContextVariableFieldKindEnum[keyof typeof BlueprintManifestContextVariableFieldKindEnum];
|
|
3496
|
+
/**
|
|
3497
|
+
* Field type with its type-specific validation conditions, discriminated by \"type\".
|
|
3498
|
+
* @export
|
|
3499
|
+
* @interface BlueprintManifestFieldType
|
|
3500
|
+
*/
|
|
3501
|
+
export interface BlueprintManifestFieldType {
|
|
3502
|
+
/**
|
|
3503
|
+
*
|
|
3504
|
+
* @type {string}
|
|
3505
|
+
* @memberof BlueprintManifestFieldType
|
|
3506
|
+
*/
|
|
3507
|
+
'type': BlueprintManifestFieldTypeTypeEnum;
|
|
3508
|
+
/**
|
|
3509
|
+
* Lower bound, only present for number fields
|
|
3510
|
+
* @type {number}
|
|
3511
|
+
* @memberof BlueprintManifestFieldType
|
|
3512
|
+
*/
|
|
3513
|
+
'min'?: number | null;
|
|
3514
|
+
/**
|
|
3515
|
+
* Upper bound, only present for number fields
|
|
3516
|
+
* @type {number}
|
|
3517
|
+
* @memberof BlueprintManifestFieldType
|
|
3518
|
+
*/
|
|
3519
|
+
'max'?: number | null;
|
|
3520
|
+
}
|
|
3521
|
+
export declare const BlueprintManifestFieldTypeTypeEnum: {
|
|
3522
|
+
readonly STRING: "string";
|
|
3523
|
+
readonly BOOL: "bool";
|
|
3524
|
+
readonly NUMBER: "number";
|
|
3525
|
+
};
|
|
3526
|
+
export type BlueprintManifestFieldTypeTypeEnum = typeof BlueprintManifestFieldTypeTypeEnum[keyof typeof BlueprintManifestFieldTypeTypeEnum];
|
|
3527
|
+
/**
|
|
3528
|
+
* An editable form input the user fills in (from spec.variables).
|
|
3529
|
+
* @export
|
|
3530
|
+
* @interface BlueprintManifestVariableField
|
|
3531
|
+
*/
|
|
3532
|
+
export interface BlueprintManifestVariableField {
|
|
3533
|
+
/**
|
|
3534
|
+
*
|
|
3535
|
+
* @type {string}
|
|
3536
|
+
* @memberof BlueprintManifestVariableField
|
|
3537
|
+
*/
|
|
3538
|
+
'kind': BlueprintManifestVariableFieldKindEnum;
|
|
3539
|
+
/**
|
|
3540
|
+
*
|
|
3541
|
+
* @type {string}
|
|
3542
|
+
* @memberof BlueprintManifestVariableField
|
|
3543
|
+
*/
|
|
3544
|
+
'name': string;
|
|
3545
|
+
/**
|
|
3546
|
+
*
|
|
3547
|
+
* @type {BlueprintManifestFieldType}
|
|
3548
|
+
* @memberof BlueprintManifestVariableField
|
|
3549
|
+
*/
|
|
3550
|
+
'type': BlueprintManifestFieldType;
|
|
3551
|
+
/**
|
|
3552
|
+
*
|
|
3553
|
+
* @type {boolean}
|
|
3554
|
+
* @memberof BlueprintManifestVariableField
|
|
3555
|
+
*/
|
|
3556
|
+
'required': boolean;
|
|
3557
|
+
/**
|
|
3558
|
+
*
|
|
3559
|
+
* @type {boolean}
|
|
3560
|
+
* @memberof BlueprintManifestVariableField
|
|
3561
|
+
*/
|
|
3562
|
+
'is_secret': boolean;
|
|
3563
|
+
/**
|
|
3564
|
+
*
|
|
3565
|
+
* @type {string}
|
|
3566
|
+
* @memberof BlueprintManifestVariableField
|
|
3567
|
+
*/
|
|
3568
|
+
'description'?: string | null;
|
|
3569
|
+
/**
|
|
3570
|
+
*
|
|
3571
|
+
* @type {Array<string>}
|
|
3572
|
+
* @memberof BlueprintManifestVariableField
|
|
3573
|
+
*/
|
|
3574
|
+
'allowed_values'?: Array<string> | null;
|
|
3575
|
+
/**
|
|
3576
|
+
*
|
|
3577
|
+
* @type {string}
|
|
3578
|
+
* @memberof BlueprintManifestVariableField
|
|
3579
|
+
*/
|
|
3580
|
+
'default_value'?: string | null;
|
|
3581
|
+
}
|
|
3582
|
+
export declare const BlueprintManifestVariableFieldKindEnum: {
|
|
3583
|
+
readonly VARIABLE: "variable";
|
|
3584
|
+
};
|
|
3585
|
+
export type BlueprintManifestVariableFieldKindEnum = typeof BlueprintManifestVariableFieldKindEnum[keyof typeof BlueprintManifestVariableFieldKindEnum];
|
|
3466
3586
|
/**
|
|
3467
3587
|
*
|
|
3468
3588
|
* @export
|
|
@@ -12262,6 +12382,28 @@ export interface GenericObjectCurrentCost {
|
|
|
12262
12382
|
*/
|
|
12263
12383
|
'cost': Cost;
|
|
12264
12384
|
}
|
|
12385
|
+
/**
|
|
12386
|
+
*
|
|
12387
|
+
* @export
|
|
12388
|
+
* @interface GetBlueprintCatalogServiceManifest200Response
|
|
12389
|
+
*/
|
|
12390
|
+
export interface GetBlueprintCatalogServiceManifest200Response {
|
|
12391
|
+
/**
|
|
12392
|
+
*
|
|
12393
|
+
* @type {Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>}
|
|
12394
|
+
* @memberof GetBlueprintCatalogServiceManifest200Response
|
|
12395
|
+
*/
|
|
12396
|
+
'results'?: Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>;
|
|
12397
|
+
}
|
|
12398
|
+
/**
|
|
12399
|
+
* @type GetBlueprintCatalogServiceManifest200ResponseResultsInner
|
|
12400
|
+
* @export
|
|
12401
|
+
*/
|
|
12402
|
+
export type GetBlueprintCatalogServiceManifest200ResponseResultsInner = {
|
|
12403
|
+
kind: 'contextVariable';
|
|
12404
|
+
} & BlueprintManifestContextVariableField | {
|
|
12405
|
+
kind: 'variable';
|
|
12406
|
+
} & BlueprintManifestVariableField;
|
|
12265
12407
|
/**
|
|
12266
12408
|
*
|
|
12267
12409
|
* @export
|
|
@@ -27186,6 +27328,17 @@ export declare class BillingApi extends BaseAPI {
|
|
|
27186
27328
|
* @export
|
|
27187
27329
|
*/
|
|
27188
27330
|
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27331
|
+
/**
|
|
27332
|
+
* 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).
|
|
27333
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27334
|
+
* @param {string} organizationId Organization ID
|
|
27335
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27336
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27337
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27338
|
+
* @param {*} [options] Override http request option.
|
|
27339
|
+
* @throws {RequiredError}
|
|
27340
|
+
*/
|
|
27341
|
+
getBlueprintCatalogServiceManifest: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27189
27342
|
/**
|
|
27190
27343
|
*
|
|
27191
27344
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27203,6 +27356,17 @@ export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Conf
|
|
|
27203
27356
|
* @export
|
|
27204
27357
|
*/
|
|
27205
27358
|
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27359
|
+
/**
|
|
27360
|
+
* 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).
|
|
27361
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27362
|
+
* @param {string} organizationId Organization ID
|
|
27363
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27364
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27365
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27366
|
+
* @param {*} [options] Override http request option.
|
|
27367
|
+
* @throws {RequiredError}
|
|
27368
|
+
*/
|
|
27369
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBlueprintCatalogServiceManifest200Response>>;
|
|
27206
27370
|
/**
|
|
27207
27371
|
*
|
|
27208
27372
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27220,6 +27384,17 @@ export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
|
27220
27384
|
* @export
|
|
27221
27385
|
*/
|
|
27222
27386
|
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27387
|
+
/**
|
|
27388
|
+
* 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).
|
|
27389
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27390
|
+
* @param {string} organizationId Organization ID
|
|
27391
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27392
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27393
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27394
|
+
* @param {*} [options] Override http request option.
|
|
27395
|
+
* @throws {RequiredError}
|
|
27396
|
+
*/
|
|
27397
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBlueprintCatalogServiceManifest200Response>;
|
|
27223
27398
|
/**
|
|
27224
27399
|
*
|
|
27225
27400
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27239,6 +27414,18 @@ export declare const BlueprintCatalogApiFactory: (configuration?: Configuration,
|
|
|
27239
27414
|
* @extends {BaseAPI}
|
|
27240
27415
|
*/
|
|
27241
27416
|
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27417
|
+
/**
|
|
27418
|
+
* 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).
|
|
27419
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27420
|
+
* @param {string} organizationId Organization ID
|
|
27421
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27422
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27423
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27424
|
+
* @param {*} [options] Override http request option.
|
|
27425
|
+
* @throws {RequiredError}
|
|
27426
|
+
* @memberof BlueprintCatalogApi
|
|
27427
|
+
*/
|
|
27428
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBlueprintCatalogServiceManifest200Response, any, {}>>;
|
|
27242
27429
|
/**
|
|
27243
27430
|
*
|
|
27244
27431
|
* @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
|
|
@@ -56,7 +56,7 @@ exports.APIVariableScopeEnum = {
|
|
|
56
56
|
TERRAFORM: 'TERRAFORM'
|
|
57
57
|
};
|
|
58
58
|
/**
|
|
59
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
59
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
60
60
|
* @export
|
|
61
61
|
* @enum {string}
|
|
62
62
|
*/
|
|
@@ -66,7 +66,8 @@ exports.APIVariableTypeEnum = {
|
|
|
66
66
|
OVERRIDE: 'OVERRIDE',
|
|
67
67
|
BUILT_IN: 'BUILT_IN',
|
|
68
68
|
FILE: 'FILE',
|
|
69
|
-
EXTERNAL_SECRET: 'EXTERNAL_SECRET'
|
|
69
|
+
EXTERNAL_SECRET: 'EXTERNAL_SECRET',
|
|
70
|
+
FILE_EXTERNAL_SECRET: 'FILE_EXTERNAL_SECRET'
|
|
70
71
|
};
|
|
71
72
|
exports.AksInfrastructureOutputsKindEnum = {
|
|
72
73
|
AKS: 'AKS'
|
|
@@ -251,6 +252,17 @@ exports.AwsStaticCredentialsRequestTypeEnum = {
|
|
|
251
252
|
exports.AzureStaticClusterCredentialsObjectTypeEnum = {
|
|
252
253
|
AZURE: 'AZURE'
|
|
253
254
|
};
|
|
255
|
+
exports.BlueprintManifestContextVariableFieldKindEnum = {
|
|
256
|
+
CONTEXT_VARIABLE: 'contextVariable'
|
|
257
|
+
};
|
|
258
|
+
exports.BlueprintManifestFieldTypeTypeEnum = {
|
|
259
|
+
STRING: 'string',
|
|
260
|
+
BOOL: 'bool',
|
|
261
|
+
NUMBER: 'number'
|
|
262
|
+
};
|
|
263
|
+
exports.BlueprintManifestVariableFieldKindEnum = {
|
|
264
|
+
VARIABLE: 'variable'
|
|
265
|
+
};
|
|
254
266
|
/**
|
|
255
267
|
* `DOCKER` requires `dockerfile_path`
|
|
256
268
|
* @export
|
|
@@ -8842,6 +8854,52 @@ exports.BillingApi = BillingApi;
|
|
|
8842
8854
|
*/
|
|
8843
8855
|
const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8844
8856
|
return {
|
|
8857
|
+
/**
|
|
8858
|
+
* 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).
|
|
8859
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8860
|
+
* @param {string} organizationId Organization ID
|
|
8861
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8862
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8863
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8864
|
+
* @param {*} [options] Override http request option.
|
|
8865
|
+
* @throws {RequiredError}
|
|
8866
|
+
*/
|
|
8867
|
+
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 = {}) {
|
|
8868
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8869
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'organizationId', organizationId);
|
|
8870
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8871
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'provider', provider);
|
|
8872
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8873
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'serviceFamily', serviceFamily);
|
|
8874
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8875
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceManifest', 'serviceVersion', serviceVersion);
|
|
8876
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest`
|
|
8877
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8878
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8879
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8880
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8881
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8882
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
8883
|
+
let baseOptions;
|
|
8884
|
+
if (configuration) {
|
|
8885
|
+
baseOptions = configuration.baseOptions;
|
|
8886
|
+
}
|
|
8887
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8888
|
+
const localVarHeaderParameter = {};
|
|
8889
|
+
const localVarQueryParameter = {};
|
|
8890
|
+
// authentication ApiKeyAuth required
|
|
8891
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
8892
|
+
// authentication bearerAuth required
|
|
8893
|
+
// http bearer authentication required
|
|
8894
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
8895
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
8896
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8897
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8898
|
+
return {
|
|
8899
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
8900
|
+
options: localVarRequestOptions,
|
|
8901
|
+
};
|
|
8902
|
+
}),
|
|
8845
8903
|
/**
|
|
8846
8904
|
*
|
|
8847
8905
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8898,6 +8956,25 @@ exports.BlueprintCatalogApiAxiosParamCreator = BlueprintCatalogApiAxiosParamCrea
|
|
|
8898
8956
|
const BlueprintCatalogApiFp = function (configuration) {
|
|
8899
8957
|
const localVarAxiosParamCreator = (0, exports.BlueprintCatalogApiAxiosParamCreator)(configuration);
|
|
8900
8958
|
return {
|
|
8959
|
+
/**
|
|
8960
|
+
* 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).
|
|
8961
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8962
|
+
* @param {string} organizationId Organization ID
|
|
8963
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8964
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8965
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8966
|
+
* @param {*} [options] Override http request option.
|
|
8967
|
+
* @throws {RequiredError}
|
|
8968
|
+
*/
|
|
8969
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8970
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8971
|
+
var _a, _b, _c;
|
|
8972
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8973
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8974
|
+
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;
|
|
8975
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8976
|
+
});
|
|
8977
|
+
},
|
|
8901
8978
|
/**
|
|
8902
8979
|
*
|
|
8903
8980
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8927,6 +9004,19 @@ exports.BlueprintCatalogApiFp = BlueprintCatalogApiFp;
|
|
|
8927
9004
|
const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8928
9005
|
const localVarFp = (0, exports.BlueprintCatalogApiFp)(configuration);
|
|
8929
9006
|
return {
|
|
9007
|
+
/**
|
|
9008
|
+
* 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).
|
|
9009
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
9010
|
+
* @param {string} organizationId Organization ID
|
|
9011
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
9012
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
9013
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
9014
|
+
* @param {*} [options] Override http request option.
|
|
9015
|
+
* @throws {RequiredError}
|
|
9016
|
+
*/
|
|
9017
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
9018
|
+
return localVarFp.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
9019
|
+
},
|
|
8930
9020
|
/**
|
|
8931
9021
|
*
|
|
8932
9022
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8950,6 +9040,20 @@ exports.BlueprintCatalogApiFactory = BlueprintCatalogApiFactory;
|
|
|
8950
9040
|
* @extends {BaseAPI}
|
|
8951
9041
|
*/
|
|
8952
9042
|
class BlueprintCatalogApi extends base_1.BaseAPI {
|
|
9043
|
+
/**
|
|
9044
|
+
* 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).
|
|
9045
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
9046
|
+
* @param {string} organizationId Organization ID
|
|
9047
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
9048
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
9049
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
9050
|
+
* @param {*} [options] Override http request option.
|
|
9051
|
+
* @throws {RequiredError}
|
|
9052
|
+
* @memberof BlueprintCatalogApi
|
|
9053
|
+
*/
|
|
9054
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
9055
|
+
return (0, exports.BlueprintCatalogApiFp)(this.configuration).getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
9056
|
+
}
|
|
8953
9057
|
/**
|
|
8954
9058
|
*
|
|
8955
9059
|
* @summary Get the README of a blueprint catalog service
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const APIVariableScopeEnum: {
|
|
|
30
30
|
};
|
|
31
31
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
32
32
|
/**
|
|
33
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
33
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
34
34
|
* @export
|
|
35
35
|
* @enum {string}
|
|
36
36
|
*/
|
|
@@ -41,6 +41,7 @@ export declare const APIVariableTypeEnum: {
|
|
|
41
41
|
readonly BUILT_IN: "BUILT_IN";
|
|
42
42
|
readonly FILE: "FILE";
|
|
43
43
|
readonly EXTERNAL_SECRET: "EXTERNAL_SECRET";
|
|
44
|
+
readonly FILE_EXTERNAL_SECRET: "FILE_EXTERNAL_SECRET";
|
|
44
45
|
};
|
|
45
46
|
export type APIVariableTypeEnum = typeof APIVariableTypeEnum[keyof typeof APIVariableTypeEnum];
|
|
46
47
|
/**
|
|
@@ -3463,6 +3464,125 @@ export interface BlueprintMajorVersion {
|
|
|
3463
3464
|
*/
|
|
3464
3465
|
'latestTag': string;
|
|
3465
3466
|
}
|
|
3467
|
+
/**
|
|
3468
|
+
* An auto-sourced, read-only value (from spec.contextVariables); not user-editable.
|
|
3469
|
+
* @export
|
|
3470
|
+
* @interface BlueprintManifestContextVariableField
|
|
3471
|
+
*/
|
|
3472
|
+
export interface BlueprintManifestContextVariableField {
|
|
3473
|
+
/**
|
|
3474
|
+
*
|
|
3475
|
+
* @type {string}
|
|
3476
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3477
|
+
*/
|
|
3478
|
+
'kind': BlueprintManifestContextVariableFieldKindEnum;
|
|
3479
|
+
/**
|
|
3480
|
+
*
|
|
3481
|
+
* @type {string}
|
|
3482
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3483
|
+
*/
|
|
3484
|
+
'name': string;
|
|
3485
|
+
/**
|
|
3486
|
+
* Origin of the auto-sourced value (e.g. cluster.region)
|
|
3487
|
+
* @type {string}
|
|
3488
|
+
* @memberof BlueprintManifestContextVariableField
|
|
3489
|
+
*/
|
|
3490
|
+
'source'?: string | null;
|
|
3491
|
+
}
|
|
3492
|
+
export declare const BlueprintManifestContextVariableFieldKindEnum: {
|
|
3493
|
+
readonly CONTEXT_VARIABLE: "contextVariable";
|
|
3494
|
+
};
|
|
3495
|
+
export type BlueprintManifestContextVariableFieldKindEnum = typeof BlueprintManifestContextVariableFieldKindEnum[keyof typeof BlueprintManifestContextVariableFieldKindEnum];
|
|
3496
|
+
/**
|
|
3497
|
+
* Field type with its type-specific validation conditions, discriminated by \"type\".
|
|
3498
|
+
* @export
|
|
3499
|
+
* @interface BlueprintManifestFieldType
|
|
3500
|
+
*/
|
|
3501
|
+
export interface BlueprintManifestFieldType {
|
|
3502
|
+
/**
|
|
3503
|
+
*
|
|
3504
|
+
* @type {string}
|
|
3505
|
+
* @memberof BlueprintManifestFieldType
|
|
3506
|
+
*/
|
|
3507
|
+
'type': BlueprintManifestFieldTypeTypeEnum;
|
|
3508
|
+
/**
|
|
3509
|
+
* Lower bound, only present for number fields
|
|
3510
|
+
* @type {number}
|
|
3511
|
+
* @memberof BlueprintManifestFieldType
|
|
3512
|
+
*/
|
|
3513
|
+
'min'?: number | null;
|
|
3514
|
+
/**
|
|
3515
|
+
* Upper bound, only present for number fields
|
|
3516
|
+
* @type {number}
|
|
3517
|
+
* @memberof BlueprintManifestFieldType
|
|
3518
|
+
*/
|
|
3519
|
+
'max'?: number | null;
|
|
3520
|
+
}
|
|
3521
|
+
export declare const BlueprintManifestFieldTypeTypeEnum: {
|
|
3522
|
+
readonly STRING: "string";
|
|
3523
|
+
readonly BOOL: "bool";
|
|
3524
|
+
readonly NUMBER: "number";
|
|
3525
|
+
};
|
|
3526
|
+
export type BlueprintManifestFieldTypeTypeEnum = typeof BlueprintManifestFieldTypeTypeEnum[keyof typeof BlueprintManifestFieldTypeTypeEnum];
|
|
3527
|
+
/**
|
|
3528
|
+
* An editable form input the user fills in (from spec.variables).
|
|
3529
|
+
* @export
|
|
3530
|
+
* @interface BlueprintManifestVariableField
|
|
3531
|
+
*/
|
|
3532
|
+
export interface BlueprintManifestVariableField {
|
|
3533
|
+
/**
|
|
3534
|
+
*
|
|
3535
|
+
* @type {string}
|
|
3536
|
+
* @memberof BlueprintManifestVariableField
|
|
3537
|
+
*/
|
|
3538
|
+
'kind': BlueprintManifestVariableFieldKindEnum;
|
|
3539
|
+
/**
|
|
3540
|
+
*
|
|
3541
|
+
* @type {string}
|
|
3542
|
+
* @memberof BlueprintManifestVariableField
|
|
3543
|
+
*/
|
|
3544
|
+
'name': string;
|
|
3545
|
+
/**
|
|
3546
|
+
*
|
|
3547
|
+
* @type {BlueprintManifestFieldType}
|
|
3548
|
+
* @memberof BlueprintManifestVariableField
|
|
3549
|
+
*/
|
|
3550
|
+
'type': BlueprintManifestFieldType;
|
|
3551
|
+
/**
|
|
3552
|
+
*
|
|
3553
|
+
* @type {boolean}
|
|
3554
|
+
* @memberof BlueprintManifestVariableField
|
|
3555
|
+
*/
|
|
3556
|
+
'required': boolean;
|
|
3557
|
+
/**
|
|
3558
|
+
*
|
|
3559
|
+
* @type {boolean}
|
|
3560
|
+
* @memberof BlueprintManifestVariableField
|
|
3561
|
+
*/
|
|
3562
|
+
'is_secret': boolean;
|
|
3563
|
+
/**
|
|
3564
|
+
*
|
|
3565
|
+
* @type {string}
|
|
3566
|
+
* @memberof BlueprintManifestVariableField
|
|
3567
|
+
*/
|
|
3568
|
+
'description'?: string | null;
|
|
3569
|
+
/**
|
|
3570
|
+
*
|
|
3571
|
+
* @type {Array<string>}
|
|
3572
|
+
* @memberof BlueprintManifestVariableField
|
|
3573
|
+
*/
|
|
3574
|
+
'allowed_values'?: Array<string> | null;
|
|
3575
|
+
/**
|
|
3576
|
+
*
|
|
3577
|
+
* @type {string}
|
|
3578
|
+
* @memberof BlueprintManifestVariableField
|
|
3579
|
+
*/
|
|
3580
|
+
'default_value'?: string | null;
|
|
3581
|
+
}
|
|
3582
|
+
export declare const BlueprintManifestVariableFieldKindEnum: {
|
|
3583
|
+
readonly VARIABLE: "variable";
|
|
3584
|
+
};
|
|
3585
|
+
export type BlueprintManifestVariableFieldKindEnum = typeof BlueprintManifestVariableFieldKindEnum[keyof typeof BlueprintManifestVariableFieldKindEnum];
|
|
3466
3586
|
/**
|
|
3467
3587
|
*
|
|
3468
3588
|
* @export
|
|
@@ -12262,6 +12382,28 @@ export interface GenericObjectCurrentCost {
|
|
|
12262
12382
|
*/
|
|
12263
12383
|
'cost': Cost;
|
|
12264
12384
|
}
|
|
12385
|
+
/**
|
|
12386
|
+
*
|
|
12387
|
+
* @export
|
|
12388
|
+
* @interface GetBlueprintCatalogServiceManifest200Response
|
|
12389
|
+
*/
|
|
12390
|
+
export interface GetBlueprintCatalogServiceManifest200Response {
|
|
12391
|
+
/**
|
|
12392
|
+
*
|
|
12393
|
+
* @type {Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>}
|
|
12394
|
+
* @memberof GetBlueprintCatalogServiceManifest200Response
|
|
12395
|
+
*/
|
|
12396
|
+
'results'?: Array<GetBlueprintCatalogServiceManifest200ResponseResultsInner>;
|
|
12397
|
+
}
|
|
12398
|
+
/**
|
|
12399
|
+
* @type GetBlueprintCatalogServiceManifest200ResponseResultsInner
|
|
12400
|
+
* @export
|
|
12401
|
+
*/
|
|
12402
|
+
export type GetBlueprintCatalogServiceManifest200ResponseResultsInner = {
|
|
12403
|
+
kind: 'contextVariable';
|
|
12404
|
+
} & BlueprintManifestContextVariableField | {
|
|
12405
|
+
kind: 'variable';
|
|
12406
|
+
} & BlueprintManifestVariableField;
|
|
12265
12407
|
/**
|
|
12266
12408
|
*
|
|
12267
12409
|
* @export
|
|
@@ -27186,6 +27328,17 @@ export declare class BillingApi extends BaseAPI {
|
|
|
27186
27328
|
* @export
|
|
27187
27329
|
*/
|
|
27188
27330
|
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27331
|
+
/**
|
|
27332
|
+
* 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).
|
|
27333
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27334
|
+
* @param {string} organizationId Organization ID
|
|
27335
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27336
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27337
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27338
|
+
* @param {*} [options] Override http request option.
|
|
27339
|
+
* @throws {RequiredError}
|
|
27340
|
+
*/
|
|
27341
|
+
getBlueprintCatalogServiceManifest: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27189
27342
|
/**
|
|
27190
27343
|
*
|
|
27191
27344
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27203,6 +27356,17 @@ export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Conf
|
|
|
27203
27356
|
* @export
|
|
27204
27357
|
*/
|
|
27205
27358
|
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27359
|
+
/**
|
|
27360
|
+
* 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).
|
|
27361
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27362
|
+
* @param {string} organizationId Organization ID
|
|
27363
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27364
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27365
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27366
|
+
* @param {*} [options] Override http request option.
|
|
27367
|
+
* @throws {RequiredError}
|
|
27368
|
+
*/
|
|
27369
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBlueprintCatalogServiceManifest200Response>>;
|
|
27206
27370
|
/**
|
|
27207
27371
|
*
|
|
27208
27372
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27220,6 +27384,17 @@ export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
|
27220
27384
|
* @export
|
|
27221
27385
|
*/
|
|
27222
27386
|
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27387
|
+
/**
|
|
27388
|
+
* 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).
|
|
27389
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27390
|
+
* @param {string} organizationId Organization ID
|
|
27391
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27392
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27393
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27394
|
+
* @param {*} [options] Override http request option.
|
|
27395
|
+
* @throws {RequiredError}
|
|
27396
|
+
*/
|
|
27397
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBlueprintCatalogServiceManifest200Response>;
|
|
27223
27398
|
/**
|
|
27224
27399
|
*
|
|
27225
27400
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -27239,6 +27414,18 @@ export declare const BlueprintCatalogApiFactory: (configuration?: Configuration,
|
|
|
27239
27414
|
* @extends {BaseAPI}
|
|
27240
27415
|
*/
|
|
27241
27416
|
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27417
|
+
/**
|
|
27418
|
+
* 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).
|
|
27419
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
27420
|
+
* @param {string} organizationId Organization ID
|
|
27421
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27422
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27423
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27424
|
+
* @param {*} [options] Override http request option.
|
|
27425
|
+
* @throws {RequiredError}
|
|
27426
|
+
* @memberof BlueprintCatalogApi
|
|
27427
|
+
*/
|
|
27428
|
+
getBlueprintCatalogServiceManifest(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBlueprintCatalogServiceManifest200Response, any, {}>>;
|
|
27242
27429
|
/**
|
|
27243
27430
|
*
|
|
27244
27431
|
* @summary Get the README of a blueprint catalog service
|
package/dist/esm/api.js
CHANGED
|
@@ -42,7 +42,7 @@ export const APIVariableScopeEnum = {
|
|
|
42
42
|
TERRAFORM: 'TERRAFORM'
|
|
43
43
|
};
|
|
44
44
|
/**
|
|
45
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
45
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
46
46
|
* @export
|
|
47
47
|
* @enum {string}
|
|
48
48
|
*/
|
|
@@ -52,7 +52,8 @@ export const APIVariableTypeEnum = {
|
|
|
52
52
|
OVERRIDE: 'OVERRIDE',
|
|
53
53
|
BUILT_IN: 'BUILT_IN',
|
|
54
54
|
FILE: 'FILE',
|
|
55
|
-
EXTERNAL_SECRET: 'EXTERNAL_SECRET'
|
|
55
|
+
EXTERNAL_SECRET: 'EXTERNAL_SECRET',
|
|
56
|
+
FILE_EXTERNAL_SECRET: 'FILE_EXTERNAL_SECRET'
|
|
56
57
|
};
|
|
57
58
|
export const AksInfrastructureOutputsKindEnum = {
|
|
58
59
|
AKS: 'AKS'
|
|
@@ -237,6 +238,17 @@ export const AwsStaticCredentialsRequestTypeEnum = {
|
|
|
237
238
|
export const AzureStaticClusterCredentialsObjectTypeEnum = {
|
|
238
239
|
AZURE: 'AZURE'
|
|
239
240
|
};
|
|
241
|
+
export const BlueprintManifestContextVariableFieldKindEnum = {
|
|
242
|
+
CONTEXT_VARIABLE: 'contextVariable'
|
|
243
|
+
};
|
|
244
|
+
export const BlueprintManifestFieldTypeTypeEnum = {
|
|
245
|
+
STRING: 'string',
|
|
246
|
+
BOOL: 'bool',
|
|
247
|
+
NUMBER: 'number'
|
|
248
|
+
};
|
|
249
|
+
export const BlueprintManifestVariableFieldKindEnum = {
|
|
250
|
+
VARIABLE: 'variable'
|
|
251
|
+
};
|
|
240
252
|
/**
|
|
241
253
|
* `DOCKER` requires `dockerfile_path`
|
|
242
254
|
* @export
|
|
@@ -8764,6 +8776,52 @@ export class BillingApi extends BaseAPI {
|
|
|
8764
8776
|
*/
|
|
8765
8777
|
export const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8766
8778
|
return {
|
|
8779
|
+
/**
|
|
8780
|
+
* 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).
|
|
8781
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8782
|
+
* @param {string} organizationId Organization ID
|
|
8783
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8784
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8785
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8786
|
+
* @param {*} [options] Override http request option.
|
|
8787
|
+
* @throws {RequiredError}
|
|
8788
|
+
*/
|
|
8789
|
+
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 = {}) {
|
|
8790
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8791
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'organizationId', organizationId);
|
|
8792
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8793
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'provider', provider);
|
|
8794
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8795
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceFamily', serviceFamily);
|
|
8796
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8797
|
+
assertParamExists('getBlueprintCatalogServiceManifest', 'serviceVersion', serviceVersion);
|
|
8798
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest`
|
|
8799
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8800
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8801
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8802
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8803
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8804
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8805
|
+
let baseOptions;
|
|
8806
|
+
if (configuration) {
|
|
8807
|
+
baseOptions = configuration.baseOptions;
|
|
8808
|
+
}
|
|
8809
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8810
|
+
const localVarHeaderParameter = {};
|
|
8811
|
+
const localVarQueryParameter = {};
|
|
8812
|
+
// authentication ApiKeyAuth required
|
|
8813
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
8814
|
+
// authentication bearerAuth required
|
|
8815
|
+
// http bearer authentication required
|
|
8816
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8817
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8818
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8819
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8820
|
+
return {
|
|
8821
|
+
url: toPathString(localVarUrlObj),
|
|
8822
|
+
options: localVarRequestOptions,
|
|
8823
|
+
};
|
|
8824
|
+
}),
|
|
8767
8825
|
/**
|
|
8768
8826
|
*
|
|
8769
8827
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8819,6 +8877,25 @@ export const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
|
8819
8877
|
export const BlueprintCatalogApiFp = function (configuration) {
|
|
8820
8878
|
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration);
|
|
8821
8879
|
return {
|
|
8880
|
+
/**
|
|
8881
|
+
* 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).
|
|
8882
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8883
|
+
* @param {string} organizationId Organization ID
|
|
8884
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8885
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8886
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8887
|
+
* @param {*} [options] Override http request option.
|
|
8888
|
+
* @throws {RequiredError}
|
|
8889
|
+
*/
|
|
8890
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8891
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8892
|
+
var _a, _b, _c;
|
|
8893
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8894
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8895
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceManifest']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8896
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8897
|
+
});
|
|
8898
|
+
},
|
|
8822
8899
|
/**
|
|
8823
8900
|
*
|
|
8824
8901
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8847,6 +8924,19 @@ export const BlueprintCatalogApiFp = function (configuration) {
|
|
|
8847
8924
|
export const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8848
8925
|
const localVarFp = BlueprintCatalogApiFp(configuration);
|
|
8849
8926
|
return {
|
|
8927
|
+
/**
|
|
8928
|
+
* 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).
|
|
8929
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8930
|
+
* @param {string} organizationId Organization ID
|
|
8931
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8932
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8933
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8934
|
+
* @param {*} [options] Override http request option.
|
|
8935
|
+
* @throws {RequiredError}
|
|
8936
|
+
*/
|
|
8937
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8938
|
+
return localVarFp.getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
8939
|
+
},
|
|
8850
8940
|
/**
|
|
8851
8941
|
*
|
|
8852
8942
|
* @summary Get the README of a blueprint catalog service
|
|
@@ -8869,6 +8959,20 @@ export const BlueprintCatalogApiFactory = function (configuration, basePath, axi
|
|
|
8869
8959
|
* @extends {BaseAPI}
|
|
8870
8960
|
*/
|
|
8871
8961
|
export class BlueprintCatalogApi extends BaseAPI {
|
|
8962
|
+
/**
|
|
8963
|
+
* 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).
|
|
8964
|
+
* @summary Get the input fields to display for a blueprint catalog service
|
|
8965
|
+
* @param {string} organizationId Organization ID
|
|
8966
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8967
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8968
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8969
|
+
* @param {*} [options] Override http request option.
|
|
8970
|
+
* @throws {RequiredError}
|
|
8971
|
+
* @memberof BlueprintCatalogApi
|
|
8972
|
+
*/
|
|
8973
|
+
getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8974
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceManifest(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
8975
|
+
}
|
|
8872
8976
|
/**
|
|
8873
8977
|
*
|
|
8874
8978
|
* @summary Get the README of a blueprint catalog service
|