qovery-typescript-axios 1.1.913 → 1.1.914
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 +69 -6
- package/dist/api.d.ts +65 -10
- package/dist/api.js +20 -12
- package/dist/esm/api.d.ts +65 -10
- package/dist/esm/api.js +8 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3505,11 +3505,11 @@ export interface BlueprintCreateRequest {
|
|
|
3505
3505
|
*/
|
|
3506
3506
|
'variables'?: Array<BlueprintVariableRequest>;
|
|
3507
3507
|
/**
|
|
3508
|
-
*
|
|
3509
|
-
* @type {
|
|
3508
|
+
*
|
|
3509
|
+
* @type {BlueprintSpecOverrides}
|
|
3510
3510
|
* @memberof BlueprintCreateRequest
|
|
3511
3511
|
*/
|
|
3512
|
-
'spec_overrides'?:
|
|
3512
|
+
'spec_overrides'?: BlueprintSpecOverrides;
|
|
3513
3513
|
}
|
|
3514
3514
|
/**
|
|
3515
3515
|
*
|
|
@@ -4113,6 +4113,69 @@ export interface BlueprintResponse {
|
|
|
4113
4113
|
*/
|
|
4114
4114
|
'environment_id': string;
|
|
4115
4115
|
}
|
|
4116
|
+
/**
|
|
4117
|
+
* Engine-level overrides applied on top of the blueprint manifest. Only fields whose corresponding manifest field is `overridable: true` are accepted; submitting a non-overridable field returns 422. **Terraform / OpenTofu blueprints** `engine_version` is **required** on create. The value must be one of the versions listed in `spec.engine.terraform.allowedValues` (or `opentofu.allowedValues`) in the manifest. **Helm blueprints** `engine_version`, `credentials`, and `backend` are ignored. Only `timeout` and the resource fields apply.
|
|
4118
|
+
* @export
|
|
4119
|
+
* @interface BlueprintSpecOverrides
|
|
4120
|
+
*/
|
|
4121
|
+
export interface BlueprintSpecOverrides {
|
|
4122
|
+
/**
|
|
4123
|
+
* Terraform or OpenTofu version to use for the apply job. Required when the blueprint engine type is `terraform` or `opentofu`. Must be one of the versions in the manifest\'s `allowedValues` list.
|
|
4124
|
+
* @type {string}
|
|
4125
|
+
* @memberof BlueprintSpecOverrides
|
|
4126
|
+
*/
|
|
4127
|
+
'engine_version'?: string;
|
|
4128
|
+
/**
|
|
4129
|
+
* How the apply job authenticates against the cloud provider. `cluster` reuses the cluster\'s cloud credentials (default). `env` expects the user to supply provider credentials as environment variables on the service.
|
|
4130
|
+
* @type {string}
|
|
4131
|
+
* @memberof BlueprintSpecOverrides
|
|
4132
|
+
*/
|
|
4133
|
+
'credentials'?: BlueprintSpecOverridesCredentialsEnum;
|
|
4134
|
+
/**
|
|
4135
|
+
* Where the Terraform state is stored. `qovery` stores state in a Kubernetes secret managed by Qovery (default). `user_provided` delegates to a user-controlled remote backend declared in the manifest\'s `backend.user_provided` block.
|
|
4136
|
+
* @type {string}
|
|
4137
|
+
* @memberof BlueprintSpecOverrides
|
|
4138
|
+
*/
|
|
4139
|
+
'backend'?: BlueprintSpecOverridesBackendEnum;
|
|
4140
|
+
/**
|
|
4141
|
+
* Maximum duration in seconds for a single apply job before it is marked as timed out. Overrides the manifest\'s `spec.engine.timeout`.
|
|
4142
|
+
* @type {number}
|
|
4143
|
+
* @memberof BlueprintSpecOverrides
|
|
4144
|
+
*/
|
|
4145
|
+
'timeout'?: number;
|
|
4146
|
+
/**
|
|
4147
|
+
* CPU request/limit for the apply job pod (Kubernetes-style, e.g. `500m`). Overrides `spec.engine.resources.cpu` in the manifest.
|
|
4148
|
+
* @type {string}
|
|
4149
|
+
* @memberof BlueprintSpecOverrides
|
|
4150
|
+
*/
|
|
4151
|
+
'cpu'?: string;
|
|
4152
|
+
/**
|
|
4153
|
+
* Memory request/limit for the apply job pod (e.g. `512Mi`, `1Gi`). Overrides `spec.engine.resources.ram` in the manifest.
|
|
4154
|
+
* @type {string}
|
|
4155
|
+
* @memberof BlueprintSpecOverrides
|
|
4156
|
+
*/
|
|
4157
|
+
'ram'?: string;
|
|
4158
|
+
/**
|
|
4159
|
+
* Ephemeral storage for the apply job pod — used for state files and provider plugins (e.g. `1Gi`). Overrides `spec.engine.resources.storage` in the manifest.
|
|
4160
|
+
* @type {string}
|
|
4161
|
+
* @memberof BlueprintSpecOverrides
|
|
4162
|
+
*/
|
|
4163
|
+
'storage'?: string;
|
|
4164
|
+
}
|
|
4165
|
+
|
|
4166
|
+
export const BlueprintSpecOverridesCredentialsEnum = {
|
|
4167
|
+
CLUSTER: 'cluster',
|
|
4168
|
+
ENV: 'env'
|
|
4169
|
+
} as const;
|
|
4170
|
+
|
|
4171
|
+
export type BlueprintSpecOverridesCredentialsEnum = typeof BlueprintSpecOverridesCredentialsEnum[keyof typeof BlueprintSpecOverridesCredentialsEnum];
|
|
4172
|
+
export const BlueprintSpecOverridesBackendEnum = {
|
|
4173
|
+
QOVERY: 'qovery',
|
|
4174
|
+
USER_PROVIDED: 'user_provided'
|
|
4175
|
+
} as const;
|
|
4176
|
+
|
|
4177
|
+
export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBackendEnum[keyof typeof BlueprintSpecOverridesBackendEnum];
|
|
4178
|
+
|
|
4116
4179
|
/**
|
|
4117
4180
|
* Catalog engine-block deltas between the current and latest blueprint tag.
|
|
4118
4181
|
* @export
|
|
@@ -4229,11 +4292,11 @@ export interface BlueprintUpdateRequest {
|
|
|
4229
4292
|
*/
|
|
4230
4293
|
'variables'?: { [key: string]: BlueprintUpdateVariableValue; };
|
|
4231
4294
|
/**
|
|
4232
|
-
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides
|
|
4233
|
-
* @type {
|
|
4295
|
+
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides (see `BlueprintSpecOverrides` for the list of valid fields). A non-null field value upserts the override; a null value removes it. Pass null or omit the field entirely to leave all existing overrides unchanged.
|
|
4296
|
+
* @type {BlueprintSpecOverrides}
|
|
4234
4297
|
* @memberof BlueprintUpdateRequest
|
|
4235
4298
|
*/
|
|
4236
|
-
'spec_overrides'?:
|
|
4299
|
+
'spec_overrides'?: BlueprintSpecOverrides | null;
|
|
4237
4300
|
}
|
|
4238
4301
|
/**
|
|
4239
4302
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -3382,13 +3382,11 @@ export interface BlueprintCreateRequest {
|
|
|
3382
3382
|
*/
|
|
3383
3383
|
'variables'?: Array<BlueprintVariableRequest>;
|
|
3384
3384
|
/**
|
|
3385
|
-
*
|
|
3386
|
-
* @type {
|
|
3385
|
+
*
|
|
3386
|
+
* @type {BlueprintSpecOverrides}
|
|
3387
3387
|
* @memberof BlueprintCreateRequest
|
|
3388
3388
|
*/
|
|
3389
|
-
'spec_overrides'?:
|
|
3390
|
-
[key: string]: any;
|
|
3391
|
-
} | null;
|
|
3389
|
+
'spec_overrides'?: BlueprintSpecOverrides;
|
|
3392
3390
|
}
|
|
3393
3391
|
/**
|
|
3394
3392
|
*
|
|
@@ -3984,6 +3982,65 @@ export interface BlueprintResponse {
|
|
|
3984
3982
|
*/
|
|
3985
3983
|
'environment_id': string;
|
|
3986
3984
|
}
|
|
3985
|
+
/**
|
|
3986
|
+
* Engine-level overrides applied on top of the blueprint manifest. Only fields whose corresponding manifest field is `overridable: true` are accepted; submitting a non-overridable field returns 422. **Terraform / OpenTofu blueprints** `engine_version` is **required** on create. The value must be one of the versions listed in `spec.engine.terraform.allowedValues` (or `opentofu.allowedValues`) in the manifest. **Helm blueprints** `engine_version`, `credentials`, and `backend` are ignored. Only `timeout` and the resource fields apply.
|
|
3987
|
+
* @export
|
|
3988
|
+
* @interface BlueprintSpecOverrides
|
|
3989
|
+
*/
|
|
3990
|
+
export interface BlueprintSpecOverrides {
|
|
3991
|
+
/**
|
|
3992
|
+
* Terraform or OpenTofu version to use for the apply job. Required when the blueprint engine type is `terraform` or `opentofu`. Must be one of the versions in the manifest\'s `allowedValues` list.
|
|
3993
|
+
* @type {string}
|
|
3994
|
+
* @memberof BlueprintSpecOverrides
|
|
3995
|
+
*/
|
|
3996
|
+
'engine_version'?: string;
|
|
3997
|
+
/**
|
|
3998
|
+
* How the apply job authenticates against the cloud provider. `cluster` reuses the cluster\'s cloud credentials (default). `env` expects the user to supply provider credentials as environment variables on the service.
|
|
3999
|
+
* @type {string}
|
|
4000
|
+
* @memberof BlueprintSpecOverrides
|
|
4001
|
+
*/
|
|
4002
|
+
'credentials'?: BlueprintSpecOverridesCredentialsEnum;
|
|
4003
|
+
/**
|
|
4004
|
+
* Where the Terraform state is stored. `qovery` stores state in a Kubernetes secret managed by Qovery (default). `user_provided` delegates to a user-controlled remote backend declared in the manifest\'s `backend.user_provided` block.
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof BlueprintSpecOverrides
|
|
4007
|
+
*/
|
|
4008
|
+
'backend'?: BlueprintSpecOverridesBackendEnum;
|
|
4009
|
+
/**
|
|
4010
|
+
* Maximum duration in seconds for a single apply job before it is marked as timed out. Overrides the manifest\'s `spec.engine.timeout`.
|
|
4011
|
+
* @type {number}
|
|
4012
|
+
* @memberof BlueprintSpecOverrides
|
|
4013
|
+
*/
|
|
4014
|
+
'timeout'?: number;
|
|
4015
|
+
/**
|
|
4016
|
+
* CPU request/limit for the apply job pod (Kubernetes-style, e.g. `500m`). Overrides `spec.engine.resources.cpu` in the manifest.
|
|
4017
|
+
* @type {string}
|
|
4018
|
+
* @memberof BlueprintSpecOverrides
|
|
4019
|
+
*/
|
|
4020
|
+
'cpu'?: string;
|
|
4021
|
+
/**
|
|
4022
|
+
* Memory request/limit for the apply job pod (e.g. `512Mi`, `1Gi`). Overrides `spec.engine.resources.ram` in the manifest.
|
|
4023
|
+
* @type {string}
|
|
4024
|
+
* @memberof BlueprintSpecOverrides
|
|
4025
|
+
*/
|
|
4026
|
+
'ram'?: string;
|
|
4027
|
+
/**
|
|
4028
|
+
* Ephemeral storage for the apply job pod — used for state files and provider plugins (e.g. `1Gi`). Overrides `spec.engine.resources.storage` in the manifest.
|
|
4029
|
+
* @type {string}
|
|
4030
|
+
* @memberof BlueprintSpecOverrides
|
|
4031
|
+
*/
|
|
4032
|
+
'storage'?: string;
|
|
4033
|
+
}
|
|
4034
|
+
export declare const BlueprintSpecOverridesCredentialsEnum: {
|
|
4035
|
+
readonly CLUSTER: "cluster";
|
|
4036
|
+
readonly ENV: "env";
|
|
4037
|
+
};
|
|
4038
|
+
export type BlueprintSpecOverridesCredentialsEnum = typeof BlueprintSpecOverridesCredentialsEnum[keyof typeof BlueprintSpecOverridesCredentialsEnum];
|
|
4039
|
+
export declare const BlueprintSpecOverridesBackendEnum: {
|
|
4040
|
+
readonly QOVERY: "qovery";
|
|
4041
|
+
readonly USER_PROVIDED: "user_provided";
|
|
4042
|
+
};
|
|
4043
|
+
export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBackendEnum[keyof typeof BlueprintSpecOverridesBackendEnum];
|
|
3987
4044
|
/**
|
|
3988
4045
|
* Catalog engine-block deltas between the current and latest blueprint tag.
|
|
3989
4046
|
* @export
|
|
@@ -4099,13 +4156,11 @@ export interface BlueprintUpdateRequest {
|
|
|
4099
4156
|
[key: string]: BlueprintUpdateVariableValue;
|
|
4100
4157
|
};
|
|
4101
4158
|
/**
|
|
4102
|
-
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides
|
|
4103
|
-
* @type {
|
|
4159
|
+
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides (see `BlueprintSpecOverrides` for the list of valid fields). A non-null field value upserts the override; a null value removes it. Pass null or omit the field entirely to leave all existing overrides unchanged.
|
|
4160
|
+
* @type {BlueprintSpecOverrides}
|
|
4104
4161
|
* @memberof BlueprintUpdateRequest
|
|
4105
4162
|
*/
|
|
4106
|
-
'spec_overrides'?:
|
|
4107
|
-
[key: string]: any | null;
|
|
4108
|
-
} | null;
|
|
4163
|
+
'spec_overrides'?: BlueprintSpecOverrides | null;
|
|
4109
4164
|
}
|
|
4110
4165
|
/**
|
|
4111
4166
|
*
|
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 = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = void 0;
|
|
25
|
+
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.BlueprintUpdatePreviewResponseServiceTypeEnum = exports.BlueprintSpecOverridesBackendEnum = exports.BlueprintSpecOverridesCredentialsEnum = exports.BlueprintManifestVariableFieldKindEnum = exports.BlueprintManifestFieldTypeTypeEnum = exports.BlueprintManifestEngineTerraformTypeEnum = exports.BlueprintManifestEngineOpenTofuTypeEnum = exports.BlueprintManifestEngineHelmTypeEnum = 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.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 = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = void 0;
|
|
27
|
+
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 = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = void 0;
|
|
28
|
+
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 = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = void 0;
|
|
29
|
+
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 = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = void 0;
|
|
30
|
+
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 = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = void 0;
|
|
31
|
+
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 = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = void 0;
|
|
32
|
+
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 = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = void 0;
|
|
33
|
+
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 = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = void 0;
|
|
34
|
+
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 = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = void 0;
|
|
35
|
+
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 = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = void 0;
|
|
36
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = void 0;
|
|
37
37
|
const axios_1 = require("axios");
|
|
38
38
|
// Some imports not used depending on template conditions
|
|
39
39
|
// @ts-ignore
|
|
@@ -272,6 +272,14 @@ exports.BlueprintManifestFieldTypeTypeEnum = {
|
|
|
272
272
|
exports.BlueprintManifestVariableFieldKindEnum = {
|
|
273
273
|
VARIABLE: 'variable'
|
|
274
274
|
};
|
|
275
|
+
exports.BlueprintSpecOverridesCredentialsEnum = {
|
|
276
|
+
CLUSTER: 'cluster',
|
|
277
|
+
ENV: 'env'
|
|
278
|
+
};
|
|
279
|
+
exports.BlueprintSpecOverridesBackendEnum = {
|
|
280
|
+
QOVERY: 'qovery',
|
|
281
|
+
USER_PROVIDED: 'user_provided'
|
|
282
|
+
};
|
|
275
283
|
exports.BlueprintUpdatePreviewResponseServiceTypeEnum = {
|
|
276
284
|
HELM: 'HELM',
|
|
277
285
|
TERRAFORM: 'TERRAFORM'
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3382,13 +3382,11 @@ export interface BlueprintCreateRequest {
|
|
|
3382
3382
|
*/
|
|
3383
3383
|
'variables'?: Array<BlueprintVariableRequest>;
|
|
3384
3384
|
/**
|
|
3385
|
-
*
|
|
3386
|
-
* @type {
|
|
3385
|
+
*
|
|
3386
|
+
* @type {BlueprintSpecOverrides}
|
|
3387
3387
|
* @memberof BlueprintCreateRequest
|
|
3388
3388
|
*/
|
|
3389
|
-
'spec_overrides'?:
|
|
3390
|
-
[key: string]: any;
|
|
3391
|
-
} | null;
|
|
3389
|
+
'spec_overrides'?: BlueprintSpecOverrides;
|
|
3392
3390
|
}
|
|
3393
3391
|
/**
|
|
3394
3392
|
*
|
|
@@ -3984,6 +3982,65 @@ export interface BlueprintResponse {
|
|
|
3984
3982
|
*/
|
|
3985
3983
|
'environment_id': string;
|
|
3986
3984
|
}
|
|
3985
|
+
/**
|
|
3986
|
+
* Engine-level overrides applied on top of the blueprint manifest. Only fields whose corresponding manifest field is `overridable: true` are accepted; submitting a non-overridable field returns 422. **Terraform / OpenTofu blueprints** `engine_version` is **required** on create. The value must be one of the versions listed in `spec.engine.terraform.allowedValues` (or `opentofu.allowedValues`) in the manifest. **Helm blueprints** `engine_version`, `credentials`, and `backend` are ignored. Only `timeout` and the resource fields apply.
|
|
3987
|
+
* @export
|
|
3988
|
+
* @interface BlueprintSpecOverrides
|
|
3989
|
+
*/
|
|
3990
|
+
export interface BlueprintSpecOverrides {
|
|
3991
|
+
/**
|
|
3992
|
+
* Terraform or OpenTofu version to use for the apply job. Required when the blueprint engine type is `terraform` or `opentofu`. Must be one of the versions in the manifest\'s `allowedValues` list.
|
|
3993
|
+
* @type {string}
|
|
3994
|
+
* @memberof BlueprintSpecOverrides
|
|
3995
|
+
*/
|
|
3996
|
+
'engine_version'?: string;
|
|
3997
|
+
/**
|
|
3998
|
+
* How the apply job authenticates against the cloud provider. `cluster` reuses the cluster\'s cloud credentials (default). `env` expects the user to supply provider credentials as environment variables on the service.
|
|
3999
|
+
* @type {string}
|
|
4000
|
+
* @memberof BlueprintSpecOverrides
|
|
4001
|
+
*/
|
|
4002
|
+
'credentials'?: BlueprintSpecOverridesCredentialsEnum;
|
|
4003
|
+
/**
|
|
4004
|
+
* Where the Terraform state is stored. `qovery` stores state in a Kubernetes secret managed by Qovery (default). `user_provided` delegates to a user-controlled remote backend declared in the manifest\'s `backend.user_provided` block.
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof BlueprintSpecOverrides
|
|
4007
|
+
*/
|
|
4008
|
+
'backend'?: BlueprintSpecOverridesBackendEnum;
|
|
4009
|
+
/**
|
|
4010
|
+
* Maximum duration in seconds for a single apply job before it is marked as timed out. Overrides the manifest\'s `spec.engine.timeout`.
|
|
4011
|
+
* @type {number}
|
|
4012
|
+
* @memberof BlueprintSpecOverrides
|
|
4013
|
+
*/
|
|
4014
|
+
'timeout'?: number;
|
|
4015
|
+
/**
|
|
4016
|
+
* CPU request/limit for the apply job pod (Kubernetes-style, e.g. `500m`). Overrides `spec.engine.resources.cpu` in the manifest.
|
|
4017
|
+
* @type {string}
|
|
4018
|
+
* @memberof BlueprintSpecOverrides
|
|
4019
|
+
*/
|
|
4020
|
+
'cpu'?: string;
|
|
4021
|
+
/**
|
|
4022
|
+
* Memory request/limit for the apply job pod (e.g. `512Mi`, `1Gi`). Overrides `spec.engine.resources.ram` in the manifest.
|
|
4023
|
+
* @type {string}
|
|
4024
|
+
* @memberof BlueprintSpecOverrides
|
|
4025
|
+
*/
|
|
4026
|
+
'ram'?: string;
|
|
4027
|
+
/**
|
|
4028
|
+
* Ephemeral storage for the apply job pod — used for state files and provider plugins (e.g. `1Gi`). Overrides `spec.engine.resources.storage` in the manifest.
|
|
4029
|
+
* @type {string}
|
|
4030
|
+
* @memberof BlueprintSpecOverrides
|
|
4031
|
+
*/
|
|
4032
|
+
'storage'?: string;
|
|
4033
|
+
}
|
|
4034
|
+
export declare const BlueprintSpecOverridesCredentialsEnum: {
|
|
4035
|
+
readonly CLUSTER: "cluster";
|
|
4036
|
+
readonly ENV: "env";
|
|
4037
|
+
};
|
|
4038
|
+
export type BlueprintSpecOverridesCredentialsEnum = typeof BlueprintSpecOverridesCredentialsEnum[keyof typeof BlueprintSpecOverridesCredentialsEnum];
|
|
4039
|
+
export declare const BlueprintSpecOverridesBackendEnum: {
|
|
4040
|
+
readonly QOVERY: "qovery";
|
|
4041
|
+
readonly USER_PROVIDED: "user_provided";
|
|
4042
|
+
};
|
|
4043
|
+
export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBackendEnum[keyof typeof BlueprintSpecOverridesBackendEnum];
|
|
3987
4044
|
/**
|
|
3988
4045
|
* Catalog engine-block deltas between the current and latest blueprint tag.
|
|
3989
4046
|
* @export
|
|
@@ -4099,13 +4156,11 @@ export interface BlueprintUpdateRequest {
|
|
|
4099
4156
|
[key: string]: BlueprintUpdateVariableValue;
|
|
4100
4157
|
};
|
|
4101
4158
|
/**
|
|
4102
|
-
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides
|
|
4103
|
-
* @type {
|
|
4159
|
+
* JSON Merge Patch (RFC 7396) applied to the stored spec_overrides (see `BlueprintSpecOverrides` for the list of valid fields). A non-null field value upserts the override; a null value removes it. Pass null or omit the field entirely to leave all existing overrides unchanged.
|
|
4160
|
+
* @type {BlueprintSpecOverrides}
|
|
4104
4161
|
* @memberof BlueprintUpdateRequest
|
|
4105
4162
|
*/
|
|
4106
|
-
'spec_overrides'?:
|
|
4107
|
-
[key: string]: any | null;
|
|
4108
|
-
} | null;
|
|
4163
|
+
'spec_overrides'?: BlueprintSpecOverrides | null;
|
|
4109
4164
|
}
|
|
4110
4165
|
/**
|
|
4111
4166
|
*
|
package/dist/esm/api.js
CHANGED
|
@@ -258,6 +258,14 @@ export const BlueprintManifestFieldTypeTypeEnum = {
|
|
|
258
258
|
export const BlueprintManifestVariableFieldKindEnum = {
|
|
259
259
|
VARIABLE: 'variable'
|
|
260
260
|
};
|
|
261
|
+
export const BlueprintSpecOverridesCredentialsEnum = {
|
|
262
|
+
CLUSTER: 'cluster',
|
|
263
|
+
ENV: 'env'
|
|
264
|
+
};
|
|
265
|
+
export const BlueprintSpecOverridesBackendEnum = {
|
|
266
|
+
QOVERY: 'qovery',
|
|
267
|
+
USER_PROVIDED: 'user_provided'
|
|
268
|
+
};
|
|
261
269
|
export const BlueprintUpdatePreviewResponseServiceTypeEnum = {
|
|
262
270
|
HELM: 'HELM',
|
|
263
271
|
TERRAFORM: 'TERRAFORM'
|