Contains common options supported in the REST API for the Create operation.
Usage
The recommended way to instantiate a CreateOptions object is to statically import
CreateOptions.* and invoke a static creation method followed by an instance mutator (if
needed):
import static CreateOptions.Builder.*
import org.jclouds.azure.storage.queue.AzureQueueClient;
AzureQueueClient connection = // get connection
Multimap metadata = // ...
boolean createdWithPublicAcl = connection.createQueue("containerName", withMetadata(metadata));
*