1. Packages
  2. Qovery
  3. API Docs
  4. getApplication
Qovery v0.36.1 published on Monday, Jul 22, 2024 by dirien

qovery.getApplication

Explore with Pulumi AI

qovery logo
Qovery v0.36.1 published on Monday, Jul 22, 2024 by dirien

    # qovery.Application (Data Source)

    Provides a Qovery application resource. This can be used to create and manage Qovery applications.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as qovery from "@pulumi/qovery";
    
    const myApplication = qovery.getApplication({
        id: "<application_id>",
    });
    
    import pulumi
    import pulumi_qovery as qovery
    
    my_application = qovery.get_application(id="<application_id>")
    
    package main
    
    import (
    	"github.com/dirien/pulumi-qovery/sdk/go/qovery"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := qovery.LookupApplication(ctx, &qovery.LookupApplicationArgs{
    			Id: "<application_id>",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Qovery = Pulumi.Qovery;
    
    return await Deployment.RunAsync(() => 
    {
        var myApplication = Qovery.GetApplication.Invoke(new()
        {
            Id = "<application_id>",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.qovery.QoveryFunctions;
    import com.pulumi.qovery.inputs.GetApplicationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var myApplication = QoveryFunctions.getApplication(GetApplicationArgs.builder()
                .id("<application_id>")
                .build());
    
        }
    }
    
    variables:
      myApplication:
        fn::invoke:
          Function: qovery:getApplication
          Arguments:
            id: <application_id>
    

    Using getApplication

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getApplication(args: GetApplicationArgs, opts?: InvokeOptions): Promise<GetApplicationResult>
    function getApplicationOutput(args: GetApplicationOutputArgs, opts?: InvokeOptions): Output<GetApplicationResult>
    def get_application(advanced_settings_json: Optional[str] = None,
                        annotations_group_ids: Optional[Sequence[str]] = None,
                        arguments: Optional[Sequence[str]] = None,
                        auto_deploy: Optional[bool] = None,
                        auto_preview: Optional[bool] = None,
                        buildpack_language: Optional[str] = None,
                        cpu: Optional[int] = None,
                        custom_domains: Optional[Sequence[GetApplicationCustomDomain]] = None,
                        deployment_restrictions: Optional[Sequence[GetApplicationDeploymentRestriction]] = None,
                        deployment_stage_id: Optional[str] = None,
                        dockerfile_path: Optional[str] = None,
                        entrypoint: Optional[str] = None,
                        environment_variable_aliases: Optional[Sequence[GetApplicationEnvironmentVariableAlias]] = None,
                        environment_variable_overrides: Optional[Sequence[GetApplicationEnvironmentVariableOverride]] = None,
                        environment_variables: Optional[Sequence[GetApplicationEnvironmentVariable]] = None,
                        healthchecks: Optional[GetApplicationHealthchecks] = None,
                        id: Optional[str] = None,
                        labels_group_ids: Optional[Sequence[str]] = None,
                        max_running_instances: Optional[int] = None,
                        memory: Optional[int] = None,
                        min_running_instances: Optional[int] = None,
                        secret_aliases: Optional[Sequence[GetApplicationSecretAlias]] = None,
                        secret_overrides: Optional[Sequence[GetApplicationSecretOverride]] = None,
                        secrets: Optional[Sequence[GetApplicationSecret]] = None,
                        storages: Optional[Sequence[GetApplicationStorage]] = None,
                        opts: Optional[InvokeOptions] = None) -> GetApplicationResult
    def get_application_output(advanced_settings_json: Optional[pulumi.Input[str]] = None,
                        annotations_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        arguments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        auto_deploy: Optional[pulumi.Input[bool]] = None,
                        auto_preview: Optional[pulumi.Input[bool]] = None,
                        buildpack_language: Optional[pulumi.Input[str]] = None,
                        cpu: Optional[pulumi.Input[int]] = None,
                        custom_domains: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationCustomDomainArgs]]]] = None,
                        deployment_restrictions: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationDeploymentRestrictionArgs]]]] = None,
                        deployment_stage_id: Optional[pulumi.Input[str]] = None,
                        dockerfile_path: Optional[pulumi.Input[str]] = None,
                        entrypoint: Optional[pulumi.Input[str]] = None,
                        environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationEnvironmentVariableAliasArgs]]]] = None,
                        environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationEnvironmentVariableOverrideArgs]]]] = None,
                        environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationEnvironmentVariableArgs]]]] = None,
                        healthchecks: Optional[pulumi.Input[GetApplicationHealthchecksArgs]] = None,
                        id: Optional[pulumi.Input[str]] = None,
                        labels_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        max_running_instances: Optional[pulumi.Input[int]] = None,
                        memory: Optional[pulumi.Input[int]] = None,
                        min_running_instances: Optional[pulumi.Input[int]] = None,
                        secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationSecretAliasArgs]]]] = None,
                        secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationSecretOverrideArgs]]]] = None,
                        secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationSecretArgs]]]] = None,
                        storages: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationStorageArgs]]]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetApplicationResult]
    func LookupApplication(ctx *Context, args *LookupApplicationArgs, opts ...InvokeOption) (*LookupApplicationResult, error)
    func LookupApplicationOutput(ctx *Context, args *LookupApplicationOutputArgs, opts ...InvokeOption) LookupApplicationResultOutput

    > Note: This function is named LookupApplication in the Go SDK.

    public static class GetApplication 
    {
        public static Task<GetApplicationResult> InvokeAsync(GetApplicationArgs args, InvokeOptions? opts = null)
        public static Output<GetApplicationResult> Invoke(GetApplicationInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetApplicationResult> getApplication(GetApplicationArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: qovery:index/getApplication:getApplication
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    AdvancedSettingsJson string
    AnnotationsGroupIds List<string>
    Arguments List<string>
    AutoDeploy bool
    AutoPreview bool
    BuildpackLanguage string
    Cpu int
    CustomDomains List<ediri.Qovery.Inputs.GetApplicationCustomDomain>
    DeploymentRestrictions List<ediri.Qovery.Inputs.GetApplicationDeploymentRestriction>
    DeploymentStageId string
    DockerfilePath string
    Entrypoint string
    EnvironmentVariableAliases List<ediri.Qovery.Inputs.GetApplicationEnvironmentVariableAlias>
    EnvironmentVariableOverrides List<ediri.Qovery.Inputs.GetApplicationEnvironmentVariableOverride>
    EnvironmentVariables List<ediri.Qovery.Inputs.GetApplicationEnvironmentVariable>
    Healthchecks ediri.Qovery.Inputs.GetApplicationHealthchecks
    LabelsGroupIds List<string>
    MaxRunningInstances int
    Memory int
    MinRunningInstances int
    SecretAliases List<ediri.Qovery.Inputs.GetApplicationSecretAlias>
    SecretOverrides List<ediri.Qovery.Inputs.GetApplicationSecretOverride>
    Secrets List<ediri.Qovery.Inputs.GetApplicationSecret>
    Storages List<ediri.Qovery.Inputs.GetApplicationStorage>
    id String
    advancedSettingsJson String
    annotationsGroupIds List<String>
    arguments List<String>
    autoDeploy Boolean
    autoPreview Boolean
    buildpackLanguage String
    cpu Integer
    customDomains List<GetApplicationCustomDomain>
    deploymentRestrictions List<GetApplicationDeploymentRestriction>
    deploymentStageId String
    dockerfilePath String
    entrypoint String
    environmentVariableAliases List<GetApplicationEnvironmentVariableAlias>
    environmentVariableOverrides List<GetApplicationEnvironmentVariableOverride>
    environmentVariables List<GetApplicationEnvironmentVariable>
    healthchecks GetApplicationHealthchecks
    labelsGroupIds List<String>
    maxRunningInstances Integer
    memory Integer
    minRunningInstances Integer
    secretAliases List<GetApplicationSecretAlias>
    secretOverrides List<GetApplicationSecretOverride>
    secrets List<GetApplicationSecret>
    storages List<GetApplicationStorage>
    id str
    advanced_settings_json str
    annotations_group_ids Sequence[str]
    arguments Sequence[str]
    auto_deploy bool
    auto_preview bool
    buildpack_language str
    cpu int
    custom_domains Sequence[GetApplicationCustomDomain]
    deployment_restrictions Sequence[GetApplicationDeploymentRestriction]
    deployment_stage_id str
    dockerfile_path str
    entrypoint str
    environment_variable_aliases Sequence[GetApplicationEnvironmentVariableAlias]
    environment_variable_overrides Sequence[GetApplicationEnvironmentVariableOverride]
    environment_variables Sequence[GetApplicationEnvironmentVariable]
    healthchecks GetApplicationHealthchecks
    labels_group_ids Sequence[str]
    max_running_instances int
    memory int
    min_running_instances int
    secret_aliases Sequence[GetApplicationSecretAlias]
    secret_overrides Sequence[GetApplicationSecretOverride]
    secrets Sequence[GetApplicationSecret]
    storages Sequence[GetApplicationStorage]

    getApplication Result

    The following output properties are available:

    AdvancedSettingsJson string
    Arguments List<string>
    AutoDeploy bool
    AutoPreview bool
    BuildMode string
    BuildpackLanguage string
    BuiltInEnvironmentVariables List<ediri.Qovery.Outputs.GetApplicationBuiltInEnvironmentVariable>
    Cpu int
    DeploymentStageId string
    DockerfilePath string
    Entrypoint string
    EnvironmentId string
    ExternalHost string
    GitRepository ediri.Qovery.Outputs.GetApplicationGitRepository
    Id string
    InternalHost string
    MaxRunningInstances int
    Memory int
    MinRunningInstances int
    Name string
    Ports List<ediri.Qovery.Outputs.GetApplicationPort>
    Storages List<ediri.Qovery.Outputs.GetApplicationStorage>
    AnnotationsGroupIds List<string>
    CustomDomains List<ediri.Qovery.Outputs.GetApplicationCustomDomain>
    DeploymentRestrictions List<ediri.Qovery.Outputs.GetApplicationDeploymentRestriction>
    EnvironmentVariableAliases List<ediri.Qovery.Outputs.GetApplicationEnvironmentVariableAlias>
    EnvironmentVariableOverrides List<ediri.Qovery.Outputs.GetApplicationEnvironmentVariableOverride>
    EnvironmentVariables List<ediri.Qovery.Outputs.GetApplicationEnvironmentVariable>
    Healthchecks ediri.Qovery.Outputs.GetApplicationHealthchecks
    LabelsGroupIds List<string>
    SecretAliases List<ediri.Qovery.Outputs.GetApplicationSecretAlias>
    SecretOverrides List<ediri.Qovery.Outputs.GetApplicationSecretOverride>
    Secrets List<ediri.Qovery.Outputs.GetApplicationSecret>
    AdvancedSettingsJson string
    Arguments []string
    AutoDeploy bool
    AutoPreview bool
    BuildMode string
    BuildpackLanguage string
    BuiltInEnvironmentVariables []GetApplicationBuiltInEnvironmentVariable
    Cpu int
    DeploymentStageId string
    DockerfilePath string
    Entrypoint string
    EnvironmentId string
    ExternalHost string
    GitRepository GetApplicationGitRepository
    Id string
    InternalHost string
    MaxRunningInstances int
    Memory int
    MinRunningInstances int
    Name string
    Ports []GetApplicationPort
    Storages []GetApplicationStorage
    AnnotationsGroupIds []string
    CustomDomains []GetApplicationCustomDomain
    DeploymentRestrictions []GetApplicationDeploymentRestriction
    EnvironmentVariableAliases []GetApplicationEnvironmentVariableAlias
    EnvironmentVariableOverrides []GetApplicationEnvironmentVariableOverride
    EnvironmentVariables []GetApplicationEnvironmentVariable
    Healthchecks GetApplicationHealthchecks
    LabelsGroupIds []string
    SecretAliases []GetApplicationSecretAlias
    SecretOverrides []GetApplicationSecretOverride
    Secrets []GetApplicationSecret
    advancedSettingsJson String
    arguments List<String>
    autoDeploy Boolean
    autoPreview Boolean
    buildMode String
    buildpackLanguage String
    builtInEnvironmentVariables List<GetApplicationBuiltInEnvironmentVariable>
    cpu Integer
    deploymentStageId String
    dockerfilePath String
    entrypoint String
    environmentId String
    externalHost String
    gitRepository GetApplicationGitRepository
    id String
    internalHost String
    maxRunningInstances Integer
    memory Integer
    minRunningInstances Integer
    name String
    ports List<GetApplicationPort>
    storages List<GetApplicationStorage>
    annotationsGroupIds List<String>
    customDomains List<GetApplicationCustomDomain>
    deploymentRestrictions List<GetApplicationDeploymentRestriction>
    environmentVariableAliases List<GetApplicationEnvironmentVariableAlias>
    environmentVariableOverrides List<GetApplicationEnvironmentVariableOverride>
    environmentVariables List<GetApplicationEnvironmentVariable>
    healthchecks GetApplicationHealthchecks
    labelsGroupIds List<String>
    secretAliases List<GetApplicationSecretAlias>
    secretOverrides List<GetApplicationSecretOverride>
    secrets List<GetApplicationSecret>
    advancedSettingsJson string
    arguments string[]
    autoDeploy boolean
    autoPreview boolean
    buildMode string
    buildpackLanguage string
    builtInEnvironmentVariables GetApplicationBuiltInEnvironmentVariable[]
    cpu number
    deploymentStageId string
    dockerfilePath string
    entrypoint string
    environmentId string
    externalHost string
    gitRepository GetApplicationGitRepository
    id string
    internalHost string
    maxRunningInstances number
    memory number
    minRunningInstances number
    name string
    ports GetApplicationPort[]
    storages GetApplicationStorage[]
    annotationsGroupIds string[]
    customDomains GetApplicationCustomDomain[]
    deploymentRestrictions GetApplicationDeploymentRestriction[]
    environmentVariableAliases GetApplicationEnvironmentVariableAlias[]
    environmentVariableOverrides GetApplicationEnvironmentVariableOverride[]
    environmentVariables GetApplicationEnvironmentVariable[]
    healthchecks GetApplicationHealthchecks
    labelsGroupIds string[]
    secretAliases GetApplicationSecretAlias[]
    secretOverrides GetApplicationSecretOverride[]
    secrets GetApplicationSecret[]
    advanced_settings_json str
    arguments Sequence[str]
    auto_deploy bool
    auto_preview bool
    build_mode str
    buildpack_language str
    built_in_environment_variables Sequence[GetApplicationBuiltInEnvironmentVariable]
    cpu int
    deployment_stage_id str
    dockerfile_path str
    entrypoint str
    environment_id str
    external_host str
    git_repository GetApplicationGitRepository
    id str
    internal_host str
    max_running_instances int
    memory int
    min_running_instances int
    name str
    ports Sequence[GetApplicationPort]
    storages Sequence[GetApplicationStorage]
    annotations_group_ids Sequence[str]
    custom_domains Sequence[GetApplicationCustomDomain]
    deployment_restrictions Sequence[GetApplicationDeploymentRestriction]
    environment_variable_aliases Sequence[GetApplicationEnvironmentVariableAlias]
    environment_variable_overrides Sequence[GetApplicationEnvironmentVariableOverride]
    environment_variables Sequence[GetApplicationEnvironmentVariable]
    healthchecks GetApplicationHealthchecks
    labels_group_ids Sequence[str]
    secret_aliases Sequence[GetApplicationSecretAlias]
    secret_overrides Sequence[GetApplicationSecretOverride]
    secrets Sequence[GetApplicationSecret]
    advancedSettingsJson String
    arguments List<String>
    autoDeploy Boolean
    autoPreview Boolean
    buildMode String
    buildpackLanguage String
    builtInEnvironmentVariables List<Property Map>
    cpu Number
    deploymentStageId String
    dockerfilePath String
    entrypoint String
    environmentId String
    externalHost String
    gitRepository Property Map
    id String
    internalHost String
    maxRunningInstances Number
    memory Number
    minRunningInstances Number
    name String
    ports List<Property Map>
    storages List<Property Map>
    annotationsGroupIds List<String>
    customDomains List<Property Map>
    deploymentRestrictions List<Property Map>
    environmentVariableAliases List<Property Map>
    environmentVariableOverrides List<Property Map>
    environmentVariables List<Property Map>
    healthchecks Property Map
    labelsGroupIds List<String>
    secretAliases List<Property Map>
    secretOverrides List<Property Map>
    secrets List<Property Map>

    Supporting Types

    GetApplicationBuiltInEnvironmentVariable

    Description string
    Description of the environment variable.
    Id string
    Id of the environment variable.
    Key string
    Key of the environment variable.
    Value string
    Value of the environment variable.
    Description string
    Description of the environment variable.
    Id string
    Id of the environment variable.
    Key string
    Key of the environment variable.
    Value string
    Value of the environment variable.
    description String
    Description of the environment variable.
    id String
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value of the environment variable.
    description string
    Description of the environment variable.
    id string
    Id of the environment variable.
    key string
    Key of the environment variable.
    value string
    Value of the environment variable.
    description str
    Description of the environment variable.
    id str
    Id of the environment variable.
    key str
    Key of the environment variable.
    value str
    Value of the environment variable.
    description String
    Description of the environment variable.
    id String
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value of the environment variable.

    GetApplicationCustomDomain

    Domain string
    Your custom domain.
    Id string
    Id of the custom domain.
    Status string
    Status of the custom domain.
    ValidationDomain string
    URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
    GenerateCertificate bool
    Qovery will generate and manage the certificate for this domain.
    Domain string
    Your custom domain.
    Id string
    Id of the custom domain.
    Status string
    Status of the custom domain.
    ValidationDomain string
    URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
    GenerateCertificate bool
    Qovery will generate and manage the certificate for this domain.
    domain String
    Your custom domain.
    id String
    Id of the custom domain.
    status String
    Status of the custom domain.
    validationDomain String
    URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
    generateCertificate Boolean
    Qovery will generate and manage the certificate for this domain.
    domain string
    Your custom domain.
    id string
    Id of the custom domain.
    status string
    Status of the custom domain.
    validationDomain string
    URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
    generateCertificate boolean
    Qovery will generate and manage the certificate for this domain.
    domain str
    Your custom domain.
    id str
    Id of the custom domain.
    status str
    Status of the custom domain.
    validation_domain str
    URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
    generate_certificate bool
    Qovery will generate and manage the certificate for this domain.
    domain String
    Your custom domain.
    id String
    Id of the custom domain.
    status String
    Status of the custom domain.
    validationDomain String
    URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
    generateCertificate Boolean
    Qovery will generate and manage the certificate for this domain.

    GetApplicationDeploymentRestriction

    Id string
    Id of the deployment restriction
    Mode string
    Can be EXCLUDE or MATCH
    Type string
    Currently, only PATH is accepted
    Value string
    Value of the deployment restriction
    Id string
    Id of the deployment restriction
    Mode string
    Can be EXCLUDE or MATCH
    Type string
    Currently, only PATH is accepted
    Value string
    Value of the deployment restriction
    id String
    Id of the deployment restriction
    mode String
    Can be EXCLUDE or MATCH
    type String
    Currently, only PATH is accepted
    value String
    Value of the deployment restriction
    id string
    Id of the deployment restriction
    mode string
    Can be EXCLUDE or MATCH
    type string
    Currently, only PATH is accepted
    value string
    Value of the deployment restriction
    id str
    Id of the deployment restriction
    mode str
    Can be EXCLUDE or MATCH
    type str
    Currently, only PATH is accepted
    value str
    Value of the deployment restriction
    id String
    Id of the deployment restriction
    mode String
    Can be EXCLUDE or MATCH
    type String
    Currently, only PATH is accepted
    value String
    Value of the deployment restriction

    GetApplicationEnvironmentVariable

    Description string
    Description of the environment variable.
    Id string
    Id of the environment variable.
    Key string
    Key of the environment variable.
    Value string
    Value of the environment variable.
    Description string
    Description of the environment variable.
    Id string
    Id of the environment variable.
    Key string
    Key of the environment variable.
    Value string
    Value of the environment variable.
    description String
    Description of the environment variable.
    id String
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value of the environment variable.
    description string
    Description of the environment variable.
    id string
    Id of the environment variable.
    key string
    Key of the environment variable.
    value string
    Value of the environment variable.
    description str
    Description of the environment variable.
    id str
    Id of the environment variable.
    key str
    Key of the environment variable.
    value str
    Value of the environment variable.
    description String
    Description of the environment variable.
    id String
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value of the environment variable.

    GetApplicationEnvironmentVariableAlias

    Description string
    Description of the environment variable alias.
    Id string
    Id of the environment variable alias.
    Key string
    Name of the environment variable alias.
    Value string
    Name of the variable to alias.
    Description string
    Description of the environment variable alias.
    Id string
    Id of the environment variable alias.
    Key string
    Name of the environment variable alias.
    Value string
    Name of the variable to alias.
    description String
    Description of the environment variable alias.
    id String
    Id of the environment variable alias.
    key String
    Name of the environment variable alias.
    value String
    Name of the variable to alias.
    description string
    Description of the environment variable alias.
    id string
    Id of the environment variable alias.
    key string
    Name of the environment variable alias.
    value string
    Name of the variable to alias.
    description str
    Description of the environment variable alias.
    id str
    Id of the environment variable alias.
    key str
    Name of the environment variable alias.
    value str
    Name of the variable to alias.
    description String
    Description of the environment variable alias.
    id String
    Id of the environment variable alias.
    key String
    Name of the environment variable alias.
    value String
    Name of the variable to alias.

    GetApplicationEnvironmentVariableOverride

    Description string
    Description of the environment variable override.
    Id string
    Id of the environment variable override.
    Key string
    Name of the environment variable override.
    Value string
    Value of the environment variable override.
    Description string
    Description of the environment variable override.
    Id string
    Id of the environment variable override.
    Key string
    Name of the environment variable override.
    Value string
    Value of the environment variable override.
    description String
    Description of the environment variable override.
    id String
    Id of the environment variable override.
    key String
    Name of the environment variable override.
    value String
    Value of the environment variable override.
    description string
    Description of the environment variable override.
    id string
    Id of the environment variable override.
    key string
    Name of the environment variable override.
    value string
    Value of the environment variable override.
    description str
    Description of the environment variable override.
    id str
    Id of the environment variable override.
    key str
    Name of the environment variable override.
    value str
    Value of the environment variable override.
    description String
    Description of the environment variable override.
    id String
    Id of the environment variable override.
    key String
    Name of the environment variable override.
    value String
    Value of the environment variable override.

    GetApplicationGitRepository

    Branch string
    Branch of the git repository. - Default: main or master (depending on repository).
    GitTokenId string
    The git token ID to be used
    RootPath string
    Root path of the application. - Default: /.
    Url string
    URL of the git repository.
    Branch string
    Branch of the git repository. - Default: main or master (depending on repository).
    GitTokenId string
    The git token ID to be used
    RootPath string
    Root path of the application. - Default: /.
    Url string
    URL of the git repository.
    branch String
    Branch of the git repository. - Default: main or master (depending on repository).
    gitTokenId String
    The git token ID to be used
    rootPath String
    Root path of the application. - Default: /.
    url String
    URL of the git repository.
    branch string
    Branch of the git repository. - Default: main or master (depending on repository).
    gitTokenId string
    The git token ID to be used
    rootPath string
    Root path of the application. - Default: /.
    url string
    URL of the git repository.
    branch str
    Branch of the git repository. - Default: main or master (depending on repository).
    git_token_id str
    The git token ID to be used
    root_path str
    Root path of the application. - Default: /.
    url str
    URL of the git repository.
    branch String
    Branch of the git repository. - Default: main or master (depending on repository).
    gitTokenId String
    The git token ID to be used
    rootPath String
    Root path of the application. - Default: /.
    url String
    URL of the git repository.

    GetApplicationHealthchecks

    LivenessProbe ediri.Qovery.Inputs.GetApplicationHealthchecksLivenessProbe
    Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
    ReadinessProbe ediri.Qovery.Inputs.GetApplicationHealthchecksReadinessProbe
    Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
    LivenessProbe GetApplicationHealthchecksLivenessProbe
    Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
    ReadinessProbe GetApplicationHealthchecksReadinessProbe
    Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
    livenessProbe GetApplicationHealthchecksLivenessProbe
    Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
    readinessProbe GetApplicationHealthchecksReadinessProbe
    Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
    livenessProbe GetApplicationHealthchecksLivenessProbe
    Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
    readinessProbe GetApplicationHealthchecksReadinessProbe
    Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
    liveness_probe GetApplicationHealthchecksLivenessProbe
    Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
    readiness_probe GetApplicationHealthchecksReadinessProbe
    Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
    livenessProbe Property Map
    Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
    readinessProbe Property Map
    Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.

    GetApplicationHealthchecksLivenessProbe

    FailureThreshold int
    Number of time the an ok probe should fail before declaring it as failed
    InitialDelaySeconds int
    Number of seconds to wait before the first execution of the probe to be trigerred
    PeriodSeconds int
    Number of seconds before each execution of the probe
    SuccessThreshold int
    Number of time the probe should success before declaring a failed probe as ok again
    TimeoutSeconds int
    Number of seconds within which the check need to respond before declaring it as a failure
    Type ediri.Qovery.Inputs.GetApplicationHealthchecksLivenessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    FailureThreshold int
    Number of time the an ok probe should fail before declaring it as failed
    InitialDelaySeconds int
    Number of seconds to wait before the first execution of the probe to be trigerred
    PeriodSeconds int
    Number of seconds before each execution of the probe
    SuccessThreshold int
    Number of time the probe should success before declaring a failed probe as ok again
    TimeoutSeconds int
    Number of seconds within which the check need to respond before declaring it as a failure
    Type GetApplicationHealthchecksLivenessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failureThreshold Integer
    Number of time the an ok probe should fail before declaring it as failed
    initialDelaySeconds Integer
    Number of seconds to wait before the first execution of the probe to be trigerred
    periodSeconds Integer
    Number of seconds before each execution of the probe
    successThreshold Integer
    Number of time the probe should success before declaring a failed probe as ok again
    timeoutSeconds Integer
    Number of seconds within which the check need to respond before declaring it as a failure
    type GetApplicationHealthchecksLivenessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failureThreshold number
    Number of time the an ok probe should fail before declaring it as failed
    initialDelaySeconds number
    Number of seconds to wait before the first execution of the probe to be trigerred
    periodSeconds number
    Number of seconds before each execution of the probe
    successThreshold number
    Number of time the probe should success before declaring a failed probe as ok again
    timeoutSeconds number
    Number of seconds within which the check need to respond before declaring it as a failure
    type GetApplicationHealthchecksLivenessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failure_threshold int
    Number of time the an ok probe should fail before declaring it as failed
    initial_delay_seconds int
    Number of seconds to wait before the first execution of the probe to be trigerred
    period_seconds int
    Number of seconds before each execution of the probe
    success_threshold int
    Number of time the probe should success before declaring a failed probe as ok again
    timeout_seconds int
    Number of seconds within which the check need to respond before declaring it as a failure
    type GetApplicationHealthchecksLivenessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failureThreshold Number
    Number of time the an ok probe should fail before declaring it as failed
    initialDelaySeconds Number
    Number of seconds to wait before the first execution of the probe to be trigerred
    periodSeconds Number
    Number of seconds before each execution of the probe
    successThreshold Number
    Number of time the probe should success before declaring a failed probe as ok again
    timeoutSeconds Number
    Number of seconds within which the check need to respond before declaring it as a failure
    type Property Map
    Kind of check to run for this probe. There can only be one configured at a time

    GetApplicationHealthchecksLivenessProbeType

    Exec ediri.Qovery.Inputs.GetApplicationHealthchecksLivenessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    Grpc ediri.Qovery.Inputs.GetApplicationHealthchecksLivenessProbeTypeGrpc
    Check that the given port respond to GRPC call
    Http ediri.Qovery.Inputs.GetApplicationHealthchecksLivenessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    Tcp ediri.Qovery.Inputs.GetApplicationHealthchecksLivenessProbeTypeTcp
    Check that the given port accepting connection
    Exec GetApplicationHealthchecksLivenessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    Grpc GetApplicationHealthchecksLivenessProbeTypeGrpc
    Check that the given port respond to GRPC call
    Http GetApplicationHealthchecksLivenessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    Tcp GetApplicationHealthchecksLivenessProbeTypeTcp
    Check that the given port accepting connection
    exec GetApplicationHealthchecksLivenessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    grpc GetApplicationHealthchecksLivenessProbeTypeGrpc
    Check that the given port respond to GRPC call
    http GetApplicationHealthchecksLivenessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp GetApplicationHealthchecksLivenessProbeTypeTcp
    Check that the given port accepting connection
    exec GetApplicationHealthchecksLivenessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    grpc GetApplicationHealthchecksLivenessProbeTypeGrpc
    Check that the given port respond to GRPC call
    http GetApplicationHealthchecksLivenessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp GetApplicationHealthchecksLivenessProbeTypeTcp
    Check that the given port accepting connection
    exec_ GetApplicationHealthchecksLivenessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    grpc GetApplicationHealthchecksLivenessProbeTypeGrpc
    Check that the given port respond to GRPC call
    http GetApplicationHealthchecksLivenessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp GetApplicationHealthchecksLivenessProbeTypeTcp
    Check that the given port accepting connection
    exec Property Map
    Check that the given command return an exit 0. Binary should be present in the image
    grpc Property Map
    Check that the given port respond to GRPC call
    http Property Map
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp Property Map
    Check that the given port accepting connection

    GetApplicationHealthchecksLivenessProbeTypeExec

    Commands List<string>
    The command and its arguments to exec
    Commands []string
    The command and its arguments to exec
    commands List<String>
    The command and its arguments to exec
    commands string[]
    The command and its arguments to exec
    commands Sequence[str]
    The command and its arguments to exec
    commands List<String>
    The command and its arguments to exec

    GetApplicationHealthchecksLivenessProbeTypeGrpc

    Port int
    The port number to try to connect to
    Service string
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    Port int
    The port number to try to connect to
    Service string
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port Integer
    The port number to try to connect to
    service String
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port number
    The port number to try to connect to
    service string
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port int
    The port number to try to connect to
    service str
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port Number
    The port number to try to connect to
    service String
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe

    GetApplicationHealthchecksLivenessProbeTypeHttp

    Port int
    The port number to try to connect to
    Scheme string
    if the HTTP GET request should be done in HTTP or HTTPS.
    Path string
    The path that the HTTP GET request. By default it is /
    Port int
    The port number to try to connect to
    Scheme string
    if the HTTP GET request should be done in HTTP or HTTPS.
    Path string
    The path that the HTTP GET request. By default it is /
    port Integer
    The port number to try to connect to
    scheme String
    if the HTTP GET request should be done in HTTP or HTTPS.
    path String
    The path that the HTTP GET request. By default it is /
    port number
    The port number to try to connect to
    scheme string
    if the HTTP GET request should be done in HTTP or HTTPS.
    path string
    The path that the HTTP GET request. By default it is /
    port int
    The port number to try to connect to
    scheme str
    if the HTTP GET request should be done in HTTP or HTTPS.
    path str
    The path that the HTTP GET request. By default it is /
    port Number
    The port number to try to connect to
    scheme String
    if the HTTP GET request should be done in HTTP or HTTPS.
    path String
    The path that the HTTP GET request. By default it is /

    GetApplicationHealthchecksLivenessProbeTypeTcp

    Port int
    The port number to try to connect to
    Host string
    Optional. If the host need to be different than localhost/pod ip
    Port int
    The port number to try to connect to
    Host string
    Optional. If the host need to be different than localhost/pod ip
    port Integer
    The port number to try to connect to
    host String
    Optional. If the host need to be different than localhost/pod ip
    port number
    The port number to try to connect to
    host string
    Optional. If the host need to be different than localhost/pod ip
    port int
    The port number to try to connect to
    host str
    Optional. If the host need to be different than localhost/pod ip
    port Number
    The port number to try to connect to
    host String
    Optional. If the host need to be different than localhost/pod ip

    GetApplicationHealthchecksReadinessProbe

    FailureThreshold int
    Number of time the an ok probe should fail before declaring it as failed
    InitialDelaySeconds int
    Number of seconds to wait before the first execution of the probe to be trigerred
    PeriodSeconds int
    Number of seconds before each execution of the probe
    SuccessThreshold int
    Number of time the probe should success before declaring a failed probe as ok again
    TimeoutSeconds int
    Number of seconds within which the check need to respond before declaring it as a failure
    Type ediri.Qovery.Inputs.GetApplicationHealthchecksReadinessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    FailureThreshold int
    Number of time the an ok probe should fail before declaring it as failed
    InitialDelaySeconds int
    Number of seconds to wait before the first execution of the probe to be trigerred
    PeriodSeconds int
    Number of seconds before each execution of the probe
    SuccessThreshold int
    Number of time the probe should success before declaring a failed probe as ok again
    TimeoutSeconds int
    Number of seconds within which the check need to respond before declaring it as a failure
    Type GetApplicationHealthchecksReadinessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failureThreshold Integer
    Number of time the an ok probe should fail before declaring it as failed
    initialDelaySeconds Integer
    Number of seconds to wait before the first execution of the probe to be trigerred
    periodSeconds Integer
    Number of seconds before each execution of the probe
    successThreshold Integer
    Number of time the probe should success before declaring a failed probe as ok again
    timeoutSeconds Integer
    Number of seconds within which the check need to respond before declaring it as a failure
    type GetApplicationHealthchecksReadinessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failureThreshold number
    Number of time the an ok probe should fail before declaring it as failed
    initialDelaySeconds number
    Number of seconds to wait before the first execution of the probe to be trigerred
    periodSeconds number
    Number of seconds before each execution of the probe
    successThreshold number
    Number of time the probe should success before declaring a failed probe as ok again
    timeoutSeconds number
    Number of seconds within which the check need to respond before declaring it as a failure
    type GetApplicationHealthchecksReadinessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failure_threshold int
    Number of time the an ok probe should fail before declaring it as failed
    initial_delay_seconds int
    Number of seconds to wait before the first execution of the probe to be trigerred
    period_seconds int
    Number of seconds before each execution of the probe
    success_threshold int
    Number of time the probe should success before declaring a failed probe as ok again
    timeout_seconds int
    Number of seconds within which the check need to respond before declaring it as a failure
    type GetApplicationHealthchecksReadinessProbeType
    Kind of check to run for this probe. There can only be one configured at a time
    failureThreshold Number
    Number of time the an ok probe should fail before declaring it as failed
    initialDelaySeconds Number
    Number of seconds to wait before the first execution of the probe to be trigerred
    periodSeconds Number
    Number of seconds before each execution of the probe
    successThreshold Number
    Number of time the probe should success before declaring a failed probe as ok again
    timeoutSeconds Number
    Number of seconds within which the check need to respond before declaring it as a failure
    type Property Map
    Kind of check to run for this probe. There can only be one configured at a time

    GetApplicationHealthchecksReadinessProbeType

    Exec ediri.Qovery.Inputs.GetApplicationHealthchecksReadinessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    Grpc ediri.Qovery.Inputs.GetApplicationHealthchecksReadinessProbeTypeGrpc
    Check that the given port respond to GRPC call
    Http ediri.Qovery.Inputs.GetApplicationHealthchecksReadinessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    Tcp ediri.Qovery.Inputs.GetApplicationHealthchecksReadinessProbeTypeTcp
    Check that the given port accepting connection
    Exec GetApplicationHealthchecksReadinessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    Grpc GetApplicationHealthchecksReadinessProbeTypeGrpc
    Check that the given port respond to GRPC call
    Http GetApplicationHealthchecksReadinessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    Tcp GetApplicationHealthchecksReadinessProbeTypeTcp
    Check that the given port accepting connection
    exec GetApplicationHealthchecksReadinessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    grpc GetApplicationHealthchecksReadinessProbeTypeGrpc
    Check that the given port respond to GRPC call
    http GetApplicationHealthchecksReadinessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp GetApplicationHealthchecksReadinessProbeTypeTcp
    Check that the given port accepting connection
    exec GetApplicationHealthchecksReadinessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    grpc GetApplicationHealthchecksReadinessProbeTypeGrpc
    Check that the given port respond to GRPC call
    http GetApplicationHealthchecksReadinessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp GetApplicationHealthchecksReadinessProbeTypeTcp
    Check that the given port accepting connection
    exec_ GetApplicationHealthchecksReadinessProbeTypeExec
    Check that the given command return an exit 0. Binary should be present in the image
    grpc GetApplicationHealthchecksReadinessProbeTypeGrpc
    Check that the given port respond to GRPC call
    http GetApplicationHealthchecksReadinessProbeTypeHttp
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp GetApplicationHealthchecksReadinessProbeTypeTcp
    Check that the given port accepting connection
    exec Property Map
    Check that the given command return an exit 0. Binary should be present in the image
    grpc Property Map
    Check that the given port respond to GRPC call
    http Property Map
    Check that the given port respond to HTTP call (should return a 2xx response code)
    tcp Property Map
    Check that the given port accepting connection

    GetApplicationHealthchecksReadinessProbeTypeExec

    Commands List<string>
    The command and its arguments to exec
    Commands []string
    The command and its arguments to exec
    commands List<String>
    The command and its arguments to exec
    commands string[]
    The command and its arguments to exec
    commands Sequence[str]
    The command and its arguments to exec
    commands List<String>
    The command and its arguments to exec

    GetApplicationHealthchecksReadinessProbeTypeGrpc

    Port int
    The port number to try to connect to
    Service string
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    Port int
    The port number to try to connect to
    Service string
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port Integer
    The port number to try to connect to
    service String
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port number
    The port number to try to connect to
    service string
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port int
    The port number to try to connect to
    service str
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe
    port Number
    The port number to try to connect to
    service String
    The grpc service to connect to. It needs to implement grpc health protocol. https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/#introducing-grpc-health-probe

    GetApplicationHealthchecksReadinessProbeTypeHttp

    Port int
    The port number to try to connect to
    Scheme string
    if the HTTP GET request should be done in HTTP or HTTPS.
    Path string
    The path that the HTTP GET request. By default it is /
    Port int
    The port number to try to connect to
    Scheme string
    if the HTTP GET request should be done in HTTP or HTTPS.
    Path string
    The path that the HTTP GET request. By default it is /
    port Integer
    The port number to try to connect to
    scheme String
    if the HTTP GET request should be done in HTTP or HTTPS.
    path String
    The path that the HTTP GET request. By default it is /
    port number
    The port number to try to connect to
    scheme string
    if the HTTP GET request should be done in HTTP or HTTPS.
    path string
    The path that the HTTP GET request. By default it is /
    port int
    The port number to try to connect to
    scheme str
    if the HTTP GET request should be done in HTTP or HTTPS.
    path str
    The path that the HTTP GET request. By default it is /
    port Number
    The port number to try to connect to
    scheme String
    if the HTTP GET request should be done in HTTP or HTTPS.
    path String
    The path that the HTTP GET request. By default it is /

    GetApplicationHealthchecksReadinessProbeTypeTcp

    Port int
    The port number to try to connect to
    Host string
    Optional. If the host need to be different than localhost/pod ip
    Port int
    The port number to try to connect to
    Host string
    Optional. If the host need to be different than localhost/pod ip
    port Integer
    The port number to try to connect to
    host String
    Optional. If the host need to be different than localhost/pod ip
    port number
    The port number to try to connect to
    host string
    Optional. If the host need to be different than localhost/pod ip
    port int
    The port number to try to connect to
    host str
    Optional. If the host need to be different than localhost/pod ip
    port Number
    The port number to try to connect to
    host String
    Optional. If the host need to be different than localhost/pod ip

    GetApplicationPort

    ExternalPort int
    External port of the application. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    Id string
    Id of the port.
    InternalPort int
    Internal port of the application. - Must be: >= 1 and <= 65535.
    IsDefault bool
    If this port will be used for the root domain
    Name string
    Name of the port.
    Protocol string
    Protocol used for the port of the application. - Can be: GRPC, HTTP, TCP, UDP. - Default: HTTP.
    PubliclyAccessible bool
    Specify if the port is exposed to the world or not for this application.
    ExternalPort int
    External port of the application. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    Id string
    Id of the port.
    InternalPort int
    Internal port of the application. - Must be: >= 1 and <= 65535.
    IsDefault bool
    If this port will be used for the root domain
    Name string
    Name of the port.
    Protocol string
    Protocol used for the port of the application. - Can be: GRPC, HTTP, TCP, UDP. - Default: HTTP.
    PubliclyAccessible bool
    Specify if the port is exposed to the world or not for this application.
    externalPort Integer
    External port of the application. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    id String
    Id of the port.
    internalPort Integer
    Internal port of the application. - Must be: >= 1 and <= 65535.
    isDefault Boolean
    If this port will be used for the root domain
    name String
    Name of the port.
    protocol String
    Protocol used for the port of the application. - Can be: GRPC, HTTP, TCP, UDP. - Default: HTTP.
    publiclyAccessible Boolean
    Specify if the port is exposed to the world or not for this application.
    externalPort number
    External port of the application. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    id string
    Id of the port.
    internalPort number
    Internal port of the application. - Must be: >= 1 and <= 65535.
    isDefault boolean
    If this port will be used for the root domain
    name string
    Name of the port.
    protocol string
    Protocol used for the port of the application. - Can be: GRPC, HTTP, TCP, UDP. - Default: HTTP.
    publiclyAccessible boolean
    Specify if the port is exposed to the world or not for this application.
    external_port int
    External port of the application. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    id str
    Id of the port.
    internal_port int
    Internal port of the application. - Must be: >= 1 and <= 65535.
    is_default bool
    If this port will be used for the root domain
    name str
    Name of the port.
    protocol str
    Protocol used for the port of the application. - Can be: GRPC, HTTP, TCP, UDP. - Default: HTTP.
    publicly_accessible bool
    Specify if the port is exposed to the world or not for this application.
    externalPort Number
    External port of the application. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    id String
    Id of the port.
    internalPort Number
    Internal port of the application. - Must be: >= 1 and <= 65535.
    isDefault Boolean
    If this port will be used for the root domain
    name String
    Name of the port.
    protocol String
    Protocol used for the port of the application. - Can be: GRPC, HTTP, TCP, UDP. - Default: HTTP.
    publiclyAccessible Boolean
    Specify if the port is exposed to the world or not for this application.

    GetApplicationSecret

    Description string
    Description of the secret.
    Id string
    Id of the secret.
    Key string
    Key of the secret.
    Value string
    Value of the secret.
    Description string
    Description of the secret.
    Id string
    Id of the secret.
    Key string
    Key of the secret.
    Value string
    Value of the secret.
    description String
    Description of the secret.
    id String
    Id of the secret.
    key String
    Key of the secret.
    value String
    Value of the secret.
    description string
    Description of the secret.
    id string
    Id of the secret.
    key string
    Key of the secret.
    value string
    Value of the secret.
    description str
    Description of the secret.
    id str
    Id of the secret.
    key str
    Key of the secret.
    value str
    Value of the secret.
    description String
    Description of the secret.
    id String
    Id of the secret.
    key String
    Key of the secret.
    value String
    Value of the secret.

    GetApplicationSecretAlias

    Description string
    Description of the secret alias.
    Id string
    Id of the secret alias.
    Key string
    Name of the secret alias.
    Value string
    Name of the secret to alias.
    Description string
    Description of the secret alias.
    Id string
    Id of the secret alias.
    Key string
    Name of the secret alias.
    Value string
    Name of the secret to alias.
    description String
    Description of the secret alias.
    id String
    Id of the secret alias.
    key String
    Name of the secret alias.
    value String
    Name of the secret to alias.
    description string
    Description of the secret alias.
    id string
    Id of the secret alias.
    key string
    Name of the secret alias.
    value string
    Name of the secret to alias.
    description str
    Description of the secret alias.
    id str
    Id of the secret alias.
    key str
    Name of the secret alias.
    value str
    Name of the secret to alias.
    description String
    Description of the secret alias.
    id String
    Id of the secret alias.
    key String
    Name of the secret alias.
    value String
    Name of the secret to alias.

    GetApplicationSecretOverride

    Description string
    Description of the secret override.
    Id string
    Id of the secret override.
    Key string
    Name of the secret override.
    Value string
    Value of the secret override.
    Description string
    Description of the secret override.
    Id string
    Id of the secret override.
    Key string
    Name of the secret override.
    Value string
    Value of the secret override.
    description String
    Description of the secret override.
    id String
    Id of the secret override.
    key String
    Name of the secret override.
    value String
    Value of the secret override.
    description string
    Description of the secret override.
    id string
    Id of the secret override.
    key string
    Name of the secret override.
    value string
    Value of the secret override.
    description str
    Description of the secret override.
    id str
    Id of the secret override.
    key str
    Name of the secret override.
    value str
    Value of the secret override.
    description String
    Description of the secret override.
    id String
    Id of the secret override.
    key String
    Name of the secret override.
    value String
    Value of the secret override.

    GetApplicationStorage

    Id string
    Id of the storage.
    MountPoint string
    Mount point of the storage for the application.
    Size int
    Size of the storage for the application in GB [1024MB = 1GB]. - Must be: >= 1.
    Type string
    Type of the storage for the application. - Can be: FAST_SSD.
    Id string
    Id of the storage.
    MountPoint string
    Mount point of the storage for the application.
    Size int
    Size of the storage for the application in GB [1024MB = 1GB]. - Must be: >= 1.
    Type string
    Type of the storage for the application. - Can be: FAST_SSD.
    id String
    Id of the storage.
    mountPoint String
    Mount point of the storage for the application.
    size Integer
    Size of the storage for the application in GB [1024MB = 1GB]. - Must be: >= 1.
    type String
    Type of the storage for the application. - Can be: FAST_SSD.
    id string
    Id of the storage.
    mountPoint string
    Mount point of the storage for the application.
    size number
    Size of the storage for the application in GB [1024MB = 1GB]. - Must be: >= 1.
    type string
    Type of the storage for the application. - Can be: FAST_SSD.
    id str
    Id of the storage.
    mount_point str
    Mount point of the storage for the application.
    size int
    Size of the storage for the application in GB [1024MB = 1GB]. - Must be: >= 1.
    type str
    Type of the storage for the application. - Can be: FAST_SSD.
    id String
    Id of the storage.
    mountPoint String
    Mount point of the storage for the application.
    size Number
    Size of the storage for the application in GB [1024MB = 1GB]. - Must be: >= 1.
    type String
    Type of the storage for the application. - Can be: FAST_SSD.

    Package Details

    Repository
    qovery dirien/pulumi-qovery
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the qovery Terraform Provider.
    qovery logo
    Qovery v0.36.1 published on Monday, Jul 22, 2024 by dirien