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 class
Image.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.Builder
builder()
static Image
create(String id, String name, String location, ImageProperties properties, Map<String,String> tags)
abstract String
id()
The id of the imageabstract String
location()
The location of the imageabstract String
name()
The name of the imageabstract ImageProperties
properties()
The image properties.abstract Map<String,String>
tags()
the tags of the imageabstract Image.Builder
toBuilder()
-
-
-
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()
-
-