Interface ImageApi


  • @Path("/resourcegroups/{resourcegroup}/providers/Microsoft.Compute/images")
    @Consumes("application/json")
    public interface ImageApi
    • Method Detail

      • list

        @Named("image:list")
        @GET
        List<Image> list()
      • 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)
      • delete

        @Named("image:delete")
        @Path("/{imageName}")
        @DELETE
        URI delete​(@PathParam("imageName")
                   String imageName)