module Elasticsearch module XPack module API module Rollup module Actions # TODO: Description # # @option arguments [String] :id The ID of the job to start (*Required*) # # @see # def start_job(arguments={}) raise ArgumentError, "Required argument 'id' missing" unless arguments[:id] method = Elasticsearch::API::HTTP_POST path = "_xpack/rollup/job/#{arguments[:id]}/_start" params = {} body = nil perform_request(method, path, params, body).body end end end end end end