q225zhan commented on this pull request.
> +import org.jclouds.azure.storage.parser.ParseDeleteQueueResponse;
+import org.jclouds.rest.annotations.*;
+
+import javax.inject.Named;
+import javax.ws.rs.*;
+import java.io.Closeable;
+
+@Headers(keys = "x-ms-version", values = "{jclouds.api-version}")
+@RequestFilters(SharedKeyLiteAuthentication.class)
+public interface QueueApi extends Closeable {
+
+ @Named("azure_storage_queue_create")
+ @PUT
+ @Path("/{queueName}")
+ @ResponseParser(ParseCreateQueueResponse.class)
+ CreateQueueResponse create(@PathParam("queueName") String queueName);
Sorry, I have a question about `@Fallback`, this converts an exception to a
custom, but where is the original from. I just test QueueCreate, it does not
have any exception when rest api response with code 204.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/405#discussion_r129731187