Class Disk
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.Disk
-
public abstract class Disk extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Disk.Builder
-
Constructor Summary
Constructors Constructor Description Disk()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Disk.Builder
builder()
static Disk
create(String id, String name, String location, String type, SKU sku, DiskProperties properties, Map<String,String> tags)
abstract String
id()
The id of the diskabstract String
location()
The location of the diskabstract String
name()
The name of the diskabstract DiskProperties
properties()
The managed disk parameters.abstract SKU
sku()
The sku of the diskabstract Map<String,String>
tags()
the tags of the diskabstract Disk.Builder
toBuilder()
abstract String
type()
The type of the disk
-
-
-
Method Detail
-
location
public abstract String location()
The location of the disk
-
properties
public abstract DiskProperties properties()
The managed disk parameters.
-
create
public static Disk create(String id, String name, String location, String type, SKU sku, DiskProperties properties, Map<String,String> tags)
-
toBuilder
public abstract Disk.Builder toBuilder()
-
builder
public static Disk.Builder builder()
-
-