lib/elasticsearch/api/actions/indices/put_settings.rb in elasticsearch-api-7.0.0 vs lib/elasticsearch/api/actions/indices/put_settings.rb in elasticsearch-api-7.1.0
- old
+ new
@@ -49,10 +49,10 @@
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
#
- # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-update-settings/
+ # @see https://www.elastic.co/guide/reference/api/admin-indices-update-settings/
#
def put_settings(arguments={})
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
method = HTTP_PUT
path = Utils.__pathify Utils.__listify(arguments[:index]), '_settings'