@Path(value="/resourcegroups/{resourcegroup}/providers/Microsoft.Compute/images")
@Consumes(value="application/json")
public interface ImageApi
@Named(value="image:create_or_update")
@PUT
@Path(value="/{imageName}")
Image createOrUpdate(@PathParam(value="imageName")
String imageName,
String location,
ImageProperties properties)
@Named(value="image:get")
@Path(value="/{imageName}")
@GET
Image get(@PathParam(value="imageName")
String imageName)
Copyright © 2009-2018 The Apache Software Foundation. All Rights Reserved.