Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DefaultBaseURL is the domain name used for storage requests in the // public cloud when a default client is created. DefaultBaseURL = storage.DefaultBaseURL // DefaultAPIVersion is the Azure Storage API version string used when a // basic client is created. DefaultAPIVersion = storage.DefaultAPIVersion )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Blob ¶
type Blob interface { CreateBlockBlobFromReader(blob io.Reader, options *storage.PutBlobOptions) error CreateBlockBlob(options *storage.PutBlobOptions) error PutBlock(blockID string, chunk []byte, options *storage.PutBlockOptions) error PutBlockList(blocks []storage.Block, options *storage.PutBlockListOptions) error Get(options *storage.GetBlobOptions) (io.ReadCloser, error) GetSASURI(options storage.BlobSASOptions) (string, error) Delete(options *storage.DeleteBlobOptions) error Exists() (bool, error) }
Blob is a minimal interface for azure Blob
type BlobStorageClient ¶
BlobStorageClient is a minimal interface for azure BlobStorageClient
type Client ¶
type Client interface {
GetBlobService() BlobStorageClient
}
Client is a minimal interface for azure Client
type Container ¶
type Container interface { CreateIfNotExists(options *storage.CreateContainerOptions) (bool, error) GetBlobReference(name string) Blob Exists() (bool, error) ListBlobs(params storage.ListBlobsParameters) (storage.BlobListResponse, error) }
Container is a minimal interface for azure Container
Click to show internal directories.
Click to hide internal directories.