lib/elasticsearch/api/actions/indices/recovery.rb in elasticsearch-api-6.2.0 vs lib/elasticsearch/api/actions/indices/recovery.rb in elasticsearch-api-6.3.0
- old
+ new
@@ -18,13 +18,12 @@
# client.indices.recovery
#
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
# @option arguments [Boolean] :detailed Whether to display detailed information about shard recovery
# @option arguments [Boolean] :active_only Display only those recoveries that are currently on-going
- # @option arguments [Boolean] :human Whether to return time and byte values in human readable format
#
- # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-recovery.html
+ # @see http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-recovery.html
#
def recovery(arguments={})
method = HTTP_GET
path = Utils.__pathify Utils.__listify(arguments[:index]), '_recovery'
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
@@ -36,11 +35,10 @@
# Register this action with its valid params when the module is loaded.
#
# @since 6.2.0
ParamsRegistry.register(:recovery, [
:detailed,
- :active_only,
- :human ].freeze)
+ :active_only ].freeze)
end
end
end
end