Class: Arelastic::Aggregations::SpecialSingleBucket

Inherits:
Bucket show all
Defined in:
lib/arelastic/aggregations/special_single_bucket.rb

Direct Known Subclasses

Children, Nested, Parent

Instance Attribute Summary collapse

Attributes inherited from Bucket

#aggs

Attributes inherited from Aggregation

#meta, #name, #options

Instance Method Summary collapse

Methods inherited from Aggregation

#as_elastic, #nested, #reverse_nested

Methods inherited from Nodes::Node

#==, #convert_to_elastic, #read_option!

Methods included from Arelastic::Arities::Binary

#binary

Methods included from Arelastic::Arities::Polyadic

#polyadic

Methods included from Arelastic::Arities::Unary

#unary

Constructor Details

#initialize(name, specification, aggs) ⇒ SpecialSingleBucket

Returns a new instance of SpecialSingleBucket.



6
7
8
9
# File 'lib/arelastic/aggregations/special_single_bucket.rb', line 6

def initialize(name, specification, aggs)
  super name, aggs: aggs
  @specification = specification
end

Instance Attribute Details

#specificationObject

Returns the value of attribute specification.



4
5
6
# File 'lib/arelastic/aggregations/special_single_bucket.rb', line 4

def specification
  @specification
end

Instance Method Details

#as_elastic_aggregationObject



11
12
13
# File 'lib/arelastic/aggregations/special_single_bucket.rb', line 11

def as_elastic_aggregation
  { aggregation_name => { specification_key => specification } }.merge(super)
end