Set<Variable> |
Environment.getVariables() |
List the variables configured in this environment.
|
@NotNull Set<Variable> |
EnvironmentApi.getVariables(@NotNull Environment environment) |
List all variables associated with the environment.
|
@NotNull Set<Variable> |
EnvironmentApi.getVariables(@NotNull String programId,
@NotNull String environmentId) |
List all variables associated with the environment.
|
Set<Variable> |
Pipeline.getVariables() |
Retrieve the variables associated with this pipeline.
|
@NotNull Set<Variable> |
PipelineApi.getVariables(@NotNull Pipeline pipeline) |
List all variables associated with the pipeline
|
@NotNull Set<Variable> |
PipelineApi.getVariables(@NotNull String programId,
@NotNull String pipelineId) |
List all variables associated with the pipeline
|
Set<Variable> |
Environment.setVariables(Variable... variables) |
Set the variables on this environment.
|
@NotNull Set<Variable> |
EnvironmentApi.setVariables(@NotNull Environment environment,
Variable... variables) |
Set the variables in the environment.
|
@NotNull Set<Variable> |
EnvironmentApi.setVariables(@NotNull String programId,
@NotNull String environmentId,
Variable... variables) |
Set the variables in the environment.
|
Set<Variable> |
Pipeline.setVariables(Variable... variables) |
Set the variables on this pipeline.
|
@NotNull Set<Variable> |
PipelineApi.setVariables(@NotNull Pipeline pipeline,
Variable... variables) |
Set the variables in the pipeline
|
@NotNull Set<Variable> |
PipelineApi.setVariables(@NotNull String programId,
@NotNull String pipelineId,
Variable... variables) |
Set the variables in the pipeline
|