Class Image
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.Image
-
public abstract class Image extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImage.Builder
-
Constructor Summary
Constructors Constructor Description Image()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Image.Builderbuilder()static Imagecreate(String id, String name, String location, ImageProperties properties, Map<String,String> tags)abstract Stringid()The id of the imageabstract Stringlocation()The location of the imageabstract Stringname()The name of the imageabstract ImagePropertiesproperties()The image properties.abstract Map<String,String>tags()the tags of the imageabstract Image.BuildertoBuilder()
-
-
-
Method Detail
-
location
public abstract String location()
The location of the image
-
properties
public abstract ImageProperties properties()
The image properties.
-
create
public static Image create(String id, String name, String location, ImageProperties properties, Map<String,String> tags)
-
toBuilder
public abstract Image.Builder toBuilder()
-
builder
public static Image.Builder builder()
-
-