Clozure-storage provides an idiomatic Clojure wrapper around Microsoft's Azure SDK for Java (Azure/azure-storage-java).
Currently this is just a proof of concept to show that it is possible to use it. So far it only allows the insertion into table storage.
Include the Clojars dependency in your project.
Read the docstring for insert-data-in-table
.
(defn -main
"I don't do a whole lot ... yet."
[& args]
(insert-data-in-table
"this_is_a_storage_account"
"this_is_an_api_key"
"this_is_a_table_name"
{"partitionKey" "foo" "rowKey" "bar" "this_is_some_field" "this_is_a_value"}))