Sha256: e5ad1b0b57c4654a2939b822c92c10fd3434e6892b0d2197f7da8cf4663e97bb
Contents?: true
Size: 1.47 KB
Versions: 47
Compression:
Stored size: 1.47 KB
Contents
module Elasticsearch module API module Cat module Actions # Returns information about existing templates # # @option arguments [String] :name A pattern that returned template names must match # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml # @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 # @option arguments [List] :h Comma-separated list of column names to display # @option arguments [Boolean] :help Return help information # @option arguments [Boolean] :v Verbose mode. Display column headers # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by # # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-templates.html # def templates(arguments={}) valid_params = [ :name, :format, :local, :master_timeout, :h, :help, :v, :s ] method = HTTP_GET path = "_cat/templates" params = Utils.__validate_and_extract_params arguments, valid_params body = nil perform_request(method, path, params, body).body end end end end end
Version data entries
47 entries across 47 versions & 6 rubygems