Interface RegistryTask.DefinitionStages.Platform
-
- All Known Subinterfaces:
RegistryTask.Definition
- Enclosing interface:
- RegistryTask.DefinitionStages
public static interface RegistryTask.DefinitionStages.PlatformThe stage of the container registry task definition allowing to specify the platform.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegistryTask.DefinitionStages.TaskStepTypewithLinux()The function that specifies a Linux OS system for the platform.RegistryTask.DefinitionStages.TaskStepTypewithLinux(Architecture architecture)The function that specifies a Linux OS system and architecture for the platform.RegistryTask.DefinitionStages.TaskStepTypewithLinux(Architecture architecture, Variant variant)The function that specifies a Linux OS system, architecture, and CPU variant.RegistryTask.DefinitionStages.TaskStepTypewithPlatform(PlatformProperties platformProperties)The function that specifies a platform.RegistryTask.DefinitionStages.TaskStepTypewithWindows()The function that specifies a Windows OS system for the platform.RegistryTask.DefinitionStages.TaskStepTypewithWindows(Architecture architecture)The function that specifies a Windows OS system and architecture for the platform.RegistryTask.DefinitionStages.TaskStepTypewithWindows(Architecture architecture, Variant variant)The function that specifies a Windows OS system, architecture, and CPU variant.
-
-
-
Method Detail
-
withLinux
RegistryTask.DefinitionStages.TaskStepType withLinux()
The function that specifies a Linux OS system for the platform.- Returns:
- the next stage of the container registry task definition.
-
withWindows
RegistryTask.DefinitionStages.TaskStepType withWindows()
The function that specifies a Windows OS system for the platform.- Returns:
- the next stage of the container registry task definition.
-
withLinux
RegistryTask.DefinitionStages.TaskStepType withLinux(Architecture architecture)
The function that specifies a Linux OS system and architecture for the platform.- Parameters:
architecture- the CPU architecture.- Returns:
- the next stage of the container registry task definition.
-
withWindows
RegistryTask.DefinitionStages.TaskStepType withWindows(Architecture architecture)
The function that specifies a Windows OS system and architecture for the platform.- Parameters:
architecture- the CPU architecture- Returns:
- the next stage of the container registry task definition.
-
withLinux
RegistryTask.DefinitionStages.TaskStepType withLinux(Architecture architecture, Variant variant)
The function that specifies a Linux OS system, architecture, and CPU variant.- Parameters:
architecture- the CPU architecture.variant- the CPU variant.- Returns:
- the next stage of the container registry task definition.
-
withWindows
RegistryTask.DefinitionStages.TaskStepType withWindows(Architecture architecture, Variant variant)
The function that specifies a Windows OS system, architecture, and CPU variant.- Parameters:
architecture- the CPU architecture.variant- the CPU variant.- Returns:
- the next stage of the container registry task definition.
-
withPlatform
RegistryTask.DefinitionStages.TaskStepType withPlatform(PlatformProperties platformProperties)
The function that specifies a platform.- Parameters:
platformProperties- the properties of the platform.- Returns:
- the next stage of the container registry task definition.
-
-