Sha256: 0313cf5c06f56befd62244f6be23d7819d060905d275430eb5375cc48d831dc6
Contents?: true
Size: 1.43 KB
Versions: 69
Compression:
Stored size: 1.43 KB
Contents
module Elasticsearch module API module Indices module Actions # Get a single index template. # # @example Get all templates # # client.indices.get_template # # @example Get a template named _mytemplate_ # # client.indices.get_template name: 'mytemplate' # # @note Use the {Cluster::Actions#state} API to get a list of all templates. # # @option arguments [String] :name The name of the template (supports wildcards) # @option arguments [Boolean] :flat_settings Return settings in flat format (default: false) # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node # (default: false) # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node # # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/ # def get_template(arguments={}) valid_params = [ :flat_settings, :local, :master_timeout ] method = HTTP_GET path = Utils.__pathify '_template', Utils.__escape(arguments[:name]) params = Utils.__validate_and_extract_params arguments, valid_params body = arguments[:body] perform_request(method, path, params, body).body end end end end end
Version data entries
69 entries across 69 versions & 6 rubygems