Interface RegistryDockerTaskStep.UpdateStages.OverridingArgumentUpdate
- All Known Subinterfaces:
RegistryDockerTaskStep.Update
- Enclosing interface:
- RegistryDockerTaskStep.UpdateStages
public static interface RegistryDockerTaskStep.UpdateStages.OverridingArgumentUpdate
The stage of the container registry DockerTaskStep update allowing to specify any overriding arguments.
-
Method Summary
Modifier and TypeMethodDescriptionwithOverridingArgument
(String name, OverridingArgument overridingArgument) The function that specifies the overriding argument and what it will override.withOverridingArguments
(Map<String, OverridingArgument> overridingArguments) The function that specifies the overriding arguments and what they will override.
-
Method Details
-
withOverridingArguments
RegistryDockerTaskStep.Update withOverridingArguments(Map<String, OverridingArgument> overridingArguments) The function that specifies the overriding arguments and what they will override.- Parameters:
overridingArguments
- map with key of the name of the value to be overridden and value OverridingArgument specifying the content of the overriding argument.- Returns:
- the next stage of the container Docker task step update.
-
withOverridingArgument
RegistryDockerTaskStep.Update withOverridingArgument(String name, OverridingArgument overridingArgument) The function that specifies the overriding argument and what it will override.- Parameters:
name
- the name of the value to be overridden.overridingArgument
- the content of the overriding argument.- Returns:
- the next stage of the container Docker task step update.
-