lib/elasticsearch/api/actions/security/authenticate.rb in elasticsearch-api-8.12.2 vs lib/elasticsearch/api/actions/security/authenticate.rb in elasticsearch-api-8.13.0

- old
+ new

@@ -24,21 +24,21 @@ module Actions # Enables authentication as a user and retrieve information about the authenticated user. # # @option arguments [Hash] :headers Custom HTTP headers # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/security-api-authenticate.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.13/security-api-authenticate.html # def authenticate(arguments = {}) - request_opts = { endpoint: arguments[:endpoint] || "security.authenticate" } + request_opts = { endpoint: arguments[:endpoint] || 'security.authenticate' } arguments = arguments.clone headers = arguments.delete(:headers) || {} body = nil method = Elasticsearch::API::HTTP_GET - path = "_security/_authenticate" + path = '_security/_authenticate' params = {} Elasticsearch::API::Response.new( perform_request(method, path, params, body, headers, request_opts) )