lib/elasticsearch/api/actions/cat/plugins.rb in elasticsearch-api-7.11.2 vs lib/elasticsearch/api/actions/cat/plugins.rb in elasticsearch-api-7.12.0

- old
+ new

@@ -24,15 +24,16 @@ # @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] :include_bootstrap Include bootstrap plugins in the response # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by # @option arguments [Boolean] :v Verbose mode. Display column headers # @option arguments [Hash] :headers Custom HTTP headers # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.11/cat-plugins.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.12/cat-plugins.html # def plugins(arguments = {}) headers = arguments.delete(:headers) || {} arguments = arguments.clone @@ -52,9 +53,10 @@ :format, :local, :master_timeout, :h, :help, + :include_bootstrap, :s, :v ].freeze) end end