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

qovery.getJob

Explore with Pulumi AI

# qovery.Job (Data Source)

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

Example Usage

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

const myJob = qovery.getJob({
    id: "<job_id>",
});
Copy
import pulumi
import pulumi_qovery as qovery

my_job = qovery.get_job(id="<job_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.LookupJob(ctx, &qovery.LookupJobArgs{
			Id: "<job_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 myJob = Qovery.GetJob.Invoke(new()
    {
        Id = "<job_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.GetJobArgs;
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 myJob = QoveryFunctions.getJob(GetJobArgs.builder()
            .id("<job_id>")
            .build());

    }
}
Copy
variables:
  myJob:
    fn::invoke:
      Function: qovery:getJob
      Arguments:
        id: <job_id>
Copy

Using getJob

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 getJob(args: GetJobArgs, opts?: InvokeOptions): Promise<GetJobResult>
function getJobOutput(args: GetJobOutputArgs, opts?: InvokeOptions): Output<GetJobResult>
Copy
def get_job(advanced_settings_json: Optional[str] = None,
            annotations_group_ids: Optional[Sequence[str]] = None,
            auto_deploy: Optional[bool] = None,
            auto_preview: Optional[bool] = None,
            cpu: Optional[int] = None,
            deployment_restrictions: Optional[Sequence[GetJobDeploymentRestriction]] = None,
            deployment_stage_id: Optional[str] = None,
            environment_variable_aliases: Optional[Sequence[GetJobEnvironmentVariableAlias]] = None,
            environment_variable_overrides: Optional[Sequence[GetJobEnvironmentVariableOverride]] = None,
            environment_variables: Optional[Sequence[GetJobEnvironmentVariable]] = None,
            healthchecks: Optional[GetJobHealthchecks] = None,
            icon_uri: Optional[str] = None,
            id: Optional[str] = None,
            labels_group_ids: Optional[Sequence[str]] = None,
            max_duration_seconds: Optional[int] = None,
            max_nb_restart: Optional[int] = None,
            memory: Optional[int] = None,
            port: Optional[int] = None,
            secret_aliases: Optional[Sequence[GetJobSecretAlias]] = None,
            secret_overrides: Optional[Sequence[GetJobSecretOverride]] = None,
            secrets: Optional[Sequence[GetJobSecret]] = None,
            source: Optional[GetJobSource] = None,
            opts: Optional[InvokeOptions] = None) -> GetJobResult
def get_job_output(advanced_settings_json: Optional[pulumi.Input[str]] = None,
            annotations_group_ids: 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,
            deployment_restrictions: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobDeploymentRestrictionArgs]]]] = None,
            deployment_stage_id: Optional[pulumi.Input[str]] = None,
            environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobEnvironmentVariableAliasArgs]]]] = None,
            environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobEnvironmentVariableOverrideArgs]]]] = None,
            environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobEnvironmentVariableArgs]]]] = None,
            healthchecks: Optional[pulumi.Input[GetJobHealthchecksArgs]] = 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_duration_seconds: Optional[pulumi.Input[int]] = None,
            max_nb_restart: Optional[pulumi.Input[int]] = None,
            memory: Optional[pulumi.Input[int]] = None,
            port: Optional[pulumi.Input[int]] = None,
            secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobSecretAliasArgs]]]] = None,
            secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobSecretOverrideArgs]]]] = None,
            secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobSecretArgs]]]] = None,
            source: Optional[pulumi.Input[GetJobSourceArgs]] = None,
            opts: Optional[InvokeOptions] = None) -> Output[GetJobResult]
Copy
func LookupJob(ctx *Context, args *LookupJobArgs, opts ...InvokeOption) (*LookupJobResult, error)
func LookupJobOutput(ctx *Context, args *LookupJobOutputArgs, opts ...InvokeOption) LookupJobResultOutput
Copy

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

public static class GetJob 
{
    public static Task<GetJobResult> InvokeAsync(GetJobArgs args, InvokeOptions? opts = null)
    public static Output<GetJobResult> Invoke(GetJobInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
public static Output<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: qovery:index/getJob:getJob
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Id This property is required. string
AdvancedSettingsJson string
AnnotationsGroupIds List<string>
AutoDeploy bool
AutoPreview bool
Cpu int
DeploymentRestrictions List<ediri.Qovery.Inputs.GetJobDeploymentRestriction>
DeploymentStageId string
EnvironmentVariableAliases List<ediri.Qovery.Inputs.GetJobEnvironmentVariableAlias>
EnvironmentVariableOverrides List<ediri.Qovery.Inputs.GetJobEnvironmentVariableOverride>
EnvironmentVariables List<ediri.Qovery.Inputs.GetJobEnvironmentVariable>
Healthchecks ediri.Qovery.Inputs.GetJobHealthchecks
IconUri string
LabelsGroupIds List<string>
MaxDurationSeconds int
MaxNbRestart int
Memory int
Port int
SecretAliases List<ediri.Qovery.Inputs.GetJobSecretAlias>
SecretOverrides List<ediri.Qovery.Inputs.GetJobSecretOverride>
Secrets List<ediri.Qovery.Inputs.GetJobSecret>
Source ediri.Qovery.Inputs.GetJobSource

getJob Result

The following output properties are available:

AdvancedSettingsJson string
AutoDeploy bool
AutoPreview bool
BuiltInEnvironmentVariables List<ediri.Qovery.Outputs.GetJobBuiltInEnvironmentVariable>
DeploymentStageId string
EnvironmentId string
EnvironmentVariableAliases List<ediri.Qovery.Outputs.GetJobEnvironmentVariableAlias>
ExternalHost string
IconUri string
Id string
InternalHost string
MaxDurationSeconds int
MaxNbRestart int
Name string
Port int
Schedule ediri.Qovery.Outputs.GetJobSchedule
Source ediri.Qovery.Outputs.GetJobSource
AnnotationsGroupIds List<string>
Cpu int
DeploymentRestrictions List<ediri.Qovery.Outputs.GetJobDeploymentRestriction>
EnvironmentVariableOverrides List<ediri.Qovery.Outputs.GetJobEnvironmentVariableOverride>
EnvironmentVariables List<ediri.Qovery.Outputs.GetJobEnvironmentVariable>
Healthchecks ediri.Qovery.Outputs.GetJobHealthchecks
LabelsGroupIds List<string>
Memory int
SecretAliases List<ediri.Qovery.Outputs.GetJobSecretAlias>
SecretOverrides List<ediri.Qovery.Outputs.GetJobSecretOverride>
Secrets List<ediri.Qovery.Outputs.GetJobSecret>
advancedSettingsJson String
autoDeploy Boolean
autoPreview Boolean
builtInEnvironmentVariables List<GetJobBuiltInEnvironmentVariable>
deploymentStageId String
environmentId String
environmentVariableAliases List<GetJobEnvironmentVariableAlias>
externalHost String
iconUri String
id String
internalHost String
maxDurationSeconds Integer
maxNbRestart Integer
name String
port Integer
schedule GetJobSchedule
source GetJobSource
annotationsGroupIds List<String>
cpu Integer
deploymentRestrictions List<GetJobDeploymentRestriction>
environmentVariableOverrides List<GetJobEnvironmentVariableOverride>
environmentVariables List<GetJobEnvironmentVariable>
healthchecks GetJobHealthchecks
labelsGroupIds List<String>
memory Integer
secretAliases List<GetJobSecretAlias>
secretOverrides List<GetJobSecretOverride>
secrets List<GetJobSecret>
advanced_settings_json str
auto_deploy bool
auto_preview bool
built_in_environment_variables Sequence[GetJobBuiltInEnvironmentVariable]
deployment_stage_id str
environment_id str
environment_variable_aliases Sequence[GetJobEnvironmentVariableAlias]
external_host str
icon_uri str
id str
internal_host str
max_duration_seconds int
max_nb_restart int
name str
port int
schedule GetJobSchedule
source GetJobSource
annotations_group_ids Sequence[str]
cpu int
deployment_restrictions Sequence[GetJobDeploymentRestriction]
environment_variable_overrides Sequence[GetJobEnvironmentVariableOverride]
environment_variables Sequence[GetJobEnvironmentVariable]
healthchecks GetJobHealthchecks
labels_group_ids Sequence[str]
memory int
secret_aliases Sequence[GetJobSecretAlias]
secret_overrides Sequence[GetJobSecretOverride]
secrets Sequence[GetJobSecret]

Supporting Types

GetJobBuiltInEnvironmentVariable

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.

GetJobDeploymentRestriction

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

GetJobEnvironmentVariable

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.

GetJobEnvironmentVariableAlias

Description This property is required. string
Description of the environment variable.
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.
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.
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.
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.
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.
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.

GetJobEnvironmentVariableOverride

Description This property is required. string
Description of the environment variable.
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.
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.
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.
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.
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.
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.

GetJobHealthchecks

LivenessProbe ediri.Qovery.Inputs.GetJobHealthchecksLivenessProbe
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.GetJobHealthchecksReadinessProbe
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 GetJobHealthchecksLivenessProbe
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 GetJobHealthchecksReadinessProbe
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 GetJobHealthchecksLivenessProbe
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 GetJobHealthchecksReadinessProbe
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 GetJobHealthchecksLivenessProbe
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 GetJobHealthchecksReadinessProbe
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 GetJobHealthchecksLivenessProbe
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 GetJobHealthchecksReadinessProbe
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.

GetJobHealthchecksLivenessProbe

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.GetJobHealthchecksLivenessProbeType
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. GetJobHealthchecksLivenessProbeType
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. GetJobHealthchecksLivenessProbeType
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. GetJobHealthchecksLivenessProbeType
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. GetJobHealthchecksLivenessProbeType
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

GetJobHealthchecksLivenessProbeType

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

GetJobHealthchecksLivenessProbeTypeExec

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

GetJobHealthchecksLivenessProbeTypeGrpc

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

GetJobHealthchecksLivenessProbeTypeHttp

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 /

GetJobHealthchecksLivenessProbeTypeTcp

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

GetJobHealthchecksReadinessProbe

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.GetJobHealthchecksReadinessProbeType
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. GetJobHealthchecksReadinessProbeType
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. GetJobHealthchecksReadinessProbeType
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. GetJobHealthchecksReadinessProbeType
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. GetJobHealthchecksReadinessProbeType
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

GetJobHealthchecksReadinessProbeType

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

GetJobHealthchecksReadinessProbeTypeExec

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

GetJobHealthchecksReadinessProbeTypeGrpc

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

GetJobHealthchecksReadinessProbeTypeHttp

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 /

GetJobHealthchecksReadinessProbeTypeTcp

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

GetJobSchedule

Cronjob This property is required. ediri.Qovery.Inputs.GetJobScheduleCronjob
Job's cron.
LifecycleType This property is required. string
Type of the lifecycle job. - Can be: CLOUDFORMATION, GENERIC, TERRAFORM.
OnDelete This property is required. ediri.Qovery.Inputs.GetJobScheduleOnDelete
Job's schedule on delete.
OnStart This property is required. ediri.Qovery.Inputs.GetJobScheduleOnStart
Job's schedule on start.
OnStop This property is required. ediri.Qovery.Inputs.GetJobScheduleOnStop
Job's schedule on stop.
Cronjob This property is required. GetJobScheduleCronjob
Job's cron.
LifecycleType This property is required. string
Type of the lifecycle job. - Can be: CLOUDFORMATION, GENERIC, TERRAFORM.
OnDelete This property is required. GetJobScheduleOnDelete
Job's schedule on delete.
OnStart This property is required. GetJobScheduleOnStart
Job's schedule on start.
OnStop This property is required. GetJobScheduleOnStop
Job's schedule on stop.
cronjob This property is required. GetJobScheduleCronjob
Job's cron.
lifecycleType This property is required. String
Type of the lifecycle job. - Can be: CLOUDFORMATION, GENERIC, TERRAFORM.
onDelete This property is required. GetJobScheduleOnDelete
Job's schedule on delete.
onStart This property is required. GetJobScheduleOnStart
Job's schedule on start.
onStop This property is required. GetJobScheduleOnStop
Job's schedule on stop.
cronjob This property is required. GetJobScheduleCronjob
Job's cron.
lifecycleType This property is required. string
Type of the lifecycle job. - Can be: CLOUDFORMATION, GENERIC, TERRAFORM.
onDelete This property is required. GetJobScheduleOnDelete
Job's schedule on delete.
onStart This property is required. GetJobScheduleOnStart
Job's schedule on start.
onStop This property is required. GetJobScheduleOnStop
Job's schedule on stop.
cronjob This property is required. GetJobScheduleCronjob
Job's cron.
lifecycle_type This property is required. str
Type of the lifecycle job. - Can be: CLOUDFORMATION, GENERIC, TERRAFORM.
on_delete This property is required. GetJobScheduleOnDelete
Job's schedule on delete.
on_start This property is required. GetJobScheduleOnStart
Job's schedule on start.
on_stop This property is required. GetJobScheduleOnStop
Job's schedule on stop.
cronjob This property is required. Property Map
Job's cron.
lifecycleType This property is required. String
Type of the lifecycle job. - Can be: CLOUDFORMATION, GENERIC, TERRAFORM.
onDelete This property is required. Property Map
Job's schedule on delete.
onStart This property is required. Property Map
Job's schedule on start.
onStop This property is required. Property Map
Job's schedule on stop.

GetJobScheduleCronjob

Command This property is required. ediri.Qovery.Inputs.GetJobScheduleCronjobCommand
Job's cron command.
Schedule This property is required. string
Job's cron string.
Command This property is required. GetJobScheduleCronjobCommand
Job's cron command.
Schedule This property is required. string
Job's cron string.
command This property is required. GetJobScheduleCronjobCommand
Job's cron command.
schedule This property is required. String
Job's cron string.
command This property is required. GetJobScheduleCronjobCommand
Job's cron command.
schedule This property is required. string
Job's cron string.
command This property is required. GetJobScheduleCronjobCommand
Job's cron command.
schedule This property is required. str
Job's cron string.
command This property is required. Property Map
Job's cron command.
schedule This property is required. String
Job's cron string.

GetJobScheduleCronjobCommand

Arguments This property is required. List<string>
List of arguments of this job.
Entrypoint This property is required. string
Entrypoint of the job.
Arguments This property is required. []string
List of arguments of this job.
Entrypoint This property is required. string
Entrypoint of the job.
arguments This property is required. List<String>
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.
arguments This property is required. string[]
List of arguments of this job.
entrypoint This property is required. string
Entrypoint of the job.
arguments This property is required. Sequence[str]
List of arguments of this job.
entrypoint This property is required. str
Entrypoint of the job.
arguments This property is required. List<String>
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.

GetJobScheduleOnDelete

Arguments This property is required. List<string>
List of arguments of this job.
Entrypoint This property is required. string
Entrypoint of the job.
Arguments This property is required. []string
List of arguments of this job.
Entrypoint This property is required. string
Entrypoint of the job.
arguments This property is required. List<String>
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.
arguments This property is required. string[]
List of arguments of this job.
entrypoint This property is required. string
Entrypoint of the job.
arguments This property is required. Sequence[str]
List of arguments of this job.
entrypoint This property is required. str
Entrypoint of the job.
arguments This property is required. List<String>
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.

GetJobScheduleOnStart

Entrypoint This property is required. string
Entrypoint of the job.
Arguments List<string>
List of arguments of this job.
Entrypoint This property is required. string
Entrypoint of the job.
Arguments []string
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.
arguments List<String>
List of arguments of this job.
entrypoint This property is required. string
Entrypoint of the job.
arguments string[]
List of arguments of this job.
entrypoint This property is required. str
Entrypoint of the job.
arguments Sequence[str]
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.
arguments List<String>
List of arguments of this job.

GetJobScheduleOnStop

Entrypoint This property is required. string
Entrypoint of the job.
Arguments List<string>
List of arguments of this job.
Entrypoint This property is required. string
Entrypoint of the job.
Arguments []string
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.
arguments List<String>
List of arguments of this job.
entrypoint This property is required. string
Entrypoint of the job.
arguments string[]
List of arguments of this job.
entrypoint This property is required. str
Entrypoint of the job.
arguments Sequence[str]
List of arguments of this job.
entrypoint This property is required. String
Entrypoint of the job.
arguments List<String>
List of arguments of this job.

GetJobSecret

Description This property is required. string
Description of the environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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.

GetJobSecretAlias

Description This property is required. string
Description of the environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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.

GetJobSecretOverride

Description This property is required. string
Description of the environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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 environment variable.
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.

GetJobSource

Docker This property is required. ediri.Qovery.Inputs.GetJobSourceDocker
Job's docker source.
Image This property is required. ediri.Qovery.Inputs.GetJobSourceImage
Job's image source.
Docker This property is required. GetJobSourceDocker
Job's docker source.
Image This property is required. GetJobSourceImage
Job's image source.
docker This property is required. GetJobSourceDocker
Job's docker source.
image This property is required. GetJobSourceImage
Job's image source.
docker This property is required. GetJobSourceDocker
Job's docker source.
image This property is required. GetJobSourceImage
Job's image source.
docker This property is required. GetJobSourceDocker
Job's docker source.
image This property is required. GetJobSourceImage
Job's image source.
docker This property is required. Property Map
Job's docker source.
image This property is required. Property Map
Job's image source.

GetJobSourceDocker

GitRepository This property is required. ediri.Qovery.Inputs.GetJobSourceDockerGitRepository
Job's docker source git repository.
DockerfilePath string
Job's docker source dockerfile path.
DockerfileRaw string
Inline Dockerfile to inject for building the image
GitRepository This property is required. GetJobSourceDockerGitRepository
Job's docker source git repository.
DockerfilePath string
Job's docker source dockerfile path.
DockerfileRaw string
Inline Dockerfile to inject for building the image
gitRepository This property is required. GetJobSourceDockerGitRepository
Job's docker source git repository.
dockerfilePath String
Job's docker source dockerfile path.
dockerfileRaw String
Inline Dockerfile to inject for building the image
gitRepository This property is required. GetJobSourceDockerGitRepository
Job's docker source git repository.
dockerfilePath string
Job's docker source dockerfile path.
dockerfileRaw string
Inline Dockerfile to inject for building the image
git_repository This property is required. GetJobSourceDockerGitRepository
Job's docker source git repository.
dockerfile_path str
Job's docker source dockerfile path.
dockerfile_raw str
Inline Dockerfile to inject for building the image
gitRepository This property is required. Property Map
Job's docker source git repository.
dockerfilePath String
Job's docker source dockerfile path.
dockerfileRaw String
Inline Dockerfile to inject for building the image

GetJobSourceDockerGitRepository

Branch This property is required. string
Job's docker source git repository branch.
RootPath This property is required. string
Job's docker source git repository root path.
Url This property is required. string
Job's docker source git repository URL.
GitTokenId string
The git token ID to be used
Branch This property is required. string
Job's docker source git repository branch.
RootPath This property is required. string
Job's docker source git repository root path.
Url This property is required. string
Job's docker source git repository URL.
GitTokenId string
The git token ID to be used
branch This property is required. String
Job's docker source git repository branch.
rootPath This property is required. String
Job's docker source git repository root path.
url This property is required. String
Job's docker source git repository URL.
gitTokenId String
The git token ID to be used
branch This property is required. string
Job's docker source git repository branch.
rootPath This property is required. string
Job's docker source git repository root path.
url This property is required. string
Job's docker source git repository URL.
gitTokenId string
The git token ID to be used
branch This property is required. str
Job's docker source git repository branch.
root_path This property is required. str
Job's docker source git repository root path.
url This property is required. str
Job's docker source git repository URL.
git_token_id str
The git token ID to be used
branch This property is required. String
Job's docker source git repository branch.
rootPath This property is required. String
Job's docker source git repository root path.
url This property is required. String
Job's docker source git repository URL.
gitTokenId String
The git token ID to be used

GetJobSourceImage

Name This property is required. string
Job's image source name.
RegistryId This property is required. string
Job's image source registry ID.
Tag This property is required. string
Job's image source tag.
Name This property is required. string
Job's image source name.
RegistryId This property is required. string
Job's image source registry ID.
Tag This property is required. string
Job's image source tag.
name This property is required. String
Job's image source name.
registryId This property is required. String
Job's image source registry ID.
tag This property is required. String
Job's image source tag.
name This property is required. string
Job's image source name.
registryId This property is required. string
Job's image source registry ID.
tag This property is required. string
Job's image source tag.
name This property is required. str
Job's image source name.
registry_id This property is required. str
Job's image source registry ID.
tag This property is required. str
Job's image source tag.
name This property is required. String
Job's image source name.
registryId This property is required. String
Job's image source registry ID.
tag This property is required. String
Job's image source tag.

Package Details

Repository
qovery dirien/pulumi-qovery
License
Apache-2.0
Notes
This Pulumi package is based on the qovery Terraform Provider.