Sha256: 6011a1e987a8f45beca2f3e33bf378d436f3ae50ca26becba51301574dc72b9c
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
module Elasticsearch module API module Indices module Actions # Open a previously closed index (see the {Indices::Actions#close} API). # # @example Open index named _myindex_ # # client.indices.open index: 'myindex' # # @option arguments [String] :index The name of the index (*Required*) # @option arguments [Time] :timeout Explicit operation timeout # # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-open-close/ # def open(arguments={}) raise ArgumentError, "Required argument 'index' missing" unless arguments[:index] method = 'POST' path = "#{arguments[:index]}/_open" params = arguments.select do |k,v| [ :timeout ].include?(k) end # Normalize Ruby 1.8 and Ruby 1.9 Hash#select behaviour params = Hash[params] unless params.is_a?(Hash) body = nil perform_request(method, path, params, body).body end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch-api-0.4.0 | lib/elasticsearch/api/actions/indices/open.rb |
elasticsearch-api-0.0.2 | lib/elasticsearch/api/actions/indices/open.rb |