Class: Couchbase::Management::Options::Bucket::CreateBucket

Inherits:
Options::Base
  • Object
show all
Defined in:
lib/couchbase/management/bucket_manager.rb

Overview

Instance Attribute Summary

Attributes inherited from Options::Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Methods inherited from Options::Base

#to_backend

Constructor Details

#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ CreateBucket

Creates an instance of options for BucketManager#create_bucket

Yield Parameters:



36
37
38
39
40
41
42
# File 'lib/couchbase/management/bucket_manager.rb', line 36

def initialize(timeout: nil,
               retry_strategy: nil,
               client_context: nil,
               parent_span: nil)
  super
  yield self if block_given?
end