# Licensed to Elasticsearch B.V under one or more agreements. # Elasticsearch B.V licenses this file to you under the Apache 2.0 License. # See the LICENSE file in the project root for more information module Elasticsearch module API module Indices module Actions # Creates or updates a data stream # # @option arguments [String] :name The name of the data stream # @option arguments [Hash] :headers Custom HTTP headers # @option arguments [Hash] :body The data stream definition (*Required*) # # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.7/data-streams.html # def create_data_stream(arguments = {}) raise ArgumentError, "Required argument 'body' missing" unless arguments[:body] raise ArgumentError, "Required argument 'name' missing" unless arguments[:name] headers = arguments.delete(:headers) || {} arguments = arguments.clone _name = arguments.delete(:name) method = Elasticsearch::API::HTTP_PUT path = "_data_stream/#{Utils.__listify(_name)}" params = {} body = arguments[:body] perform_request(method, path, params, body, headers).body end end end end end