lib/elasticsearch/xpack/api/actions/rollup/start_job.rb in elasticsearch-xpack-7.8.1 vs lib/elasticsearch/xpack/api/actions/rollup/start_job.rb in elasticsearch-xpack-7.9.0.pre
- old
+ new
@@ -19,19 +19,15 @@
module XPack
module API
module Rollup
module Actions
# Starts an existing, stopped rollup job.
- # This functionality is Experimental and may be changed or removed
- # completely in a future release. Elastic will take a best effort approach
- # to fix any issues, but experimental features are not subject to the
- # support SLA of official GA features.
#
# @option arguments [String] :id The ID of the job to start
# @option arguments [Hash] :headers Custom HTTP headers
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.8/rollup-start-job.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/rollup-start-job.html
#
def start_job(arguments = {})
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
headers = arguments.delete(:headers) || {}
@@ -45,10 +41,10 @@
params = {}
body = nil
perform_request(method, path, params, body, headers).body
end
+ end
end
- end
end
end
end