Interface GalleryImage.UpdateStages.WithDisallowed
-
- All Known Subinterfaces:
GalleryImage.Update
- Enclosing interface:
- GalleryImage.UpdateStages
public static interface GalleryImage.UpdateStages.WithDisallowedThe stage of the gallery image update allowing to specify settings disallowed for a virtual machine based on the image.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GalleryImage.UpdatewithDisallowed(Disallowed disallowed)Specifies disallowed settings.GalleryImage.UpdatewithoutUnsupportedDiskType(DiskSkuTypes diskType)Specifies the disk type should be removed from the unsupported disk type.GalleryImage.UpdatewithUnsupportedDiskType(DiskSkuTypes diskType)Specifies the disk type not supported by the image.GalleryImage.UpdatewithUnsupportedDiskTypes(List<DiskSkuTypes> diskTypes)Specifies the disk types not supported by the image.
-
-
-
Method Detail
-
withUnsupportedDiskType
GalleryImage.Update withUnsupportedDiskType(DiskSkuTypes diskType)
Specifies the disk type not supported by the image.- Parameters:
diskType- the disk type- Returns:
- the next update stage
-
withUnsupportedDiskTypes
GalleryImage.Update withUnsupportedDiskTypes(List<DiskSkuTypes> diskTypes)
Specifies the disk types not supported by the image.- Parameters:
diskTypes- the disk types- Returns:
- the next update stage
-
withoutUnsupportedDiskType
GalleryImage.Update withoutUnsupportedDiskType(DiskSkuTypes diskType)
Specifies the disk type should be removed from the unsupported disk type.- Parameters:
diskType- the disk type- Returns:
- the next update stage
-
withDisallowed
GalleryImage.Update withDisallowed(Disallowed disallowed)
Specifies disallowed settings.- Parameters:
disallowed- the disallowed settings- Returns:
- the next update stage
-
-