Interface ImageApi
-
@Path("/resourcegroups/{resourcegroup}/providers/Microsoft.Compute/images") @Consumes("application/json") public interface ImageApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Image
createOrUpdate(String imageName, String location, ImageProperties properties)
URI
delete(String imageName)
Image
get(String imageName)
List<Image>
list()
-
-
-
Method Detail
-
createOrUpdate
@Named("image:create_or_update") @PUT @Path("/{imageName}") Image createOrUpdate(@PathParam("imageName") String imageName, String location, ImageProperties properties)
-
get
@Named("image:get") @Path("/{imageName}") @GET Image get(@PathParam("imageName") String imageName)
-
-