Class: Fog::Compute::HPV2::Flavors
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::HPV2::Flavors
- Defined in:
- lib/fog/hp/models/compute_v2/flavors.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(flavor_id) ⇒ Object
-
#initialize(attributes) ⇒ Flavors
constructor
A new instance of Flavors.
Constructor Details
#initialize(attributes) ⇒ Flavors
Returns a new instance of Flavors.
12 13 14 15 |
# File 'lib/fog/hp/models/compute_v2/flavors.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/fog/hp/models/compute_v2/flavors.rb', line 17 def all(filters_arg = filters) details = filters_arg.delete(:details) self.filters = filters_arg non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters) if details data = service.list_flavors_detail(non_aliased_filters).body['flavors'] else data = service.list_flavors(non_aliased_filters).body['flavors'] end load(data) end |