你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Disk.DefinitionStages.WithDataDiskFromImage Interface

public interface WithDataDiskFromImage

The stage of the managed disk definition allowing to choose source data disk image.

Method Summary

Modifier and Type Method and Description
Disk.DefinitionStages.WithCreateAndSize fromImage(String imageId, int diskLun)

Specifies the ID of an image containing source data disk image.

Disk.DefinitionStages.WithCreateAndSize fromImage(VirtualMachineCustomImage image, int diskLun)

Specifies a custom image containing a source data disk image.

Disk.DefinitionStages.WithCreateAndSize fromImage(VirtualMachineImage image, int diskLun)

Specifies an image containing source data disk image.

Method Details

fromImage

public WithCreateAndSize fromImage(String imageId, int diskLun)

Specifies the ID of an image containing source data disk image.

Parameters:

imageId - image resource ID
diskLun - LUN of the disk image

Returns:

the next stage of the definition

fromImage

public WithCreateAndSize fromImage(VirtualMachineCustomImage image, int diskLun)

Specifies a custom image containing a source data disk image.

Parameters:

image - the image
diskLun - LUN of the disk image

Returns:

the next stage of the definition

fromImage

public WithCreateAndSize fromImage(VirtualMachineImage image, int diskLun)

Specifies an image containing source data disk image.

Parameters:

image - the image
diskLun - LUN of the disk image

Returns:

the next stage of the definition

Applies to