lib/elasticsearch/api/actions/indices/get_settings.rb in elasticsearch-api-1.0.17 vs lib/elasticsearch/api/actions/indices/get_settings.rb in elasticsearch-api-1.0.18
- old
+ new
@@ -32,10 +32,11 @@
# are open, closed or both. (options: open, closed)
# @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
# `missing` ones (options: none, missing) @until 1.0
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
# unavailable (missing, closed, etc)
+ # @option arguments [Boolean] :include_defaults Whether to return all default clusters setting
# @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)
#
# @see http://www.elasticsearch.org/guide/reference/api/admin-indices-get-settings/
@@ -43,9 +44,10 @@
def get_settings(arguments={})
valid_params = [
:prefix,
:ignore_indices,
:ignore_unavailable,
+ :include_defaults,
:allow_no_indices,
:expand_wildcards,
:flat_settings,
:local
]