-
Notifications
You must be signed in to change notification settings - Fork 0
Class.PutStep
@decentm/concourse-ts / PutStep
Defined in: components/step/put.ts:15
Pushes to a resource. When the step succeeds, the resulting version is immediately fetched into a directory with the same name as the resource.
https://concourse-ci.org/docs/steps/put/
-
Step<PutStep>
• Source extends Config = Config
• PutParams extends Config = Config
• GetParams extends Config = Config
new PutStep<
Source,PutParams,GetParams>(name,customise?):PutStep<Source,PutParams,GetParams>
Defined in: components/step/put.ts:33
string
(instance) => void
PutStep<Source, PutParams, GetParams>
Step<Type.PutStep>.constructor
name:
string
Defined in: components/step/put.ts:34
Step.name
add_across(...
across):void
Defined in: components/step/base.ts:57
https://concourse-ci.org/docs/steps/modifier-and-hooks/across/#across-step-modifier
...Across<Identifier>[]
The modifier to add
void
Step.add_across
add_ensure(
step):void
Defined in: components/step/base.ts:249
Adds a step to always be run after this one.
https://concourse-ci.org/docs/steps/modifier-and-hooks/ensure/#ensure-step-hook
void
Step.add_ensure
add_on_abort(
step):void
Defined in: components/step/base.ts:234
Adds a step to be run after this one is aborted.
https://concourse-ci.org/docs/steps/modifier-and-hooks/on-abort/#on_abort-step-hook
void
Step.add_on_abort
add_on_error(
step):void
Defined in: components/step/base.ts:219
Adds a step to be run after this one errors.
https://concourse-ci.org/docs/steps/modifier-and-hooks/on-error/#on_error-step-hook
void
Step.add_on_error
add_on_failure(
step):void
Defined in: components/step/base.ts:204
Adds a step to be run after this one fails.
https://concourse-ci.org/docs/steps/modifier-and-hooks/on-failure/#on_failure-step-hook
void
Step.add_on_failure
add_on_success(
step):void
Defined in: components/step/base.ts:189
Adds a step to be run after this one succeeds.
https://concourse-ci.org/docs/steps/modifier-and-hooks/on-success/#on_success-step-hook
void
Step.add_on_success
add_tags(...
tags):void
Defined in: components/step/base.ts:174
https://concourse-ci.org/docs/steps/modifier-and-hooks/tags/#tags-step-modifier
...string[]
void
Step.add_tags
set_attempts(
attempts):void
Defined in: components/step/base.ts:81
Sets the number of attempts for this step.
https://concourse-ci.org/docs/steps/modifier-and-hooks/attempts/#attempts-step-modifier
number
void
Step.set_attempts
set_get_params(
params):void
Defined in: components/step/put.ts:126
Sets parameters to pass when fetching the version that was pushed. By default, the implicit get step uses the same parameters as the original get step that fetched the resource.
https://concourse-ci.org/docs/steps/put/#put-step
GetParams
Resource-specific get parameters
void
set_inputs(
inputs):void
Defined in: components/step/put.ts:97
Specifies which inputs (artifacts) should be available when pushing. Can be 'all', 'detect', or a list of specific input names.
https://concourse-ci.org/docs/steps/put/#put-step
Input specification
void
set_no_get():
void
Defined in: components/step/put.ts:142
Sets "no_get" to true - avoid calling to keep false
https://concourse-ci.org/docs/steps/put/#put-step
void
set_params(
params):void
Defined in: components/step/put.ts:111
Sets resource-specific parameters to pass to the resource when pushing. These parameters are defined by the resource type.
https://concourse-ci.org/docs/steps/put/#put-step
PutParams
Resource-specific put parameters
void
set_put<
ResourceType>(resource):void
Defined in: components/step/put.ts:55
Sets the resource to push to.
https://concourse-ci.org/docs/steps/put/#put-step
• ResourceType extends Resource<Source, PutParams, GetParams, string, Config>
ResourceType
The resource to push to
void
set_timeout(
timeout):void
Defined in: components/step/base.ts:68
https://concourse-ci.org/docs/steps/modifier-and-hooks/timeout/#timeout-step-modifier
void
Step.set_timeout
staticcustomise(init):void
Defined in: components/step/put.ts:29
Customises all PutSteps constructed after calling this function.
(instance) => void
void
staticcustomise_base(init):void
Defined in: components/step/base.ts:28
Customises the base of all Steps constructed after calling this function
(instance) => void
void
Step.customise_base