Class: BucketManager

BucketManager

A class for performing management operations against a bucket. This class should not be instantiated directly, but instead through the use of the Bucket#manager method instead.

<private> new BucketManager(bucket)

Parameters:
Name Type Description
bucket
Since:
  • 2.0.0 (stability: committed)

Methods

flush(callback)

Flushes the cluster, deleting all data stored within this bucket. Note that this method requires the Flush permission to be enabled on the bucket from the management console before it will work.

Parameters:
Name Type Description
callback
Since:
  • 2.0.0 (stability: committed)

getDesignDocument(name, callback)

Retrieves a specific design document from this bucket.

Parameters:
Name Type Description
name
callback
Since:
  • 2.0.0 (stability: committed)

getDesignDocuments(callback)

Retrieves a list of all design documents registered to a bucket.

Parameters:
Name Type Description
callback
Since:
  • 2.0.0 (stability: committed)

insertDesignDocument(name, data, callback)

Registers a design document to this bucket, failing if it already exists.

Parameters:
Name Type Description
name
data
callback
Since:
  • 2.0.0 (stability: committed)

removeDesignDocument(name, callback)

Unregisters a design document from this bucket.

Parameters:
Name Type Description
name
callback
Since:
  • 2.0.0 (stability: committed)

upsertDesignDocument(name, data, callback)

Registers a design document to this bucket, overwriting any existing design document that was previously registered.

Parameters:
Name Type Description
name
data
callback
Since:
  • 2.0.0 (stability: committed)