qovery-typescript-axios 1.1.898 → 1.1.899
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +136 -0
- package/dist/api.d.ts +71 -0
- package/dist/api.js +137 -7
- package/dist/esm/api.d.ts +71 -0
- package/dist/esm/api.js +126 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -32024,6 +32024,142 @@ export class BillingApi extends BaseAPI {
|
|
|
32024
32024
|
|
|
32025
32025
|
|
|
32026
32026
|
|
|
32027
|
+
/**
|
|
32028
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
32029
|
+
* @export
|
|
32030
|
+
*/
|
|
32031
|
+
export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32032
|
+
return {
|
|
32033
|
+
/**
|
|
32034
|
+
*
|
|
32035
|
+
* @summary Get the README of a blueprint catalog service
|
|
32036
|
+
* @param {string} organizationId Organization ID
|
|
32037
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32038
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32039
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32040
|
+
* @param {*} [options] Override http request option.
|
|
32041
|
+
* @throws {RequiredError}
|
|
32042
|
+
*/
|
|
32043
|
+
getBlueprintCatalogServiceReadme: async (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32044
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
32045
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'organizationId', organizationId)
|
|
32046
|
+
// verify required parameter 'provider' is not null or undefined
|
|
32047
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'provider', provider)
|
|
32048
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
32049
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily)
|
|
32050
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
32051
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion)
|
|
32052
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
32053
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
32054
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
32055
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
32056
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
32057
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32058
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32059
|
+
let baseOptions;
|
|
32060
|
+
if (configuration) {
|
|
32061
|
+
baseOptions = configuration.baseOptions;
|
|
32062
|
+
}
|
|
32063
|
+
|
|
32064
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
32065
|
+
const localVarHeaderParameter = {} as any;
|
|
32066
|
+
const localVarQueryParameter = {} as any;
|
|
32067
|
+
|
|
32068
|
+
// authentication ApiKeyAuth required
|
|
32069
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
32070
|
+
|
|
32071
|
+
// authentication bearerAuth required
|
|
32072
|
+
// http bearer authentication required
|
|
32073
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32074
|
+
|
|
32075
|
+
|
|
32076
|
+
|
|
32077
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32078
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32079
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32080
|
+
|
|
32081
|
+
return {
|
|
32082
|
+
url: toPathString(localVarUrlObj),
|
|
32083
|
+
options: localVarRequestOptions,
|
|
32084
|
+
};
|
|
32085
|
+
},
|
|
32086
|
+
}
|
|
32087
|
+
};
|
|
32088
|
+
|
|
32089
|
+
/**
|
|
32090
|
+
* BlueprintCatalogApi - functional programming interface
|
|
32091
|
+
* @export
|
|
32092
|
+
*/
|
|
32093
|
+
export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
32094
|
+
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration)
|
|
32095
|
+
return {
|
|
32096
|
+
/**
|
|
32097
|
+
*
|
|
32098
|
+
* @summary Get the README of a blueprint catalog service
|
|
32099
|
+
* @param {string} organizationId Organization ID
|
|
32100
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32101
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32102
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32103
|
+
* @param {*} [options] Override http request option.
|
|
32104
|
+
* @throws {RequiredError}
|
|
32105
|
+
*/
|
|
32106
|
+
async getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
32107
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
32108
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32109
|
+
const localVarOperationServerBasePath = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']?.[localVarOperationServerIndex]?.url;
|
|
32110
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32111
|
+
},
|
|
32112
|
+
}
|
|
32113
|
+
};
|
|
32114
|
+
|
|
32115
|
+
/**
|
|
32116
|
+
* BlueprintCatalogApi - factory interface
|
|
32117
|
+
* @export
|
|
32118
|
+
*/
|
|
32119
|
+
export const BlueprintCatalogApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32120
|
+
const localVarFp = BlueprintCatalogApiFp(configuration)
|
|
32121
|
+
return {
|
|
32122
|
+
/**
|
|
32123
|
+
*
|
|
32124
|
+
* @summary Get the README of a blueprint catalog service
|
|
32125
|
+
* @param {string} organizationId Organization ID
|
|
32126
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32127
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32128
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32129
|
+
* @param {*} [options] Override http request option.
|
|
32130
|
+
* @throws {RequiredError}
|
|
32131
|
+
*/
|
|
32132
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string> {
|
|
32133
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
32134
|
+
},
|
|
32135
|
+
};
|
|
32136
|
+
};
|
|
32137
|
+
|
|
32138
|
+
/**
|
|
32139
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
32140
|
+
* @export
|
|
32141
|
+
* @class BlueprintCatalogApi
|
|
32142
|
+
* @extends {BaseAPI}
|
|
32143
|
+
*/
|
|
32144
|
+
export class BlueprintCatalogApi extends BaseAPI {
|
|
32145
|
+
/**
|
|
32146
|
+
*
|
|
32147
|
+
* @summary Get the README of a blueprint catalog service
|
|
32148
|
+
* @param {string} organizationId Organization ID
|
|
32149
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32150
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32151
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32152
|
+
* @param {*} [options] Override http request option.
|
|
32153
|
+
* @throws {RequiredError}
|
|
32154
|
+
* @memberof BlueprintCatalogApi
|
|
32155
|
+
*/
|
|
32156
|
+
public getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) {
|
|
32157
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
32158
|
+
}
|
|
32159
|
+
}
|
|
32160
|
+
|
|
32161
|
+
|
|
32162
|
+
|
|
32027
32163
|
/**
|
|
32028
32164
|
* BlueprintMainCallsApi - axios parameter creator
|
|
32029
32165
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -26988,6 +26988,77 @@ export declare class BillingApi extends BaseAPI {
|
|
|
26988
26988
|
*/
|
|
26989
26989
|
organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
26990
26990
|
}
|
|
26991
|
+
/**
|
|
26992
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
26993
|
+
* @export
|
|
26994
|
+
*/
|
|
26995
|
+
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26996
|
+
/**
|
|
26997
|
+
*
|
|
26998
|
+
* @summary Get the README of a blueprint catalog service
|
|
26999
|
+
* @param {string} organizationId Organization ID
|
|
27000
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27001
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27002
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27003
|
+
* @param {*} [options] Override http request option.
|
|
27004
|
+
* @throws {RequiredError}
|
|
27005
|
+
*/
|
|
27006
|
+
getBlueprintCatalogServiceReadme: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27007
|
+
};
|
|
27008
|
+
/**
|
|
27009
|
+
* BlueprintCatalogApi - functional programming interface
|
|
27010
|
+
* @export
|
|
27011
|
+
*/
|
|
27012
|
+
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27013
|
+
/**
|
|
27014
|
+
*
|
|
27015
|
+
* @summary Get the README of a blueprint catalog service
|
|
27016
|
+
* @param {string} organizationId Organization ID
|
|
27017
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27018
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27019
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27020
|
+
* @param {*} [options] Override http request option.
|
|
27021
|
+
* @throws {RequiredError}
|
|
27022
|
+
*/
|
|
27023
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
27024
|
+
};
|
|
27025
|
+
/**
|
|
27026
|
+
* BlueprintCatalogApi - factory interface
|
|
27027
|
+
* @export
|
|
27028
|
+
*/
|
|
27029
|
+
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27030
|
+
/**
|
|
27031
|
+
*
|
|
27032
|
+
* @summary Get the README of a blueprint catalog service
|
|
27033
|
+
* @param {string} organizationId Organization ID
|
|
27034
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27035
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27036
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27037
|
+
* @param {*} [options] Override http request option.
|
|
27038
|
+
* @throws {RequiredError}
|
|
27039
|
+
*/
|
|
27040
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
27041
|
+
};
|
|
27042
|
+
/**
|
|
27043
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
27044
|
+
* @export
|
|
27045
|
+
* @class BlueprintCatalogApi
|
|
27046
|
+
* @extends {BaseAPI}
|
|
27047
|
+
*/
|
|
27048
|
+
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27049
|
+
/**
|
|
27050
|
+
*
|
|
27051
|
+
* @summary Get the README of a blueprint catalog service
|
|
27052
|
+
* @param {string} organizationId Organization ID
|
|
27053
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27054
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27055
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27056
|
+
* @param {*} [options] Override http request option.
|
|
27057
|
+
* @throws {RequiredError}
|
|
27058
|
+
* @memberof BlueprintCatalogApi
|
|
27059
|
+
*/
|
|
27060
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
27061
|
+
}
|
|
26991
27062
|
/**
|
|
26992
27063
|
* BlueprintMainCallsApi - axios parameter creator
|
|
26993
27064
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -26,13 +26,13 @@ exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum
|
|
|
26
26
|
exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = 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.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = void 0;
|
|
27
27
|
exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = 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 = void 0;
|
|
28
28
|
exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = 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 = void 0;
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = 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 = void 0;
|
|
29
|
+
exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = 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 = void 0;
|
|
30
|
+
exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = 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 = void 0;
|
|
31
|
+
exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = 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 = void 0;
|
|
32
|
+
exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = 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 = void 0;
|
|
33
|
+
exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = 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 = void 0;
|
|
34
|
+
exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = 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 = void 0;
|
|
35
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = 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 = void 0;
|
|
36
36
|
const axios_1 = require("axios");
|
|
37
37
|
// Some imports not used depending on template conditions
|
|
38
38
|
// @ts-ignore
|
|
@@ -8829,6 +8829,136 @@ class BillingApi extends base_1.BaseAPI {
|
|
|
8829
8829
|
}
|
|
8830
8830
|
}
|
|
8831
8831
|
exports.BillingApi = BillingApi;
|
|
8832
|
+
/**
|
|
8833
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
8834
|
+
* @export
|
|
8835
|
+
*/
|
|
8836
|
+
const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8837
|
+
return {
|
|
8838
|
+
/**
|
|
8839
|
+
*
|
|
8840
|
+
* @summary Get the README of a blueprint catalog service
|
|
8841
|
+
* @param {string} organizationId Organization ID
|
|
8842
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8843
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8844
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8845
|
+
* @param {*} [options] Override http request option.
|
|
8846
|
+
* @throws {RequiredError}
|
|
8847
|
+
*/
|
|
8848
|
+
getBlueprintCatalogServiceReadme: (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 = {}) {
|
|
8849
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8850
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'organizationId', organizationId);
|
|
8851
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8852
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'provider', provider);
|
|
8853
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8854
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily);
|
|
8855
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8856
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion);
|
|
8857
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
8858
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8859
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8860
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8861
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8862
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8863
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
8864
|
+
let baseOptions;
|
|
8865
|
+
if (configuration) {
|
|
8866
|
+
baseOptions = configuration.baseOptions;
|
|
8867
|
+
}
|
|
8868
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8869
|
+
const localVarHeaderParameter = {};
|
|
8870
|
+
const localVarQueryParameter = {};
|
|
8871
|
+
// authentication ApiKeyAuth required
|
|
8872
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
8873
|
+
// authentication bearerAuth required
|
|
8874
|
+
// http bearer authentication required
|
|
8875
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
8876
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
8877
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8878
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8879
|
+
return {
|
|
8880
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
8881
|
+
options: localVarRequestOptions,
|
|
8882
|
+
};
|
|
8883
|
+
}),
|
|
8884
|
+
};
|
|
8885
|
+
};
|
|
8886
|
+
exports.BlueprintCatalogApiAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator;
|
|
8887
|
+
/**
|
|
8888
|
+
* BlueprintCatalogApi - functional programming interface
|
|
8889
|
+
* @export
|
|
8890
|
+
*/
|
|
8891
|
+
const BlueprintCatalogApiFp = function (configuration) {
|
|
8892
|
+
const localVarAxiosParamCreator = (0, exports.BlueprintCatalogApiAxiosParamCreator)(configuration);
|
|
8893
|
+
return {
|
|
8894
|
+
/**
|
|
8895
|
+
*
|
|
8896
|
+
* @summary Get the README of a blueprint catalog service
|
|
8897
|
+
* @param {string} organizationId Organization ID
|
|
8898
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8899
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8900
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8901
|
+
* @param {*} [options] Override http request option.
|
|
8902
|
+
* @throws {RequiredError}
|
|
8903
|
+
*/
|
|
8904
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8905
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8906
|
+
var _a, _b, _c;
|
|
8907
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8908
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8909
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8910
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8911
|
+
});
|
|
8912
|
+
},
|
|
8913
|
+
};
|
|
8914
|
+
};
|
|
8915
|
+
exports.BlueprintCatalogApiFp = BlueprintCatalogApiFp;
|
|
8916
|
+
/**
|
|
8917
|
+
* BlueprintCatalogApi - factory interface
|
|
8918
|
+
* @export
|
|
8919
|
+
*/
|
|
8920
|
+
const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8921
|
+
const localVarFp = (0, exports.BlueprintCatalogApiFp)(configuration);
|
|
8922
|
+
return {
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
* @summary Get the README of a blueprint catalog service
|
|
8926
|
+
* @param {string} organizationId Organization ID
|
|
8927
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8928
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8929
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8930
|
+
* @param {*} [options] Override http request option.
|
|
8931
|
+
* @throws {RequiredError}
|
|
8932
|
+
*/
|
|
8933
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8934
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
8935
|
+
},
|
|
8936
|
+
};
|
|
8937
|
+
};
|
|
8938
|
+
exports.BlueprintCatalogApiFactory = BlueprintCatalogApiFactory;
|
|
8939
|
+
/**
|
|
8940
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
8941
|
+
* @export
|
|
8942
|
+
* @class BlueprintCatalogApi
|
|
8943
|
+
* @extends {BaseAPI}
|
|
8944
|
+
*/
|
|
8945
|
+
class BlueprintCatalogApi extends base_1.BaseAPI {
|
|
8946
|
+
/**
|
|
8947
|
+
*
|
|
8948
|
+
* @summary Get the README of a blueprint catalog service
|
|
8949
|
+
* @param {string} organizationId Organization ID
|
|
8950
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8951
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8952
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8953
|
+
* @param {*} [options] Override http request option.
|
|
8954
|
+
* @throws {RequiredError}
|
|
8955
|
+
* @memberof BlueprintCatalogApi
|
|
8956
|
+
*/
|
|
8957
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8958
|
+
return (0, exports.BlueprintCatalogApiFp)(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
8959
|
+
}
|
|
8960
|
+
}
|
|
8961
|
+
exports.BlueprintCatalogApi = BlueprintCatalogApi;
|
|
8832
8962
|
/**
|
|
8833
8963
|
* BlueprintMainCallsApi - axios parameter creator
|
|
8834
8964
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -26988,6 +26988,77 @@ export declare class BillingApi extends BaseAPI {
|
|
|
26988
26988
|
*/
|
|
26989
26989
|
organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
26990
26990
|
}
|
|
26991
|
+
/**
|
|
26992
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
26993
|
+
* @export
|
|
26994
|
+
*/
|
|
26995
|
+
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26996
|
+
/**
|
|
26997
|
+
*
|
|
26998
|
+
* @summary Get the README of a blueprint catalog service
|
|
26999
|
+
* @param {string} organizationId Organization ID
|
|
27000
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27001
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27002
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27003
|
+
* @param {*} [options] Override http request option.
|
|
27004
|
+
* @throws {RequiredError}
|
|
27005
|
+
*/
|
|
27006
|
+
getBlueprintCatalogServiceReadme: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27007
|
+
};
|
|
27008
|
+
/**
|
|
27009
|
+
* BlueprintCatalogApi - functional programming interface
|
|
27010
|
+
* @export
|
|
27011
|
+
*/
|
|
27012
|
+
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27013
|
+
/**
|
|
27014
|
+
*
|
|
27015
|
+
* @summary Get the README of a blueprint catalog service
|
|
27016
|
+
* @param {string} organizationId Organization ID
|
|
27017
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27018
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27019
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27020
|
+
* @param {*} [options] Override http request option.
|
|
27021
|
+
* @throws {RequiredError}
|
|
27022
|
+
*/
|
|
27023
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
27024
|
+
};
|
|
27025
|
+
/**
|
|
27026
|
+
* BlueprintCatalogApi - factory interface
|
|
27027
|
+
* @export
|
|
27028
|
+
*/
|
|
27029
|
+
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27030
|
+
/**
|
|
27031
|
+
*
|
|
27032
|
+
* @summary Get the README of a blueprint catalog service
|
|
27033
|
+
* @param {string} organizationId Organization ID
|
|
27034
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27035
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27036
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27037
|
+
* @param {*} [options] Override http request option.
|
|
27038
|
+
* @throws {RequiredError}
|
|
27039
|
+
*/
|
|
27040
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
27041
|
+
};
|
|
27042
|
+
/**
|
|
27043
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
27044
|
+
* @export
|
|
27045
|
+
* @class BlueprintCatalogApi
|
|
27046
|
+
* @extends {BaseAPI}
|
|
27047
|
+
*/
|
|
27048
|
+
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27049
|
+
/**
|
|
27050
|
+
*
|
|
27051
|
+
* @summary Get the README of a blueprint catalog service
|
|
27052
|
+
* @param {string} organizationId Organization ID
|
|
27053
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27054
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27055
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27056
|
+
* @param {*} [options] Override http request option.
|
|
27057
|
+
* @throws {RequiredError}
|
|
27058
|
+
* @memberof BlueprintCatalogApi
|
|
27059
|
+
*/
|
|
27060
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
27061
|
+
}
|
|
26991
27062
|
/**
|
|
26992
27063
|
* BlueprintMainCallsApi - axios parameter creator
|
|
26993
27064
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -8752,6 +8752,132 @@ export class BillingApi extends BaseAPI {
|
|
|
8752
8752
|
return BillingApiFp(this.configuration).organizationDownloadAllInvoices(organizationId, options).then((request) => request(this.axios, this.basePath));
|
|
8753
8753
|
}
|
|
8754
8754
|
}
|
|
8755
|
+
/**
|
|
8756
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
8757
|
+
* @export
|
|
8758
|
+
*/
|
|
8759
|
+
export const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8760
|
+
return {
|
|
8761
|
+
/**
|
|
8762
|
+
*
|
|
8763
|
+
* @summary Get the README of a blueprint catalog service
|
|
8764
|
+
* @param {string} organizationId Organization ID
|
|
8765
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8766
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8767
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8768
|
+
* @param {*} [options] Override http request option.
|
|
8769
|
+
* @throws {RequiredError}
|
|
8770
|
+
*/
|
|
8771
|
+
getBlueprintCatalogServiceReadme: (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 = {}) {
|
|
8772
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8773
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'organizationId', organizationId);
|
|
8774
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8775
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'provider', provider);
|
|
8776
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8777
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily);
|
|
8778
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8779
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion);
|
|
8780
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
8781
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8782
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8783
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8784
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8785
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8786
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8787
|
+
let baseOptions;
|
|
8788
|
+
if (configuration) {
|
|
8789
|
+
baseOptions = configuration.baseOptions;
|
|
8790
|
+
}
|
|
8791
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8792
|
+
const localVarHeaderParameter = {};
|
|
8793
|
+
const localVarQueryParameter = {};
|
|
8794
|
+
// authentication ApiKeyAuth required
|
|
8795
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
8796
|
+
// authentication bearerAuth required
|
|
8797
|
+
// http bearer authentication required
|
|
8798
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8799
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8800
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8801
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8802
|
+
return {
|
|
8803
|
+
url: toPathString(localVarUrlObj),
|
|
8804
|
+
options: localVarRequestOptions,
|
|
8805
|
+
};
|
|
8806
|
+
}),
|
|
8807
|
+
};
|
|
8808
|
+
};
|
|
8809
|
+
/**
|
|
8810
|
+
* BlueprintCatalogApi - functional programming interface
|
|
8811
|
+
* @export
|
|
8812
|
+
*/
|
|
8813
|
+
export const BlueprintCatalogApiFp = function (configuration) {
|
|
8814
|
+
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration);
|
|
8815
|
+
return {
|
|
8816
|
+
/**
|
|
8817
|
+
*
|
|
8818
|
+
* @summary Get the README of a blueprint catalog service
|
|
8819
|
+
* @param {string} organizationId Organization ID
|
|
8820
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8821
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8822
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8823
|
+
* @param {*} [options] Override http request option.
|
|
8824
|
+
* @throws {RequiredError}
|
|
8825
|
+
*/
|
|
8826
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8827
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8828
|
+
var _a, _b, _c;
|
|
8829
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8830
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8831
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8832
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8833
|
+
});
|
|
8834
|
+
},
|
|
8835
|
+
};
|
|
8836
|
+
};
|
|
8837
|
+
/**
|
|
8838
|
+
* BlueprintCatalogApi - factory interface
|
|
8839
|
+
* @export
|
|
8840
|
+
*/
|
|
8841
|
+
export const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8842
|
+
const localVarFp = BlueprintCatalogApiFp(configuration);
|
|
8843
|
+
return {
|
|
8844
|
+
/**
|
|
8845
|
+
*
|
|
8846
|
+
* @summary Get the README of a blueprint catalog service
|
|
8847
|
+
* @param {string} organizationId Organization ID
|
|
8848
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8849
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8850
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8851
|
+
* @param {*} [options] Override http request option.
|
|
8852
|
+
* @throws {RequiredError}
|
|
8853
|
+
*/
|
|
8854
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8855
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
8856
|
+
},
|
|
8857
|
+
};
|
|
8858
|
+
};
|
|
8859
|
+
/**
|
|
8860
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
8861
|
+
* @export
|
|
8862
|
+
* @class BlueprintCatalogApi
|
|
8863
|
+
* @extends {BaseAPI}
|
|
8864
|
+
*/
|
|
8865
|
+
export class BlueprintCatalogApi extends BaseAPI {
|
|
8866
|
+
/**
|
|
8867
|
+
*
|
|
8868
|
+
* @summary Get the README of a blueprint catalog service
|
|
8869
|
+
* @param {string} organizationId Organization ID
|
|
8870
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8871
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8872
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8873
|
+
* @param {*} [options] Override http request option.
|
|
8874
|
+
* @throws {RequiredError}
|
|
8875
|
+
* @memberof BlueprintCatalogApi
|
|
8876
|
+
*/
|
|
8877
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8878
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
8879
|
+
}
|
|
8880
|
+
}
|
|
8755
8881
|
/**
|
|
8756
8882
|
* BlueprintMainCallsApi - axios parameter creator
|
|
8757
8883
|
* @export
|