Interface RegistryTask.UpdateStages.TriggerTypes
-
- All Known Subinterfaces:
RegistryTask.Update
- Enclosing interface:
- RegistryTask.UpdateStages
public static interface RegistryTask.UpdateStages.TriggerTypesThe stage of the container registry task update that allows users to update either a source trigger and/or a base image trigger.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegistrySourceTrigger.UpdateDefinitionStages.BlankdefineSourceTrigger(String sourceTriggerName)The function that allows us to define a new source trigger in a registry task update.RegistryTask.UpdateupdateBaseImageTrigger(String baseImageTriggerName, BaseImageTriggerType baseImageTriggerType)The function that defines a base image trigger with the two parameters required for base image trigger update.RegistryTask.UpdateupdateBaseImageTrigger(String baseImageTriggerName, BaseImageTriggerType baseImageTriggerType, TriggerStatus triggerStatus)The function that defines a base image trigger with all possible parameters for base image trigger update.RegistrySourceTrigger.UpdateupdateSourceTrigger(String sourceTriggerName)The function that begins the definition of a source trigger.
-
-
-
Method Detail
-
updateSourceTrigger
RegistrySourceTrigger.Update updateSourceTrigger(String sourceTriggerName)
The function that begins the definition of a source trigger.- Parameters:
sourceTriggerName- the name of the source trigger.- Returns:
- the next stage of the RegistrySourceTrigger update.
-
defineSourceTrigger
RegistrySourceTrigger.UpdateDefinitionStages.Blank defineSourceTrigger(String sourceTriggerName)
The function that allows us to define a new source trigger in a registry task update.- Parameters:
sourceTriggerName- the name of the source trigger.- Returns:
- the next stage of the RegistrySourceTrigger update.
-
updateBaseImageTrigger
RegistryTask.Update updateBaseImageTrigger(String baseImageTriggerName, BaseImageTriggerType baseImageTriggerType)
The function that defines a base image trigger with the two parameters required for base image trigger update.- Parameters:
baseImageTriggerName- the name of the base image trigger.baseImageTriggerType- the trigger type for the base image. Can be "All", "Runtime", or something else that the user inputs.- Returns:
- the next stage of the container registry task update.
-
updateBaseImageTrigger
RegistryTask.Update updateBaseImageTrigger(String baseImageTriggerName, BaseImageTriggerType baseImageTriggerType, TriggerStatus triggerStatus)
The function that defines a base image trigger with all possible parameters for base image trigger update.- Parameters:
baseImageTriggerName- the name of the base image trigger.baseImageTriggerType- the trigger type for the base image. Can be "All", "Runtime", or something else that the user inputs.triggerStatus- the status for the trigger. Can be enabled, disabled, or something else that the user inputs.- Returns:
- the next stage of the container registry task update.
-
-