Class: Fog::Compute::OpenStack::Flavor

Inherits:
Model
  • Object
show all
Defined in:
lib/rackspace-fog/openstack/models/compute/flavor.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one

Constructor Details

#initialize(attributes) ⇒ Flavor

Returns a new instance of Flavor.



18
19
20
21
# File 'lib/rackspace-fog/openstack/models/compute/flavor.rb', line 18

def initialize(attributes)
  @connection = attributes[:connection]
  super
end

Instance Method Details

#destroyObject



32
33
34
35
36
# File 'lib/rackspace-fog/openstack/models/compute/flavor.rb', line 32

def destroy
  requires :id
  connection.delete_flavor(self.id)
  true
end

#saveObject



23
24
25
26
27
28
29
30
# File 'lib/rackspace-fog/openstack/models/compute/flavor.rb', line 23

def save
  requires :name, :ram, :vcpus, :disk
  attributes[:ephemeral] = self.ephemeral || 0
  attributes[:swap] = self.swap || 0
  attributes[:rxtx_factor] = self.rxtx_factor || 1
  merge_attributes(connection.create_flavor(self.attributes).body['flavor'])
  self
end