1. Packages
  2. Qovery
  3. API Docs
  4. getContainer
Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien

qovery.getContainer

Explore with Pulumi AI

# qovery.Container (Data Source)

Provides a Qovery container resource. This can be used to create and manage Qovery container registry.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@pulumi/qovery";

const myContainer = qovery.getContainer({
    id: "<container_id>",
});
Copy
import pulumi
import pulumi_qovery as qovery

my_container = qovery.get_container(id="<container_id>")
Copy
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.LookupContainer(ctx, &qovery.LookupContainerArgs{
			Id: "<container_id>",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Qovery = Pulumi.Qovery;

return await Deployment.RunAsync(() => 
{
    var myContainer = Qovery.GetContainer.Invoke(new()
    {
        Id = "<container_id>",
    });

});
Copy
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.GetContainerArgs;
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 myContainer = QoveryFunctions.getContainer(GetContainerArgs.builder()
            .id("<container_id>")
            .build());

    }
}
Copy
variables:
  myContainer:
    fn::invoke:
      Function: qovery:getContainer
      Arguments:
        id: <container_id>
Copy

Using getContainer

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 getContainer(args: GetContainerArgs, opts?: InvokeOptions): Promise<GetContainerResult>
function getContainerOutput(args: GetContainerOutputArgs, opts?: InvokeOptions): Output<GetContainerResult>
Copy
def get_container(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,
                  cpu: Optional[int] = None,
                  custom_domains: Optional[Sequence[GetContainerCustomDomain]] = None,
                  deployment_stage_id: Optional[str] = None,
                  entrypoint: Optional[str] = None,
                  environment_variable_aliases: Optional[Sequence[GetContainerEnvironmentVariableAlias]] = None,
                  environment_variable_overrides: Optional[Sequence[GetContainerEnvironmentVariableOverride]] = None,
                  environment_variables: Optional[Sequence[GetContainerEnvironmentVariable]] = None,
                  healthchecks: Optional[GetContainerHealthchecks] = None,
                  icon_uri: Optional[str] = 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,
                  ports: Optional[Sequence[GetContainerPort]] = None,
                  secret_aliases: Optional[Sequence[GetContainerSecretAlias]] = None,
                  secret_overrides: Optional[Sequence[GetContainerSecretOverride]] = None,
                  secrets: Optional[Sequence[GetContainerSecret]] = None,
                  storages: Optional[Sequence[GetContainerStorage]] = None,
                  opts: Optional[InvokeOptions] = None) -> GetContainerResult
def get_container_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,
                  cpu: Optional[pulumi.Input[int]] = None,
                  custom_domains: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerCustomDomainArgs]]]] = None,
                  deployment_stage_id: Optional[pulumi.Input[str]] = None,
                  entrypoint: Optional[pulumi.Input[str]] = None,
                  environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableAliasArgs]]]] = None,
                  environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableOverrideArgs]]]] = None,
                  environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableArgs]]]] = None,
                  healthchecks: Optional[pulumi.Input[GetContainerHealthchecksArgs]] = None,
                  icon_uri: Optional[pulumi.Input[str]] = 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,
                  ports: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerPortArgs]]]] = None,
                  secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretAliasArgs]]]] = None,
                  secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretOverrideArgs]]]] = None,
                  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretArgs]]]] = None,
                  storages: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerStorageArgs]]]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetContainerResult]
Copy
func LookupContainer(ctx *Context, args *LookupContainerArgs, opts ...InvokeOption) (*LookupContainerResult, error)
func LookupContainerOutput(ctx *Context, args *LookupContainerOutputArgs, opts ...InvokeOption) LookupContainerResultOutput
Copy

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

public static class GetContainer 
{
    public static Task<GetContainerResult> InvokeAsync(GetContainerArgs args, InvokeOptions? opts = null)
    public static Output<GetContainerResult> Invoke(GetContainerInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetContainerResult> getContainer(GetContainerArgs args, InvokeOptions options)
public static Output<GetContainerResult> getContainer(GetContainerArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: qovery:index/getContainer:getContainer
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Id This property is required. string
AdvancedSettingsJson string
AnnotationsGroupIds List<string>
Arguments List<string>
AutoDeploy bool
AutoPreview bool
Cpu int
CustomDomains List<ediri.Qovery.Inputs.GetContainerCustomDomain>
DeploymentStageId string
Entrypoint string
EnvironmentVariableAliases List<ediri.Qovery.Inputs.GetContainerEnvironmentVariableAlias>
EnvironmentVariableOverrides List<ediri.Qovery.Inputs.GetContainerEnvironmentVariableOverride>
EnvironmentVariables List<ediri.Qovery.Inputs.GetContainerEnvironmentVariable>
Healthchecks ediri.Qovery.Inputs.GetContainerHealthchecks
IconUri string
LabelsGroupIds List<string>
MaxRunningInstances int
Memory int
MinRunningInstances int
Ports List<ediri.Qovery.Inputs.GetContainerPort>
SecretAliases List<ediri.Qovery.Inputs.GetContainerSecretAlias>
SecretOverrides List<ediri.Qovery.Inputs.GetContainerSecretOverride>
Secrets List<ediri.Qovery.Inputs.GetContainerSecret>
Storages List<ediri.Qovery.Inputs.GetContainerStorage>
id This property is required. str
advanced_settings_json str
annotations_group_ids Sequence[str]
arguments Sequence[str]
auto_deploy bool
auto_preview bool
cpu int
custom_domains Sequence[GetContainerCustomDomain]
deployment_stage_id str
entrypoint str
environment_variable_aliases Sequence[GetContainerEnvironmentVariableAlias]
environment_variable_overrides Sequence[GetContainerEnvironmentVariableOverride]
environment_variables Sequence[GetContainerEnvironmentVariable]
healthchecks GetContainerHealthchecks
icon_uri str
labels_group_ids Sequence[str]
max_running_instances int
memory int
min_running_instances int
ports Sequence[GetContainerPort]
secret_aliases Sequence[GetContainerSecretAlias]
secret_overrides Sequence[GetContainerSecretOverride]
secrets Sequence[GetContainerSecret]
storages Sequence[GetContainerStorage]

getContainer Result

The following output properties are available:

AdvancedSettingsJson string
AutoDeploy bool
AutoPreview bool
BuiltInEnvironmentVariables List<ediri.Qovery.Outputs.GetContainerBuiltInEnvironmentVariable>
Cpu int
DeploymentStageId string
Entrypoint string
EnvironmentId string
ExternalHost string
IconUri string
Id string
ImageName string
InternalHost string
MaxRunningInstances int
Memory int
MinRunningInstances int
Name string
Ports List<ediri.Qovery.Outputs.GetContainerPort>
RegistryId string
Storages List<ediri.Qovery.Outputs.GetContainerStorage>
Tag string
AnnotationsGroupIds List<string>
Arguments List<string>
CustomDomains List<ediri.Qovery.Outputs.GetContainerCustomDomain>
EnvironmentVariableAliases List<ediri.Qovery.Outputs.GetContainerEnvironmentVariableAlias>
EnvironmentVariableOverrides List<ediri.Qovery.Outputs.GetContainerEnvironmentVariableOverride>
EnvironmentVariables List<ediri.Qovery.Outputs.GetContainerEnvironmentVariable>
Healthchecks ediri.Qovery.Outputs.GetContainerHealthchecks
LabelsGroupIds List<string>
SecretAliases List<ediri.Qovery.Outputs.GetContainerSecretAlias>
SecretOverrides List<ediri.Qovery.Outputs.GetContainerSecretOverride>
Secrets List<ediri.Qovery.Outputs.GetContainerSecret>
AdvancedSettingsJson string
AutoDeploy bool
AutoPreview bool
BuiltInEnvironmentVariables []GetContainerBuiltInEnvironmentVariable
Cpu int
DeploymentStageId string
Entrypoint string
EnvironmentId string
ExternalHost string
IconUri string
Id string
ImageName string
InternalHost string
MaxRunningInstances int
Memory int
MinRunningInstances int
Name string
Ports []GetContainerPort
RegistryId string
Storages []GetContainerStorage
Tag string
AnnotationsGroupIds []string
Arguments []string
CustomDomains []GetContainerCustomDomain
EnvironmentVariableAliases []GetContainerEnvironmentVariableAlias
EnvironmentVariableOverrides []GetContainerEnvironmentVariableOverride
EnvironmentVariables []GetContainerEnvironmentVariable
Healthchecks GetContainerHealthchecks
LabelsGroupIds []string
SecretAliases []GetContainerSecretAlias
SecretOverrides []GetContainerSecretOverride
Secrets []GetContainerSecret
advancedSettingsJson String
autoDeploy Boolean
autoPreview Boolean
builtInEnvironmentVariables List<GetContainerBuiltInEnvironmentVariable>
cpu Integer
deploymentStageId String
entrypoint String
environmentId String
externalHost String
iconUri String
id String
imageName String
internalHost String
maxRunningInstances Integer
memory Integer
minRunningInstances Integer
name String
ports List<GetContainerPort>
registryId String
storages List<GetContainerStorage>
tag String
annotationsGroupIds List<String>
arguments List<String>
customDomains List<GetContainerCustomDomain>
environmentVariableAliases List<GetContainerEnvironmentVariableAlias>
environmentVariableOverrides List<GetContainerEnvironmentVariableOverride>
environmentVariables List<GetContainerEnvironmentVariable>
healthchecks GetContainerHealthchecks
labelsGroupIds List<String>
secretAliases List<GetContainerSecretAlias>
secretOverrides List<GetContainerSecretOverride>
secrets List<GetContainerSecret>
advanced_settings_json str
auto_deploy bool
auto_preview bool
built_in_environment_variables Sequence[GetContainerBuiltInEnvironmentVariable]
cpu int
deployment_stage_id str
entrypoint str
environment_id str
external_host str
icon_uri str
id str
image_name str
internal_host str
max_running_instances int
memory int
min_running_instances int
name str
ports Sequence[GetContainerPort]
registry_id str
storages Sequence[GetContainerStorage]
tag str
annotations_group_ids Sequence[str]
arguments Sequence[str]
custom_domains Sequence[GetContainerCustomDomain]
environment_variable_aliases Sequence[GetContainerEnvironmentVariableAlias]
environment_variable_overrides Sequence[GetContainerEnvironmentVariableOverride]
environment_variables Sequence[GetContainerEnvironmentVariable]
healthchecks GetContainerHealthchecks
labels_group_ids Sequence[str]
secret_aliases Sequence[GetContainerSecretAlias]
secret_overrides Sequence[GetContainerSecretOverride]
secrets Sequence[GetContainerSecret]

Supporting Types

GetContainerBuiltInEnvironmentVariable

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

GetContainerCustomDomain

Domain This property is required. string
Your custom domain.
Id This property is required. string
Id of the custom domain.
Status This property is required. string
Status of the custom domain.
ValidationDomain This property is required. 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.
UseCdn bool
Indicates if the custom domain is behind a CDN (i.e Cloudflare). This will condition the way we are checking CNAME before & during a deployment:

  • If true then we only check the domain points to an IP
  • If false then we check that the domain resolves to the correct service Load Balancer
Domain This property is required. string
Your custom domain.
Id This property is required. string
Id of the custom domain.
Status This property is required. string
Status of the custom domain.
ValidationDomain This property is required. 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.
UseCdn bool
Indicates if the custom domain is behind a CDN (i.e Cloudflare). This will condition the way we are checking CNAME before & during a deployment:

  • If true then we only check the domain points to an IP
  • If false then we check that the domain resolves to the correct service Load Balancer
domain This property is required. String
Your custom domain.
id This property is required. String
Id of the custom domain.
status This property is required. String
Status of the custom domain.
validationDomain This property is required. 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.
useCdn Boolean
Indicates if the custom domain is behind a CDN (i.e Cloudflare). This will condition the way we are checking CNAME before & during a deployment:

  • If true then we only check the domain points to an IP
  • If false then we check that the domain resolves to the correct service Load Balancer
domain This property is required. string
Your custom domain.
id This property is required. string
Id of the custom domain.
status This property is required. string
Status of the custom domain.
validationDomain This property is required. 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.
useCdn boolean
Indicates if the custom domain is behind a CDN (i.e Cloudflare). This will condition the way we are checking CNAME before & during a deployment:

  • If true then we only check the domain points to an IP
  • If false then we check that the domain resolves to the correct service Load Balancer
domain This property is required. str
Your custom domain.
id This property is required. str
Id of the custom domain.
status This property is required. str
Status of the custom domain.
validation_domain This property is required. 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.
use_cdn bool
Indicates if the custom domain is behind a CDN (i.e Cloudflare). This will condition the way we are checking CNAME before & during a deployment:

  • If true then we only check the domain points to an IP
  • If false then we check that the domain resolves to the correct service Load Balancer
domain This property is required. String
Your custom domain.
id This property is required. String
Id of the custom domain.
status This property is required. String
Status of the custom domain.
validationDomain This property is required. 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.
useCdn Boolean
Indicates if the custom domain is behind a CDN (i.e Cloudflare). This will condition the way we are checking CNAME before & during a deployment:

  • If true then we only check the domain points to an IP
  • If false then we check that the domain resolves to the correct service Load Balancer

GetContainerEnvironmentVariable

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

GetContainerEnvironmentVariableAlias

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

GetContainerEnvironmentVariableOverride

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

GetContainerHealthchecks

LivenessProbe ediri.Qovery.Inputs.GetContainerHealthchecksLivenessProbe
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.GetContainerHealthchecksReadinessProbe
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 GetContainerHealthchecksLivenessProbe
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 GetContainerHealthchecksReadinessProbe
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 GetContainerHealthchecksLivenessProbe
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 GetContainerHealthchecksReadinessProbe
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 GetContainerHealthchecksLivenessProbe
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 GetContainerHealthchecksReadinessProbe
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 GetContainerHealthchecksLivenessProbe
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 GetContainerHealthchecksReadinessProbe
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.

GetContainerHealthchecksLivenessProbe

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

GetContainerHealthchecksLivenessProbeType

Exec ediri.Qovery.Inputs.GetContainerHealthchecksLivenessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
Grpc ediri.Qovery.Inputs.GetContainerHealthchecksLivenessProbeTypeGrpc
Check that the given port respond to GRPC call
Http ediri.Qovery.Inputs.GetContainerHealthchecksLivenessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
Tcp ediri.Qovery.Inputs.GetContainerHealthchecksLivenessProbeTypeTcp
Check that the given port accepting connection
Exec GetContainerHealthchecksLivenessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
Grpc GetContainerHealthchecksLivenessProbeTypeGrpc
Check that the given port respond to GRPC call
Http GetContainerHealthchecksLivenessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
Tcp GetContainerHealthchecksLivenessProbeTypeTcp
Check that the given port accepting connection
exec GetContainerHealthchecksLivenessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
grpc GetContainerHealthchecksLivenessProbeTypeGrpc
Check that the given port respond to GRPC call
http GetContainerHealthchecksLivenessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
tcp GetContainerHealthchecksLivenessProbeTypeTcp
Check that the given port accepting connection
exec GetContainerHealthchecksLivenessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
grpc GetContainerHealthchecksLivenessProbeTypeGrpc
Check that the given port respond to GRPC call
http GetContainerHealthchecksLivenessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
tcp GetContainerHealthchecksLivenessProbeTypeTcp
Check that the given port accepting connection
exec_ GetContainerHealthchecksLivenessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
grpc GetContainerHealthchecksLivenessProbeTypeGrpc
Check that the given port respond to GRPC call
http GetContainerHealthchecksLivenessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
tcp GetContainerHealthchecksLivenessProbeTypeTcp
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

GetContainerHealthchecksLivenessProbeTypeExec

Commands This property is required. List<string>
The command and its arguments to exec
Commands This property is required. []string
The command and its arguments to exec
commands This property is required. List<String>
The command and its arguments to exec
commands This property is required. string[]
The command and its arguments to exec
commands This property is required. Sequence[str]
The command and its arguments to exec
commands This property is required. List<String>
The command and its arguments to exec

GetContainerHealthchecksLivenessProbeTypeGrpc

Port This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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

GetContainerHealthchecksLivenessProbeTypeHttp

Port This property is required. int
The port number to try to connect to
Scheme This property is required. 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 This property is required. int
The port number to try to connect to
Scheme This property is required. 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 This property is required. Integer
The port number to try to connect to
scheme This property is required. 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 This property is required. number
The port number to try to connect to
scheme This property is required. 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 This property is required. int
The port number to try to connect to
scheme This property is required. 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 This property is required. Number
The port number to try to connect to
scheme This property is required. 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 /

GetContainerHealthchecksLivenessProbeTypeTcp

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

GetContainerHealthchecksReadinessProbe

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

GetContainerHealthchecksReadinessProbeType

Exec ediri.Qovery.Inputs.GetContainerHealthchecksReadinessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
Grpc ediri.Qovery.Inputs.GetContainerHealthchecksReadinessProbeTypeGrpc
Check that the given port respond to GRPC call
Http ediri.Qovery.Inputs.GetContainerHealthchecksReadinessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
Tcp ediri.Qovery.Inputs.GetContainerHealthchecksReadinessProbeTypeTcp
Check that the given port accepting connection
Exec GetContainerHealthchecksReadinessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
Grpc GetContainerHealthchecksReadinessProbeTypeGrpc
Check that the given port respond to GRPC call
Http GetContainerHealthchecksReadinessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
Tcp GetContainerHealthchecksReadinessProbeTypeTcp
Check that the given port accepting connection
exec GetContainerHealthchecksReadinessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
grpc GetContainerHealthchecksReadinessProbeTypeGrpc
Check that the given port respond to GRPC call
http GetContainerHealthchecksReadinessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
tcp GetContainerHealthchecksReadinessProbeTypeTcp
Check that the given port accepting connection
exec GetContainerHealthchecksReadinessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
grpc GetContainerHealthchecksReadinessProbeTypeGrpc
Check that the given port respond to GRPC call
http GetContainerHealthchecksReadinessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
tcp GetContainerHealthchecksReadinessProbeTypeTcp
Check that the given port accepting connection
exec_ GetContainerHealthchecksReadinessProbeTypeExec
Check that the given command return an exit 0. Binary should be present in the image
grpc GetContainerHealthchecksReadinessProbeTypeGrpc
Check that the given port respond to GRPC call
http GetContainerHealthchecksReadinessProbeTypeHttp
Check that the given port respond to HTTP call (should return a 2xx response code)
tcp GetContainerHealthchecksReadinessProbeTypeTcp
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

GetContainerHealthchecksReadinessProbeTypeExec

Commands This property is required. List<string>
The command and its arguments to exec
Commands This property is required. []string
The command and its arguments to exec
commands This property is required. List<String>
The command and its arguments to exec
commands This property is required. string[]
The command and its arguments to exec
commands This property is required. Sequence[str]
The command and its arguments to exec
commands This property is required. List<String>
The command and its arguments to exec

GetContainerHealthchecksReadinessProbeTypeGrpc

Port This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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

GetContainerHealthchecksReadinessProbeTypeHttp

Port This property is required. int
The port number to try to connect to
Scheme This property is required. 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 This property is required. int
The port number to try to connect to
Scheme This property is required. 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 This property is required. Integer
The port number to try to connect to
scheme This property is required. 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 This property is required. number
The port number to try to connect to
scheme This property is required. 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 This property is required. int
The port number to try to connect to
scheme This property is required. 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 This property is required. Number
The port number to try to connect to
scheme This property is required. 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 /

GetContainerHealthchecksReadinessProbeTypeTcp

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

GetContainerPort

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

GetContainerSecret

Description This property is required. string
Description of the secret.
Id This property is required. string
Id of the secret.
Key This property is required. string
Key of the secret.
Value This property is required. string
Value of the secret.
Description This property is required. string
Description of the secret.
Id This property is required. string
Id of the secret.
Key This property is required. string
Key of the secret.
Value This property is required. string
Value of the secret.
description This property is required. String
Description of the secret.
id This property is required. String
Id of the secret.
key This property is required. String
Key of the secret.
value This property is required. String
Value of the secret.
description This property is required. string
Description of the secret.
id This property is required. string
Id of the secret.
key This property is required. string
Key of the secret.
value This property is required. string
Value of the secret.
description This property is required. str
Description of the secret.
id This property is required. str
Id of the secret.
key This property is required. str
Key of the secret.
value This property is required. str
Value of the secret.
description This property is required. String
Description of the secret.
id This property is required. String
Id of the secret.
key This property is required. String
Key of the secret.
value This property is required. String
Value of the secret.

GetContainerSecretAlias

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

GetContainerSecretOverride

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

GetContainerStorage

Id This property is required. string
Id of the storage.
MountPoint This property is required. string
Mount point of the storage for the container.
Size This property is required. int
Size of the storage for the container in GB [1024MB = 1GB]. - Must be: >= 1.
Type This property is required. string
Type of the storage for the container. - Can be: FAST_SSD.
Id This property is required. string
Id of the storage.
MountPoint This property is required. string
Mount point of the storage for the container.
Size This property is required. int
Size of the storage for the container in GB [1024MB = 1GB]. - Must be: >= 1.
Type This property is required. string
Type of the storage for the container. - Can be: FAST_SSD.
id This property is required. String
Id of the storage.
mountPoint This property is required. String
Mount point of the storage for the container.
size This property is required. Integer
Size of the storage for the container in GB [1024MB = 1GB]. - Must be: >= 1.
type This property is required. String
Type of the storage for the container. - Can be: FAST_SSD.
id This property is required. string
Id of the storage.
mountPoint This property is required. string
Mount point of the storage for the container.
size This property is required. number
Size of the storage for the container in GB [1024MB = 1GB]. - Must be: >= 1.
type This property is required. string
Type of the storage for the container. - Can be: FAST_SSD.
id This property is required. str
Id of the storage.
mount_point This property is required. str
Mount point of the storage for the container.
size This property is required. int
Size of the storage for the container in GB [1024MB = 1GB]. - Must be: >= 1.
type This property is required. str
Type of the storage for the container. - Can be: FAST_SSD.
id This property is required. String
Id of the storage.
mountPoint This property is required. String
Mount point of the storage for the container.
size This property is required. Number
Size of the storage for the container in GB [1024MB = 1GB]. - Must be: >= 1.
type This property is required. String
Type of the storage for the container. - 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.