Module: Couchbase::Management::Options::Bucket
- Defined in:
- lib/couchbase/management/bucket_manager.rb
Defined Under Namespace
Classes: CreateBucket, DropBucket, FlushBucket, GetAllBuckets, GetBucket, UpdateBucket
Class Method Summary collapse
-
.CreateBucket(**args) ⇒ CreateBucket
Construct CreateBucket options for BucketManager#create_bucket.
-
.DropBucket(**args) ⇒ DropBucket
Construct DropBucket options for BucketManager#drop_bucket.
-
.FlushBucket(**args) ⇒ FlushBucket
Construct FlushBucket options for BucketManager#flush_bucket.
-
.GetAllBuckets(**args) ⇒ GetAllBuckets
Construct GetAllBuckets options for BucketManager#get_all_buckets.
-
.GetBucket(**args) ⇒ GetBucket
Construct GetBucket options for BucketManager#get_bucket.
-
.UpdateBucket(**args) ⇒ UpdateBucket
Construct UpdateBucket options for BucketManager#update_bucket.
Class Method Details
.CreateBucket(**args) ⇒ CreateBucket
Construct CreateBucket options for BucketManager#create_bucket
146 147 148 |
# File 'lib/couchbase/management/bucket_manager.rb', line 146 def CreateBucket(**args) CreateBucket.new(**args) end |
.DropBucket(**args) ⇒ DropBucket
Construct DropBucket options for BucketManager#drop_bucket
160 161 162 |
# File 'lib/couchbase/management/bucket_manager.rb', line 160 def DropBucket(**args) DropBucket.new(**args) end |
.FlushBucket(**args) ⇒ FlushBucket
Construct FlushBucket options for BucketManager#flush_bucket
181 182 183 |
# File 'lib/couchbase/management/bucket_manager.rb', line 181 def FlushBucket(**args) FlushBucket.new(**args) end |
.GetAllBuckets(**args) ⇒ GetAllBuckets
Construct GetAllBuckets options for BucketManager#get_all_buckets
174 175 176 |
# File 'lib/couchbase/management/bucket_manager.rb', line 174 def GetAllBuckets(**args) GetAllBuckets.new(**args) end |
.GetBucket(**args) ⇒ GetBucket
Construct GetBucket options for BucketManager#get_bucket
167 168 169 |
# File 'lib/couchbase/management/bucket_manager.rb', line 167 def GetBucket(**args) GetBucket.new(**args) end |
.UpdateBucket(**args) ⇒ UpdateBucket
Construct UpdateBucket options for BucketManager#update_bucket
153 154 155 |
# File 'lib/couchbase/management/bucket_manager.rb', line 153 def UpdateBucket(**args) UpdateBucket.new(**args) end |