tablestorage-0.1.0.1: Azure Table Storage REST API Wrapper

Safe HaskellSafe-Infered

Network.TableStorage.Types

Description

Data types used to construct the various web method requests.

Synopsis

Documentation

type AccountKey = StringSource

The Base-64 encoded account secret key

type Signature = StringSource

The type of authorization header signatures

type AuthHeader = StringSource

The type of authorization headers

data Account Source

Account information: host, port, secret key and account name

Instances

data EntityKey Source

Uniquely identifies an entity in a table : a partition key and row key pair.

Constructors

EntityKey 

Instances

data EntityColumn Source

Represents a column in an entity.

The constructor used indicates the data type of the column represented.

For certain operations, the type must match the type of data stored in the table.

Instances

data Entity Source

An entity consists of a key and zero or more additional columns.

Constructors

Entity 

Instances

data EntityQuery Source

An entity query consists of an optional filter and an optional number of entities to return.

Projections are not currently supported.

Instances

data ComparisonType Source

The various comparisons supported in entity queries.

Instances