Class StorageProfile
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.StorageProfile
-
public abstract class StorageProfile extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStorageProfile.Builder
-
Constructor Summary
Constructors Constructor Description StorageProfile()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static StorageProfile.Builderbuilder()static StorageProfilecreate(ImageReference imageReference, OSDisk osDisk, List<DataDisk> dataDisks)abstract List<DataDisk>dataDisks()The list of the data disks of the storage profileabstract ImageReferenceimageReference()The image reference of the storage profileabstract OSDiskosDisk()The image reference of the storage profileabstract StorageProfile.BuildertoBuilder()
-
-
-
Method Detail
-
imageReference
@Nullable public abstract ImageReference imageReference()
The image reference of the storage profile
-
osDisk
public abstract OSDisk osDisk()
The image reference of the storage profile
-
dataDisks
@Nullable public abstract List<DataDisk> dataDisks()
The list of the data disks of the storage profile
-
create
public static StorageProfile create(ImageReference imageReference, OSDisk osDisk, List<DataDisk> dataDisks)
-
toBuilder
public abstract StorageProfile.Builder toBuilder()
-
builder
public static StorageProfile.Builder builder()
-
-