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 ImagecreateOrUpdate(String imageName, String location, ImageProperties properties)URIdelete(String imageName)Imageget(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)
-
-