Interface Disk.DefinitionStages.WithDataDiskFromImage
-
- Enclosing interface:
- Disk.DefinitionStages
public static interface Disk.DefinitionStages.WithDataDiskFromImageThe stage of the managed disk definition allowing to choose source data disk image.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Disk.DefinitionStages.WithCreateAndSizefromImage(VirtualMachineCustomImage image, int diskLun)Specifies a custom image containing a source data disk image.Disk.DefinitionStages.WithCreateAndSizefromImage(VirtualMachineImage image, int diskLun)Specifies an image containing source data disk image.Disk.DefinitionStages.WithCreateAndSizefromImage(String imageId, int diskLun)Specifies the ID of an image containing source data disk image.
-
-
-
Method Detail
-
fromImage
Disk.DefinitionStages.WithCreateAndSize fromImage(String imageId, int diskLun)
Specifies the ID of an image containing source data disk image.- Parameters:
imageId- image resource IDdiskLun- LUN of the disk image- Returns:
- the next stage of the definition
-
fromImage
Disk.DefinitionStages.WithCreateAndSize fromImage(VirtualMachineImage image, int diskLun)
Specifies an image containing source data disk image.- Parameters:
image- the imagediskLun- LUN of the disk image- Returns:
- the next stage of the definition
-
fromImage
Disk.DefinitionStages.WithCreateAndSize fromImage(VirtualMachineCustomImage image, int diskLun)
Specifies a custom image containing a source data disk image.- Parameters:
image- the imagediskLun- LUN of the disk image- Returns:
- the next stage of the definition
-
-