Class: Couchbase::Management::Options::Analytics::DropDataverse
- Inherits:
-
Options::Base
- Object
- Options::Base
- Couchbase::Management::Options::Analytics::DropDataverse
- Defined in:
- lib/couchbase/management/analytics_index_manager.rb,
/code/couchbase-ruby-client/lib/couchbase/management/analytics_index_manager.rb
Overview
Options for AnalyticsIndexManager#drop_dataverse
Instance Attribute Summary collapse
Attributes inherited from Options::Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(ignore_if_does_not_exist: false, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ DropDataverse
constructor
Creates an instance of options for AnalyticsIndexManager#create_dataverse.
Constructor Details
#initialize(ignore_if_does_not_exist: false, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ DropDataverse
Creates an instance of options for AnalyticsIndexManager#create_dataverse
73 74 75 76 77 78 79 80 81 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 73 def initialize(ignore_if_does_not_exist: false, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span) @ignore_if_does_not_exist = ignore_if_does_not_exist yield self if block_given? end |
Instance Attribute Details
#ignore_if_does_not_exist ⇒ Boolean
60 61 62 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 60 def ignore_if_does_not_exist @ignore_if_does_not_exist end |