Home
last modified time | relevance | path

Searched refs:bucketsPath (Results 1 – 13 of 13) sorted by last modified time

/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DDerivative.php17 public function __construct(string $name, ?string $bucketsPath = null) argument
21 if (null !== $bucketsPath) {
22 $this->setBucketsPath($bucketsPath);
H A DExtendedStatsBucket.php15 public function __construct(string $name, string $bucketsPath) argument
19 $this->setBucketsPath($bucketsPath);
H A DSerialDiff.php18 public function __construct(string $name, ?string $bucketsPath = null) argument
22 if (null !== $bucketsPath) {
23 $this->setBucketsPath($bucketsPath);
H A DStatsBucket.php17 public function __construct(string $name, ?string $bucketsPath = null) argument
21 if (null !== $bucketsPath) {
22 $this->setBucketsPath($bucketsPath);
H A DSumBucket.php17 public function __construct(string $name, ?string $bucketsPath = null) argument
21 if (null !== $bucketsPath) {
22 $this->setBucketsPath($bucketsPath);
H A DBucketScript.php16 public function __construct(string $name, ?array $bucketsPath = null, ?string $script = null) argument
20 if (null !== $bucketsPath) {
21 $this->setBucketsPath($bucketsPath);
42 public function setBucketsPath(array $bucketsPath): self
44 return $this->setParam('buckets_path', $bucketsPath);
34 setBucketsPath(array $bucketsPath) global() argument
H A DBucketSelector.php14 public function __construct(string $name, ?array $bucketsPath = null, ?string $script = null) argument
18 if (null !== $bucketsPath) {
19 $this->setBucketsPath($bucketsPath);
40 public function setBucketsPath(array $bucketsPath): self
42 return $this->setParam('buckets_path', $bucketsPath);
32 setBucketsPath(array $bucketsPath) global() argument
H A DCumulativeSum.php14 public function __construct(string $name, string $bucketsPath) argument
18 $this->setBucketsPath($bucketsPath);
H A DAvgBucket.php19 public function __construct(string $name, ?string $bucketsPath = null) argument
23 if (null !== $bucketsPath) {
24 $this->setBucketsPath($bucketsPath);
H A DNormalizeAggregation.php16 public function __construct(string $name, ?string $bucketsPath = null, ?string $method = null) argument
20 if (null !== $bucketsPath) {
21 $this->setBucketsPath($bucketsPath);
H A DPercentilesBucket.php18 public function __construct(string $name, ?string $bucketsPath = null) argument
22 if (null !== $bucketsPath) {
23 $this->setBucketsPath($bucketsPath);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/Traits/
H A DBucketsPathTrait.php10 public function setBucketsPath(string $bucketsPath): self argument
12 return $this->setParam('buckets_path', $bucketsPath);
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php102 public function sum_bucket(string $name, ?string $bucketsPath = null): SumBucket argument
104 return new SumBucket($name, $bucketsPath);
122 public function avg_bucket(string $name, ?string $bucketsPath = null): AvgBucket argument
124 return new AvgBucket($name, $bucketsPath);
140 public function stats_bucket(string $name, ?string $bucketsPath = null): StatsBucket argument
142 return new StatsBucket($name, $bucketsPath);
184 * @param string|null $bucketsPath the field on which to perform this aggregation
186 public function percentiles_bucket(string $name, ?string $bucketsPath = null): PercentilesBucket argument
188 return new PercentilesBucket($name, $bucketsPath);
204 public function cumulative_sum(string $name, string $bucketsPath) argument
444 bucket_script(string $name, array $bucketsPath = null, string $script = null) global() argument
454 serial_diff(string $name, string $bucketsPath = null) global() argument
482 derivative(string $name, string $bucketsPath = null) global() argument
522 normalize(string $name, string $bucketsPath = null, string $method = null) global() argument
[all...]