Interface RegistryEncodedTaskStep.UpdateStages.OverridingValues
-
- All Known Subinterfaces:
RegistryEncodedTaskStep.Update
- Enclosing interface:
- RegistryEncodedTaskStep.UpdateStages
public static interface RegistryEncodedTaskStep.UpdateStages.OverridingValuesThe stage of the container registry EncodedTaskStep update allowing to specify the overriding values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegistryEncodedTaskStep.UpdatewithOverridingValue(String name, OverridingValue overridingValue)The function that specifies a single value that will override the corresponding value specified under the function withBase64EncodedValueContent().RegistryEncodedTaskStep.UpdatewithOverridingValues(Map<String,OverridingValue> overridingValues)The function that specifies the values that override the corresponding values specified under the function withBase64EncodedValueContent().
-
-
-
Method Detail
-
withOverridingValues
RegistryEncodedTaskStep.Update withOverridingValues(Map<String,OverridingValue> overridingValues)
The function that specifies the values that override the corresponding values specified under the function withBase64EncodedValueContent().- Parameters:
overridingValues- a map which contains the values that will override the corresponding values specified under the function withBase64EncodedValueContent().- Returns:
- the next stage of the container registry EncodedTaskStep update.
-
withOverridingValue
RegistryEncodedTaskStep.Update withOverridingValue(String name, OverridingValue overridingValue)
The function that specifies a single value that will override the corresponding value specified under the function withBase64EncodedValueContent().- Parameters:
name- the name of the value to be overridden.overridingValue- the value of the value to be overridden.- Returns:
- the next stage of the container registry EncodedTaskStep update.
-
-