#
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License
# 2.0 and the Server Side Public License, v 1; you may not use this file except
# in compliance with, at your election, the Elastic License 2.0 or the Server
# Side Public License, v 1.
#

# This file contains a allowlist for the Moving Function pipeline aggregator

class org.elasticsearch.search.aggregations.pipeline.MovingFunctions {
  double max(double[])
  double min(double[])
  double sum(double[])
  double stdDev(double[], double)
  double unweightedAvg(double[])
  double linearWeightedAvg(double[])
  double ewma(double[], double)
  double holt(double[], double, double)
  double holtWinters(double[], double, double, double, int, boolean)
}
