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 class
StorageProfile.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.Builder
builder()
static StorageProfile
create(ImageReference imageReference, OSDisk osDisk, List<DataDisk> dataDisks)
abstract List<DataDisk>
dataDisks()
The list of the data disks of the storage profileabstract ImageReference
imageReference()
The image reference of the storage profileabstract OSDisk
osDisk()
The image reference of the storage profileabstract StorageProfile.Builder
toBuilder()
-
-
-
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()
-
-