Packages

Elixir Azure Storage REST Client support Blob, Queue, Fileshare and TableStorage service

Current section

Files

Jump to
ex_azure_storage lib azure_storage table schema.ex
Raw

lib/azure_storage/table/schema.ex

defmodule AzureStorage.Table.Schema do
def retrieve_entity_options,
do: [
as: [
type: {:in, [:json, :entity]},
default: :json,
doc: "return result as `json` or `AzureStorage.Table.EntityDescriptor`"
]
]
def query_entities_options,
do: [
as: [
type: {:in, [:json, :entity]},
default: :json,
doc: "return result as `json` or `AzureStorage.Table.EntityDescriptor`"
],
continuation_token: [
type: :string,
default: "",
doc: "Continuation token required to fetch paged results"
]
]
end