-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78bdf69
commit c0bea6a
Showing
7 changed files
with
45 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module Azure.Blob | ||
( | ||
-- ** Variants to fetch a blob object | ||
getBlobObject | ||
, getBlobObjectEither | ||
|
||
-- ** Variants to upload a blob to Blob storage | ||
, putBlobObject | ||
, putBlobObjectEither | ||
|
||
-- ** Variants for deleting a blob object | ||
, deleteBlobObject | ||
, deleteBlobObjectEither | ||
|
||
-- ** Generating a Shared Access Signature URI | ||
, generateSas | ||
|
||
-- ** Types for dealing with Blob storage functions | ||
, AccountName (..) | ||
, ContainerName (..) | ||
, BlobName (..) | ||
) where | ||
|
||
import Azure.Blob.PutBlob | ||
import Azure.Blob.GetBlob | ||
import Azure.Blob.DeleteBlob | ||
import Azure.Blob.SharedAccessSignature | ||
import Azure.Blob.Types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters