Interface GalleryImage.DefinitionStages.WithOsTypeAndState
-
- All Known Subinterfaces:
GalleryImage.Definition
- Enclosing interface:
- GalleryImage.DefinitionStages
public static interface GalleryImage.DefinitionStages.WithOsTypeAndStateThe stage of the gallery image definition allowing to specify the OS type and state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GalleryImage.DefinitionStages.WithCreatewithGeneralizedLinux()Specifies that image is a Linux image with OS state as generalized.GalleryImage.DefinitionStages.WithCreatewithGeneralizedWindows()Specifies that image is a Windows image with OS state as generalized.GalleryImage.DefinitionStages.WithCreatewithLinux(OperatingSystemStateTypes osState)Specifies that image is a Linux image.GalleryImage.DefinitionStages.WithCreatewithWindows(OperatingSystemStateTypes osState)Specifies that image is a Windows image.
-
-
-
Method Detail
-
withGeneralizedWindows
GalleryImage.DefinitionStages.WithCreate withGeneralizedWindows()
Specifies that image is a Windows image with OS state as generalized.- Returns:
- the next definition stage
-
withGeneralizedLinux
GalleryImage.DefinitionStages.WithCreate withGeneralizedLinux()
Specifies that image is a Linux image with OS state as generalized.- Returns:
- the next definition stage
-
withWindows
GalleryImage.DefinitionStages.WithCreate withWindows(OperatingSystemStateTypes osState)
Specifies that image is a Windows image.- Parameters:
osState- operating system state- Returns:
- the next definition stage
-
withLinux
GalleryImage.DefinitionStages.WithCreate withLinux(OperatingSystemStateTypes osState)
Specifies that image is a Linux image.- Parameters:
osState- operating system state- Returns:
- the next definition stage
-
-