Interface VirtualMachineImage
-
- All Superinterfaces:
HasInnerModel<VirtualMachineImageInner>
public interface VirtualMachineImage extends HasInnerModel<VirtualMachineImageInner>
An immutable client-side representation of an Azure virtual machine image.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<Integer,DataDiskImage>dataDiskImages()Stringid()ImageReferenceimageReference()com.azure.core.management.Regionlocation()Stringoffer()OSDiskImageosDiskImage()PurchasePlanplan()StringpublisherName()Stringsku()Stringversion()-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
-
-
-
Method Detail
-
id
String id()
- Returns:
- the resource ID of this image
-
location
com.azure.core.management.Region location()
- Returns:
- the region in which virtual machine image is available
-
publisherName
String publisherName()
- Returns:
- the publisher name of the virtual machine image
-
offer
String offer()
- Returns:
- the name of the virtual machine image offer this image is part of
-
sku
String sku()
- Returns:
- the commercial name of the virtual machine image (SKU)
-
version
String version()
- Returns:
- the version of the virtual machine image
-
imageReference
ImageReference imageReference()
- Returns:
- the image reference representing the publisher, offer, SKU and version of the virtual machine image
-
plan
PurchasePlan plan()
- Returns:
- the purchase plan for the virtual machine image
-
osDiskImage
OSDiskImage osDiskImage()
- Returns:
- OS disk image in the virtual machine image
-
dataDiskImages
Map<Integer,DataDiskImage> dataDiskImages()
- Returns:
- data disk images in the virtual machine image, indexed by the disk LUN
-
-