Interface RegistryDockerTaskStep.UpdateStages.OverridingArgumentUpdate
-
- All Known Subinterfaces:
RegistryDockerTaskStep.Update
- Enclosing interface:
- RegistryDockerTaskStep.UpdateStages
public static interface RegistryDockerTaskStep.UpdateStages.OverridingArgumentUpdateThe stage of the container registry DockerTaskStep update allowing to specify any overriding arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegistryDockerTaskStep.UpdatewithOverridingArgument(String name, OverridingArgument overridingArgument)The function that specifies the overriding argument and what it will override.RegistryDockerTaskStep.UpdatewithOverridingArguments(Map<String,OverridingArgument> overridingArguments)The function that specifies the overriding arguments and what they will override.
-
-
-
Method Detail
-
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.
-
-