Viewing docs for Qovery v0.41.0
published on Saturday, Sep 28, 2024 by dirien
published on Saturday, Sep 28, 2024 by dirien
Viewing docs for Qovery v0.41.0
published on Saturday, Sep 28, 2024 by dirien
published on Saturday, Sep 28, 2024 by dirien
# 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>",
});
import pulumi
import pulumi_qovery as qovery
my_job = qovery.get_job(id="<job_id>")
package main
import (
"github.com/dirien/pulumi-qovery/sdk/go/qovery"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := qovery.LookupJob(ctx, &qovery.LookupJobArgs{
Id: "<job_id>",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Qovery = Pulumi.Qovery;
return await Deployment.RunAsync(() =>
{
var myJob = Qovery.GetJob.Invoke(new()
{
Id = "<job_id>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qovery.QoveryFunctions;
import com.pulumi.qovery.inputs.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());
}
}
variables:
myJob:
fn::invoke:
Function: qovery:getJob
Arguments:
id: <job_id>
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>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]func LookupJob(ctx *Context, args *LookupJobArgs, opts ...InvokeOption) (*LookupJobResult, error)
func LookupJobOutput(ctx *Context, args *LookupJobOutputArgs, opts ...InvokeOption) LookupJobResultOutput> 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)
}public static CompletableFuture<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
public static Output<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
fn::invoke:
function: qovery:index/getJob:getJob
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Advanced
Settings stringJson - Annotations
Group List<string>Ids - Auto
Deploy bool - Auto
Preview bool - Cpu int
- Deployment
Restrictions List<ediri.Qovery. Inputs. Get Job Deployment Restriction> - Deployment
Stage stringId - Environment
Variable List<ediri.Aliases Qovery. Inputs. Get Job Environment Variable Alias> - Environment
Variable List<ediri.Overrides Qovery. Inputs. Get Job Environment Variable Override> - Environment
Variables List<ediri.Qovery. Inputs. Get Job Environment Variable> - Healthchecks
ediri.
Qovery. Inputs. Get Job Healthchecks - Icon
Uri string - Labels
Group List<string>Ids - Max
Duration intSeconds - Max
Nb intRestart - Memory int
- Port int
- Secret
Aliases List<ediri.Qovery. Inputs. Get Job Secret Alias> - Secret
Overrides List<ediri.Qovery. Inputs. Get Job Secret Override> - Secrets
List<ediri.
Qovery. Inputs. Get Job Secret> - Source
ediri.
Qovery. Inputs. Get Job Source
- Id string
- Advanced
Settings stringJson - Annotations
Group []stringIds - Auto
Deploy bool - Auto
Preview bool - Cpu int
- Deployment
Restrictions []GetJob Deployment Restriction - Deployment
Stage stringId - Environment
Variable []GetAliases Job Environment Variable Alias - Environment
Variable []GetOverrides Job Environment Variable Override - Environment
Variables []GetJob Environment Variable - Healthchecks
Get
Job Healthchecks - Icon
Uri string - Labels
Group []stringIds - Max
Duration intSeconds - Max
Nb intRestart - Memory int
- Port int
- Secret
Aliases []GetJob Secret Alias - Secret
Overrides []GetJob Secret Override - Secrets
[]Get
Job Secret - Source
Get
Job Source
- id String
- advanced
Settings StringJson - annotations
Group List<String>Ids - auto
Deploy Boolean - auto
Preview Boolean - cpu Integer
- deployment
Restrictions List<GetJob Deployment Restriction> - deployment
Stage StringId - environment
Variable List<GetAliases Job Environment Variable Alias> - environment
Variable List<GetOverrides Job Environment Variable Override> - environment
Variables List<GetJob Environment Variable> - healthchecks
Get
Job Healthchecks - icon
Uri String - labels
Group List<String>Ids - max
Duration IntegerSeconds - max
Nb IntegerRestart - memory Integer
- port Integer
- secret
Aliases List<GetJob Secret Alias> - secret
Overrides List<GetJob Secret Override> - secrets
List<Get
Job Secret> - source
Get
Job Source
- id string
- advanced
Settings stringJson - annotations
Group string[]Ids - auto
Deploy boolean - auto
Preview boolean - cpu number
- deployment
Restrictions GetJob Deployment Restriction[] - deployment
Stage stringId - environment
Variable GetAliases Job Environment Variable Alias[] - environment
Variable GetOverrides Job Environment Variable Override[] - environment
Variables GetJob Environment Variable[] - healthchecks
Get
Job Healthchecks - icon
Uri string - labels
Group string[]Ids - max
Duration numberSeconds - max
Nb numberRestart - memory number
- port number
- secret
Aliases GetJob Secret Alias[] - secret
Overrides GetJob Secret Override[] - secrets
Get
Job Secret[] - source
Get
Job Source
- id str
- advanced_
settings_ strjson - annotations_
group_ Sequence[str]ids - auto_
deploy bool - auto_
preview bool - cpu int
- deployment_
restrictions Sequence[GetJob Deployment Restriction] - deployment_
stage_ strid - environment_
variable_ Sequence[Getaliases Job Environment Variable Alias] - environment_
variable_ Sequence[Getoverrides Job Environment Variable Override] - environment_
variables Sequence[GetJob Environment Variable] - healthchecks
Get
Job Healthchecks - icon_
uri str - labels_
group_ Sequence[str]ids - max_
duration_ intseconds - max_
nb_ intrestart - memory int
- port int
- secret_
aliases Sequence[GetJob Secret Alias] - secret_
overrides Sequence[GetJob Secret Override] - secrets
Sequence[Get
Job Secret] - source
Get
Job Source
- id String
- advanced
Settings StringJson - annotations
Group List<String>Ids - auto
Deploy Boolean - auto
Preview Boolean - cpu Number
- deployment
Restrictions List<Property Map> - deployment
Stage StringId - environment
Variable List<Property Map>Aliases - environment
Variable List<Property Map>Overrides - environment
Variables List<Property Map> - healthchecks Property Map
- icon
Uri String - labels
Group List<String>Ids - max
Duration NumberSeconds - max
Nb NumberRestart - memory Number
- port Number
- secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
- source Property Map
getJob Result
The following output properties are available:
- Advanced
Settings stringJson - Auto
Deploy bool - Auto
Preview bool - Built
In List<ediri.Environment Variables Qovery. Outputs. Get Job Built In Environment Variable> - Deployment
Stage stringId - Environment
Id string - Environment
Variable List<ediri.Aliases Qovery. Outputs. Get Job Environment Variable Alias> - External
Host string - Icon
Uri string - Id string
- Internal
Host string - Max
Duration intSeconds - Max
Nb intRestart - Name string
- Port int
- Schedule
ediri.
Qovery. Outputs. Get Job Schedule - Source
ediri.
Qovery. Outputs. Get Job Source - Annotations
Group List<string>Ids - Cpu int
- Deployment
Restrictions List<ediri.Qovery. Outputs. Get Job Deployment Restriction> - Environment
Variable List<ediri.Overrides Qovery. Outputs. Get Job Environment Variable Override> - Environment
Variables List<ediri.Qovery. Outputs. Get Job Environment Variable> - Healthchecks
ediri.
Qovery. Outputs. Get Job Healthchecks - Labels
Group List<string>Ids - Memory int
- Secret
Aliases List<ediri.Qovery. Outputs. Get Job Secret Alias> - Secret
Overrides List<ediri.Qovery. Outputs. Get Job Secret Override> - Secrets
List<ediri.
Qovery. Outputs. Get Job Secret>
- Advanced
Settings stringJson - Auto
Deploy bool - Auto
Preview bool - Built
In []GetEnvironment Variables Job Built In Environment Variable - Deployment
Stage stringId - Environment
Id string - Environment
Variable []GetAliases Job Environment Variable Alias - External
Host string - Icon
Uri string - Id string
- Internal
Host string - Max
Duration intSeconds - Max
Nb intRestart - Name string
- Port int
- Schedule
Get
Job Schedule - Source
Get
Job Source - Annotations
Group []stringIds - Cpu int
- Deployment
Restrictions []GetJob Deployment Restriction - Environment
Variable []GetOverrides Job Environment Variable Override - Environment
Variables []GetJob Environment Variable - Healthchecks
Get
Job Healthchecks - Labels
Group []stringIds - Memory int
- Secret
Aliases []GetJob Secret Alias - Secret
Overrides []GetJob Secret Override - Secrets
[]Get
Job Secret
- advanced
Settings StringJson - auto
Deploy Boolean - auto
Preview Boolean - built
In List<GetEnvironment Variables Job Built In Environment Variable> - deployment
Stage StringId - environment
Id String - environment
Variable List<GetAliases Job Environment Variable Alias> - external
Host String - icon
Uri String - id String
- internal
Host String - max
Duration IntegerSeconds - max
Nb IntegerRestart - name String
- port Integer
- schedule
Get
Job Schedule - source
Get
Job Source - annotations
Group List<String>Ids - cpu Integer
- deployment
Restrictions List<GetJob Deployment Restriction> - environment
Variable List<GetOverrides Job Environment Variable Override> - environment
Variables List<GetJob Environment Variable> - healthchecks
Get
Job Healthchecks - labels
Group List<String>Ids - memory Integer
- secret
Aliases List<GetJob Secret Alias> - secret
Overrides List<GetJob Secret Override> - secrets
List<Get
Job Secret>
- advanced
Settings stringJson - auto
Deploy boolean - auto
Preview boolean - built
In GetEnvironment Variables Job Built In Environment Variable[] - deployment
Stage stringId - environment
Id string - environment
Variable GetAliases Job Environment Variable Alias[] - external
Host string - icon
Uri string - id string
- internal
Host string - max
Duration numberSeconds - max
Nb numberRestart - name string
- port number
- schedule
Get
Job Schedule - source
Get
Job Source - annotations
Group string[]Ids - cpu number
- deployment
Restrictions GetJob Deployment Restriction[] - environment
Variable GetOverrides Job Environment Variable Override[] - environment
Variables GetJob Environment Variable[] - healthchecks
Get
Job Healthchecks - labels
Group string[]Ids - memory number
- secret
Aliases GetJob Secret Alias[] - secret
Overrides GetJob Secret Override[] - secrets
Get
Job Secret[]
- advanced_
settings_ strjson - auto_
deploy bool - auto_
preview bool - built_
in_ Sequence[Getenvironment_ variables Job Built In Environment Variable] - deployment_
stage_ strid - environment_
id str - environment_
variable_ Sequence[Getaliases Job Environment Variable Alias] - external_
host str - icon_
uri str - id str
- internal_
host str - max_
duration_ intseconds - max_
nb_ intrestart - name str
- port int
- schedule
Get
Job Schedule - source
Get
Job Source - annotations_
group_ Sequence[str]ids - cpu int
- deployment_
restrictions Sequence[GetJob Deployment Restriction] - environment_
variable_ Sequence[Getoverrides Job Environment Variable Override] - environment_
variables Sequence[GetJob Environment Variable] - healthchecks
Get
Job Healthchecks - labels_
group_ Sequence[str]ids - memory int
- secret_
aliases Sequence[GetJob Secret Alias] - secret_
overrides Sequence[GetJob Secret Override] - secrets
Sequence[Get
Job Secret]
- advanced
Settings StringJson - auto
Deploy Boolean - auto
Preview Boolean - built
In List<Property Map>Environment Variables - deployment
Stage StringId - environment
Id String - environment
Variable List<Property Map>Aliases - external
Host String - icon
Uri String - id String
- internal
Host String - max
Duration NumberSeconds - max
Nb NumberRestart - name String
- port Number
- schedule Property Map
- source Property Map
- annotations
Group List<String>Ids - cpu Number
- deployment
Restrictions List<Property Map> - environment
Variable List<Property Map>Overrides - environment
Variables List<Property Map> - healthchecks Property Map
- labels
Group List<String>Ids - memory Number
- secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
Supporting Types
GetJobBuiltInEnvironmentVariable
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable.
- Key string
- Key of the environment variable.
- Value string
- Value of the environment variable.
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable.
- Key string
- Key of the environment variable.
- Value string
- Value of the environment variable.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable.
- key String
- Key of the environment variable.
- value String
- Value of the environment variable.
- description string
- Description of the environment variable.
- id string
- Id of the environment variable.
- key string
- Key of the environment variable.
- value string
- Value of the environment variable.
- description str
- Description of the environment variable.
- id str
- Id of the environment variable.
- key str
- Key of the environment variable.
- value str
- Value of the environment variable.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable.
- key String
- Key of the environment variable.
- value String
- Value of the environment variable.
GetJobDeploymentRestriction
GetJobEnvironmentVariable
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable.
- Key string
- Key of the environment variable.
- Value string
- Value of the environment variable.
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable.
- Key string
- Key of the environment variable.
- Value string
- Value of the environment variable.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable.
- key String
- Key of the environment variable.
- value String
- Value of the environment variable.
- description string
- Description of the environment variable.
- id string
- Id of the environment variable.
- key string
- Key of the environment variable.
- value string
- Value of the environment variable.
- description str
- Description of the environment variable.
- id str
- Id of the environment variable.
- key str
- Key of the environment variable.
- value str
- Value of the environment variable.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable.
- key String
- Key of the environment variable.
- value String
- Value of the environment variable.
GetJobEnvironmentVariableAlias
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable alias.
- Key string
- Name of the environment variable alias.
- Value string
- Name of the variable to alias.
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable alias.
- Key string
- Name of the environment variable alias.
- Value string
- Name of the variable to alias.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable alias.
- key String
- Name of the environment variable alias.
- value String
- Name of the variable to alias.
- description string
- Description of the environment variable.
- id string
- Id of the environment variable alias.
- key string
- Name of the environment variable alias.
- value string
- Name of the variable to alias.
- description str
- Description of the environment variable.
- id str
- Id of the environment variable alias.
- key str
- Name of the environment variable alias.
- value str
- Name of the variable to alias.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable alias.
- key String
- Name of the environment variable alias.
- value String
- Name of the variable to alias.
GetJobEnvironmentVariableOverride
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable override.
- Key string
- Name of the environment variable override.
- Value string
- Value of the environment variable override.
- Description string
- Description of the environment variable.
- Id string
- Id of the environment variable override.
- Key string
- Name of the environment variable override.
- Value string
- Value of the environment variable override.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable override.
- key String
- Name of the environment variable override.
- value String
- Value of the environment variable override.
- description string
- Description of the environment variable.
- id string
- Id of the environment variable override.
- key string
- Name of the environment variable override.
- value string
- Value of the environment variable override.
- description str
- Description of the environment variable.
- id str
- Id of the environment variable override.
- key str
- Name of the environment variable override.
- value str
- Value of the environment variable override.
- description String
- Description of the environment variable.
- id String
- Id of the environment variable override.
- key String
- Name of the environment variable override.
- value String
- Value of the environment variable override.
GetJobHealthchecks
- Liveness
Probe ediri.Qovery. Inputs. Get Job Healthchecks Liveness Probe - 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 ediri.Qovery. Inputs. Get Job Healthchecks Readiness Probe - 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 GetJob Healthchecks Liveness Probe - 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 GetJob Healthchecks Readiness Probe - 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 GetJob Healthchecks Liveness Probe - 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 GetJob Healthchecks Readiness Probe - 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 GetJob Healthchecks Liveness Probe - 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 GetJob Healthchecks Readiness Probe - 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 GetJob Healthchecks Liveness Probe - 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 GetJob Healthchecks Readiness Probe - 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 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.
- readiness
Probe 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
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.
Qovery. Inputs. Get Job Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
Get
Job Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Integer - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay IntegerSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Integer - Number of seconds before each execution of the probe
- success
Threshold Integer - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Integer - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Job Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay numberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds number - Number of seconds before each execution of the probe
- success
Threshold number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds number - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Job Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure_
threshold int - Number of time the an ok probe should fail before declaring it as failed
- initial_
delay_ intseconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period_
seconds int - Number of seconds before each execution of the probe
- success_
threshold int - Number of time the probe should success before declaring a failed probe as ok again
- timeout_
seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Job Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay NumberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Number - Number of seconds before each execution of the probe
- success
Threshold Number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Number - Number of seconds within which the check need to respond before declaring it as a failure
- type Property Map
- Kind of check to run for this probe. There can only be one configured at a time
GetJobHealthchecksLivenessProbeType
- Exec
ediri.
Qovery. Inputs. Get Job Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
ediri.
Qovery. Inputs. Get Job Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
ediri.
Qovery. Inputs. Get Job Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
ediri.
Qovery. Inputs. Get Job Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- Exec
Get
Job Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
Get
Job Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
Get
Job Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
Get
Job Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Job Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Job Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Job Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Job Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Job Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Job Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Job Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Job Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec_
Get
Job Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Job Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Job Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Job Healthchecks Liveness Probe Type Tcp - 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 List<string>
- The command and its arguments to exec
- Commands []string
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
- commands string[]
- The command and its arguments to exec
- commands Sequence[str]
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
GetJobHealthchecksLivenessProbeTypeGrpc
GetJobHealthchecksLivenessProbeTypeHttp
GetJobHealthchecksLivenessProbeTypeTcp
GetJobHealthchecksReadinessProbe
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.
Qovery. Inputs. Get Job Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
Get
Job Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Integer - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay IntegerSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Integer - Number of seconds before each execution of the probe
- success
Threshold Integer - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Integer - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Job Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay numberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds number - Number of seconds before each execution of the probe
- success
Threshold number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds number - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Job Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure_
threshold int - Number of time the an ok probe should fail before declaring it as failed
- initial_
delay_ intseconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period_
seconds int - Number of seconds before each execution of the probe
- success_
threshold int - Number of time the probe should success before declaring a failed probe as ok again
- timeout_
seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Job Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay NumberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Number - Number of seconds before each execution of the probe
- success
Threshold Number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Number - Number of seconds within which the check need to respond before declaring it as a failure
- type Property Map
- Kind of check to run for this probe. There can only be one configured at a time
GetJobHealthchecksReadinessProbeType
- Exec
ediri.
Qovery. Inputs. Get Job Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
ediri.
Qovery. Inputs. Get Job Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
ediri.
Qovery. Inputs. Get Job Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
ediri.
Qovery. Inputs. Get Job Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- Exec
Get
Job Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
Get
Job Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
Get
Job Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
Get
Job Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Job Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Job Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Job Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Job Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Job Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Job Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Job Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Job Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec_
Get
Job Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Job Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Job Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Job Healthchecks Readiness Probe Type Tcp - 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 List<string>
- The command and its arguments to exec
- Commands []string
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
- commands string[]
- The command and its arguments to exec
- commands Sequence[str]
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
GetJobHealthchecksReadinessProbeTypeGrpc
GetJobHealthchecksReadinessProbeTypeHttp
GetJobHealthchecksReadinessProbeTypeTcp
GetJobSchedule
- Cronjob
ediri.
Qovery. Inputs. Get Job Schedule Cronjob - Job's cron.
- Lifecycle
Type string - Type of the lifecycle job.
- Can be:
CLOUDFORMATION,GENERIC,TERRAFORM. - On
Delete ediri.Qovery. Inputs. Get Job Schedule On Delete - Job's schedule on delete.
- On
Start ediri.Qovery. Inputs. Get Job Schedule On Start - Job's schedule on start.
- On
Stop ediri.Qovery. Inputs. Get Job Schedule On Stop - Job's schedule on stop.
- Cronjob
Get
Job Schedule Cronjob - Job's cron.
- Lifecycle
Type string - Type of the lifecycle job.
- Can be:
CLOUDFORMATION,GENERIC,TERRAFORM. - On
Delete GetJob Schedule On Delete - Job's schedule on delete.
- On
Start GetJob Schedule On Start - Job's schedule on start.
- On
Stop GetJob Schedule On Stop - Job's schedule on stop.
- cronjob
Get
Job Schedule Cronjob - Job's cron.
- lifecycle
Type String - Type of the lifecycle job.
- Can be:
CLOUDFORMATION,GENERIC,TERRAFORM. - on
Delete GetJob Schedule On Delete - Job's schedule on delete.
- on
Start GetJob Schedule On Start - Job's schedule on start.
- on
Stop GetJob Schedule On Stop - Job's schedule on stop.
- cronjob
Get
Job Schedule Cronjob - Job's cron.
- lifecycle
Type string - Type of the lifecycle job.
- Can be:
CLOUDFORMATION,GENERIC,TERRAFORM. - on
Delete GetJob Schedule On Delete - Job's schedule on delete.
- on
Start GetJob Schedule On Start - Job's schedule on start.
- on
Stop GetJob Schedule On Stop - Job's schedule on stop.
- cronjob
Get
Job Schedule Cronjob - Job's cron.
- lifecycle_
type str - Type of the lifecycle job.
- Can be:
CLOUDFORMATION,GENERIC,TERRAFORM. - on_
delete GetJob Schedule On Delete - Job's schedule on delete.
- on_
start GetJob Schedule On Start - Job's schedule on start.
- on_
stop GetJob Schedule On Stop - Job's schedule on stop.
- cronjob Property Map
- Job's cron.
- lifecycle
Type String - Type of the lifecycle job.
- Can be:
CLOUDFORMATION,GENERIC,TERRAFORM. - on
Delete Property Map - Job's schedule on delete.
- on
Start Property Map - Job's schedule on start.
- on
Stop Property Map - Job's schedule on stop.
GetJobScheduleCronjob
- Command
ediri.
Qovery. Inputs. Get Job Schedule Cronjob Command - Job's cron command.
- Schedule string
- Job's cron string.
- Command
Get
Job Schedule Cronjob Command - Job's cron command.
- Schedule string
- Job's cron string.
- command
Get
Job Schedule Cronjob Command - Job's cron command.
- schedule String
- Job's cron string.
- command
Get
Job Schedule Cronjob Command - Job's cron command.
- schedule string
- Job's cron string.
- command
Get
Job Schedule Cronjob Command - Job's cron command.
- schedule str
- Job's cron string.
- command Property Map
- Job's cron command.
- schedule String
- Job's cron string.
GetJobScheduleCronjobCommand
- Arguments List<string>
- List of arguments of this job.
- Entrypoint string
- Entrypoint of the job.
- Arguments []string
- List of arguments of this job.
- Entrypoint string
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
- arguments string[]
- List of arguments of this job.
- entrypoint string
- Entrypoint of the job.
- arguments Sequence[str]
- List of arguments of this job.
- entrypoint str
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
GetJobScheduleOnDelete
- Arguments List<string>
- List of arguments of this job.
- Entrypoint string
- Entrypoint of the job.
- Arguments []string
- List of arguments of this job.
- Entrypoint string
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
- arguments string[]
- List of arguments of this job.
- entrypoint string
- Entrypoint of the job.
- arguments Sequence[str]
- List of arguments of this job.
- entrypoint str
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
GetJobScheduleOnStart
- Entrypoint string
- Entrypoint of the job.
- Arguments List<string>
- List of arguments of this job.
- Entrypoint string
- Entrypoint of the job.
- Arguments []string
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
- entrypoint string
- Entrypoint of the job.
- arguments string[]
- List of arguments of this job.
- entrypoint str
- Entrypoint of the job.
- arguments Sequence[str]
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
GetJobScheduleOnStop
- Entrypoint string
- Entrypoint of the job.
- Arguments List<string>
- List of arguments of this job.
- Entrypoint string
- Entrypoint of the job.
- Arguments []string
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
- entrypoint string
- Entrypoint of the job.
- arguments string[]
- List of arguments of this job.
- entrypoint str
- Entrypoint of the job.
- arguments Sequence[str]
- List of arguments of this job.
- entrypoint String
- Entrypoint of the job.
- arguments List<String>
- List of arguments of this job.
GetJobSecret
- Description string
- Description of the environment variable.
- Id string
- Id of the secret.
- Key string
- Key of the secret.
- Value string
- Value of the secret.
- Description string
- Description of the environment variable.
- Id string
- Id of the secret.
- Key string
- Key of the secret.
- Value string
- Value of the secret.
- description String
- Description of the environment variable.
- id String
- Id of the secret.
- key String
- Key of the secret.
- value String
- Value of the secret.
- description string
- Description of the environment variable.
- id string
- Id of the secret.
- key string
- Key of the secret.
- value string
- Value of the secret.
- description str
- Description of the environment variable.
- id str
- Id of the secret.
- key str
- Key of the secret.
- value str
- Value of the secret.
- description String
- Description of the environment variable.
- id String
- Id of the secret.
- key String
- Key of the secret.
- value String
- Value of the secret.
GetJobSecretAlias
- Description string
- Description of the environment variable.
- Id string
- Id of the secret alias.
- Key string
- Name of the secret alias.
- Value string
- Name of the secret to alias.
- Description string
- Description of the environment variable.
- Id string
- Id of the secret alias.
- Key string
- Name of the secret alias.
- Value string
- Name of the secret to alias.
- description String
- Description of the environment variable.
- id String
- Id of the secret alias.
- key String
- Name of the secret alias.
- value String
- Name of the secret to alias.
- description string
- Description of the environment variable.
- id string
- Id of the secret alias.
- key string
- Name of the secret alias.
- value string
- Name of the secret to alias.
- description str
- Description of the environment variable.
- id str
- Id of the secret alias.
- key str
- Name of the secret alias.
- value str
- Name of the secret to alias.
- description String
- Description of the environment variable.
- id String
- Id of the secret alias.
- key String
- Name of the secret alias.
- value String
- Name of the secret to alias.
GetJobSecretOverride
- Description string
- Description of the environment variable.
- Id string
- Id of the secret override.
- Key string
- Name of the secret override.
- Value string
- Value of the secret override.
- Description string
- Description of the environment variable.
- Id string
- Id of the secret override.
- Key string
- Name of the secret override.
- Value string
- Value of the secret override.
- description String
- Description of the environment variable.
- id String
- Id of the secret override.
- key String
- Name of the secret override.
- value String
- Value of the secret override.
- description string
- Description of the environment variable.
- id string
- Id of the secret override.
- key string
- Name of the secret override.
- value string
- Value of the secret override.
- description str
- Description of the environment variable.
- id str
- Id of the secret override.
- key str
- Name of the secret override.
- value str
- Value of the secret override.
- description String
- Description of the environment variable.
- id String
- Id of the secret override.
- key String
- Name of the secret override.
- value String
- Value of the secret override.
GetJobSource
- Docker
ediri.
Qovery. Inputs. Get Job Source Docker - Job's docker source.
- Image
ediri.
Qovery. Inputs. Get Job Source Image - Job's image source.
- Docker
Get
Job Source Docker - Job's docker source.
- Image
Get
Job Source Image - Job's image source.
- docker
Get
Job Source Docker - Job's docker source.
- image
Get
Job Source Image - Job's image source.
- docker
Get
Job Source Docker - Job's docker source.
- image
Get
Job Source Image - Job's image source.
- docker
Get
Job Source Docker - Job's docker source.
- image
Get
Job Source Image - Job's image source.
- docker Property Map
- Job's docker source.
- image Property Map
- Job's image source.
GetJobSourceDocker
- Git
Repository ediri.Qovery. Inputs. Get Job Source Docker Git Repository - Job's docker source git repository.
- Dockerfile
Path string - Job's docker source dockerfile path.
- Dockerfile
Raw string - Inline Dockerfile to inject for building the image
- Git
Repository GetJob Source Docker Git Repository - Job's docker source git repository.
- Dockerfile
Path string - Job's docker source dockerfile path.
- Dockerfile
Raw string - Inline Dockerfile to inject for building the image
- git
Repository GetJob Source Docker Git Repository - Job's docker source git repository.
- dockerfile
Path String - Job's docker source dockerfile path.
- dockerfile
Raw String - Inline Dockerfile to inject for building the image
- git
Repository GetJob Source Docker Git Repository - Job's docker source git repository.
- dockerfile
Path string - Job's docker source dockerfile path.
- dockerfile
Raw string - Inline Dockerfile to inject for building the image
- git_
repository GetJob Source Docker Git Repository - 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
- git
Repository Property Map - Job's docker source git repository.
- dockerfile
Path String - Job's docker source dockerfile path.
- dockerfile
Raw String - Inline Dockerfile to inject for building the image
GetJobSourceDockerGitRepository
- Branch string
- Job's docker source git repository branch.
- Root
Path string - Job's docker source git repository root path.
- Url string
- Job's docker source git repository URL.
- Git
Token stringId - The git token ID to be used
- Branch string
- Job's docker source git repository branch.
- Root
Path string - Job's docker source git repository root path.
- Url string
- Job's docker source git repository URL.
- Git
Token stringId - The git token ID to be used
- branch String
- Job's docker source git repository branch.
- root
Path String - Job's docker source git repository root path.
- url String
- Job's docker source git repository URL.
- git
Token StringId - The git token ID to be used
- branch string
- Job's docker source git repository branch.
- root
Path string - Job's docker source git repository root path.
- url string
- Job's docker source git repository URL.
- git
Token stringId - The git token ID to be used
- branch str
- Job's docker source git repository branch.
- root_
path str - Job's docker source git repository root path.
- url str
- Job's docker source git repository URL.
- git_
token_ strid - The git token ID to be used
- branch String
- Job's docker source git repository branch.
- root
Path String - Job's docker source git repository root path.
- url String
- Job's docker source git repository URL.
- git
Token StringId - The git token ID to be used
GetJobSourceImage
- Name string
- Job's image source name.
- Registry
Id string - Job's image source registry ID.
- Tag string
- Job's image source tag.
- Name string
- Job's image source name.
- Registry
Id string - Job's image source registry ID.
- Tag string
- Job's image source tag.
- name String
- Job's image source name.
- registry
Id String - Job's image source registry ID.
- tag String
- Job's image source tag.
- name string
- Job's image source name.
- registry
Id string - Job's image source registry ID.
- tag string
- Job's image source tag.
- name str
- Job's image source name.
- registry_
id str - Job's image source registry ID.
- tag str
- Job's image source tag.
- name String
- Job's image source name.
- registry
Id String - Job's image source registry ID.
- tag 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
qoveryTerraform Provider.
Viewing docs for Qovery v0.41.0
published on Saturday, Sep 28, 2024 by dirien
published on Saturday, Sep 28, 2024 by dirien
