Class: Fog::Compute::OpenStack::Flavor
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::OpenStack::Flavor
- Defined in:
- lib/fog/openstack/models/compute/flavor.rb
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes) ⇒ Flavor
constructor
A new instance of Flavor.
- #save ⇒ Object
Constructor Details
#initialize(attributes) ⇒ Flavor
Returns a new instance of Flavor.
20 21 22 23 24 |
# File 'lib/fog/openstack/models/compute/flavor.rb', line 20 def initialize(attributes) # Old 'connection' is renamed as service and should be used instead prepare_service_value(attributes) super end |
Instance Method Details
#destroy ⇒ Object
37 38 39 40 41 |
# File 'lib/fog/openstack/models/compute/flavor.rb', line 37 def destroy requires :id service.delete_flavor(self.id) true end |
#save ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/fog/openstack/models/compute/flavor.rb', line 26 def save requires :name, :ram, :vcpus, :disk attributes[:ephemeral] = self.ephemeral || 0 attributes[:is_public] = self.is_public || false attributes[:disabled] = self.disabled || false attributes[:swap] = self.swap || 0 attributes[:rxtx_factor] = self.rxtx_factor || 1.0 merge_attributes(service.create_flavor(self.attributes).body['flavor']) self end |