AzureStorage.Table (AzureStorage v0.1.1) View Source
Azure Table Service
ref. https://docs.microsoft.com/en-us/rest/api/storageservices/table-service-rest-api
{:ok, context} = AzureStorage.create_table_service("account_name", "account_key")
context |> retrieve_entity("partition_key_value", "row_key_value")
Link to this section Summary
Functions
Deletes an existing entity in a table.
Query entities from a table storage
Query entities from a table storage with continuation_token
.
Retrieve an entity by PartitionKey and RowKey
Link to this section Functions
Link to this function
delete_entity(context, table_name, partition_key, row_key, etag \\ "*")
View SourceDeletes an existing entity in a table.
ref. https://docs.microsoft.com/en-us/rest/api/storageservices/insert-entity
Specs
query_entities(AzureStorage.Request.Context.t(), AzureStorage.Table.Query.t()) :: {:ok, list(), String.t()} | {:error, String.t()}
Query entities from a table storage
Specs
query_entities( AzureStorage.Request.Context.t(), AzureStorage.Table.Query.t(), String.t() | nil ) :: {:ok, list(), String.t()} | {:error, String.t()}
Query entities from a table storage with continuation_token
.
Retrieve an entity by PartitionKey and RowKey