Class: Fog::Ecloud::Compute::Servers

Inherits:
Fog::Ecloud::Collection show all
Defined in:
lib/fog/compute/models/ecloud/servers.rb

Instance Attribute Summary

Attributes inherited from Collection

#connection

Instance Method Summary collapse

Methods inherited from Fog::Ecloud::Collection

#check_href!, #load

Methods inherited from Collection

#clear, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

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

Methods included from Attributes::InstanceMethods

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

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



15
16
17
18
# File 'lib/fog/compute/models/ecloud/servers.rb', line 15

def all
  check_href!(:parent => "Vdc")
  load(_vapps)
end

#create(catalog_item_uri, options) ⇒ Object



28
29
30
31
32
33
34
35
# File 'lib/fog/compute/models/ecloud/servers.rb', line 28

def create( catalog_item_uri, options )
  options[:vdc_uri] = href
  options[:cpus] ||= 1
  options[:memory] ||= 512
  data = connection.instantiate_vapp_template( catalog_item_uri, options ).body
  object = new(data)
  object
end

#get(uri) ⇒ Object



20
21
22
23
24
25
26
# File 'lib/fog/compute/models/ecloud/servers.rb', line 20

def get(uri)
  if data = connection.get_vapp(uri)
    new(data.body)
  end
rescue Fog::Errors::NotFound
  nil
end