Class: Couchbase::Management::Options::Query::GetAllIndexes
- Inherits:
-
Options::Base
- Object
- Options::Base
- Couchbase::Management::Options::Query::GetAllIndexes
- Defined in:
- lib/couchbase/management/query_index_manager.rb,
/code/couchbase-ruby-client/lib/couchbase/management/query_index_manager.rb
Overview
Options for QueryIndexManager#get_all_indexes
Instance Attribute Summary collapse
Attributes inherited from Options::Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(scope_name: nil, collection_name: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAllIndexes
constructor
Creates an instance of options for QueryIndexManager#get_all_indexes.
Constructor Details
#initialize(scope_name: nil, collection_name: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ GetAllIndexes
Creates an instance of options for QueryIndexManager#get_all_indexes
41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/couchbase/management/query_index_manager.rb', line 41 def initialize(scope_name: nil, collection_name: nil, 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) @scope_name = scope_name @collection_name = collection_name yield self if block_given? end |
Instance Attribute Details
#collection_name ⇒ String?
28 29 30 |
# File 'lib/couchbase/management/query_index_manager.rb', line 28 def collection_name @collection_name end |
#scope_name ⇒ String?
27 28 29 |
# File 'lib/couchbase/management/query_index_manager.rb', line 27 def scope_name @scope_name end |