 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- Constants
- func NewTestBucket(t testing.TB, component string) (objstore.Bucket, func(), error)
- type Bucket
- func (b *Bucket) Close() error
- func (b *Bucket) Delete(ctx context.Context, name string) error
- func (b *Bucket) Exists(ctx context.Context, name string) (bool, error)
- func (b *Bucket) Get(ctx context.Context, name string) (io.ReadCloser, error)
- func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error)
- func (b *Bucket) IsObjNotFoundErr(err error) bool
- func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error) error
- func (b *Bucket) Name() string
- func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error
 
- type Config
Constants ¶
      View Source
      
  const DirDelim = "/"
    DirDelim is the delimiter used to model a directory structure in an object store bucket.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Bucket ¶
type Bucket struct {
	// contains filtered or unexported fields
}
    Bucket implements the store.Bucket interface against Azure APIs.
func NewBucket ¶
NewBucket returns a new Bucket using the provided Azure config.
func (*Bucket) Delete ¶
Delete removes the object with the given name.
func (*Bucket) Exists ¶
Exists checks if the given object exists.
func (*Bucket) Get ¶
Get returns a reader for the given object name.
func (*Bucket) GetRange ¶
func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error)
GetRange returns a new range reader for the given object name and range.
func (*Bucket) IsObjNotFoundErr ¶
IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations.
func (*Bucket) Iter ¶
Iter calls f for each entry in the given directory. The argument to f is the full object name including the prefix of the inspected directory.
       Source Files
      ¶
      Source Files
      ¶
    
- azure.go
- helpers.go
 Click to show internal directories. 
   Click to hide internal directories.