Sha256: 70aad51c4644700e8415a56cd8deb9a6c716312677902161cb28ec1034166d7f
Contents?: true
Size: 720 Bytes
Versions: 6
Compression:
Stored size: 720 Bytes
Contents
module Elasticsearch module XPack module API module SQL module Actions # TODO: Description # # @option arguments [Hash] :body Specify the cursor value in the `cursor` element to clean the cursor. (*Required*) # # @see Clear SQL cursor # def clear_cursor(arguments={}) raise ArgumentError, "Required argument 'body' missing" unless arguments[:body] method = Elasticsearch::API::HTTP_POST path = "_xpack/sql/close" params = {} body = arguments[:body] perform_request(method, path, params, body).body end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems