AzureStorage.Blob (ExAzureStorage v0.1.0) View Source

Blob Service

Link to this section Summary

Functions

The Create Container operation creates a new container under the specified account. If the container with the same name already exists, the operation fails.

The Delete Container operation marks the specified container for deletion. The container and any blobs contained within it are later deleted during garbage collection.

The Get Container Metadata operation returns all user-defined metadata for the container.

The Get Container Properties operation returns all user-defined metadata and system properties for the specified container. The data returned does not include the container's list of blobs.

The List Blobs operation returns a list of the blobs under the specified container.

The List Containers operation returns a list of the containers under the specified storage account.

The Set Container Metadata operation sets one or more user-defined name-value pairs for the specified container.

Link to this section Functions

Link to this function

create_blob(context, container, filename, content, options \\ [])

View Source
Link to this function

create_container(context, container)

View Source

The Create Container operation creates a new container under the specified account. If the container with the same name already exists, the operation fails.

Link to this function

delete_blob(context, container, blob_name)

View Source
Link to this function

delete_container(context, container)

View Source

The Delete Container operation marks the specified container for deletion. The container and any blobs contained within it are later deleted during garbage collection.

Link to this function

get_blob_content(context, container, blob_name)

View Source
Link to this function

get_container_metadata(context, container)

View Source

The Get Container Metadata operation returns all user-defined metadata for the container.

Link to this function

get_container_properties(context, container)

View Source

The Get Container Properties operation returns all user-defined metadata and system properties for the specified container. The data returned does not include the container's list of blobs.

Link to this function

list_blobs(context, container, options \\ [])

View Source

The List Blobs operation returns a list of the blobs under the specified container.

Link to this function

list_containers(context, options \\ [])

View Source

The List Containers operation returns a list of the containers under the specified storage account.

Link to this function

set_container_metadata(context, container, metadata)

View Source

The Set Container Metadata operation sets one or more user-defined name-value pairs for the specified container.