Class: Couchbase::Management::Options::Query::CreatePrimaryIndex

Inherits:
Options::Base
  • Object
show all
Defined in:
lib/couchbase/management/query_index_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/query_index_manager.rb
more...

Overview

Instance Attribute Summary collapse

Attributes inherited from Options::Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(ignore_if_exists: false, num_replicas: nil, deferred: false, scope_name: nil, collection_name: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ CreatePrimaryIndex

Creates an instance of options for QueryIndexManager#create_primary_index

Parameters:

  • ignore_if_exists (Boolean) (defaults to: false)

    do not raise error if the index already exist

  • num_replicas (Integer) (defaults to: nil)

    the number of replicas that this index should have

  • deferred (Boolean) (defaults to: false)

    whether the index should be created as a deferred index.

  • scope_name (String, nil) (defaults to: nil)

    the name of the scope

  • collection_name (String, nil) (defaults to: nil)

    the name of the collection

  • timeout (Integer, #in_milliseconds, nil) (defaults to: nil)

    the time in milliseconds allowed for the operation to complete

  • retry_strategy (Proc, nil) (defaults to: nil)

    the custom retry strategy, if set

  • client_context (Hash, nil) (defaults to: nil)

    the client context data, if set

  • parent_span (Span, nil) (defaults to: nil)

    if set holds the parent span, that should be used for this request

Yield Parameters:

[View source]

121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/couchbase/management/query_index_manager.rb', line 121

def initialize(ignore_if_exists: false,
               num_replicas: nil,
               deferred: false,
               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)
  @ignore_if_exists = ignore_if_exists
  @num_replicas = num_replicas
  @deferred = deferred
  @scope_name = scope_name
  @collection_name = collection_name
  yield self if block_given?
end

Instance Attribute Details

#collection_nameString?

Returns:

  • (String, nil)

105
106
107
# File 'lib/couchbase/management/query_index_manager.rb', line 105

def collection_name
  @collection_name
end

#deferredBoolean

Returns:

  • (Boolean)

103
104
105
# File 'lib/couchbase/management/query_index_manager.rb', line 103

def deferred
  @deferred
end

#ignore_if_existsBoolean

Returns:

  • (Boolean)

101
102
103
# File 'lib/couchbase/management/query_index_manager.rb', line 101

def ignore_if_exists
  @ignore_if_exists
end

#num_replicasInteger?

Returns:

  • (Integer, nil)

102
103
104
# File 'lib/couchbase/management/query_index_manager.rb', line 102

def num_replicas
  @num_replicas
end

#scope_nameString?

Returns:

  • (String, nil)

104
105
106
# File 'lib/couchbase/management/query_index_manager.rb', line 104

def scope_name
  @scope_name
end