Class: Fog::Compute::Ecloud::Servers
- Inherits:
-
Ecloud::Collection
- Object
- Array
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Servers
- Defined in:
- lib/fog/compute/models/ecloud/servers.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Methods inherited from Fog::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, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
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, ) [:vdc_uri] = href [:cpus] ||= 1 [:memory] ||= 512 data = connection.instantiate_vapp_template( catalog_item_uri, ).body object = new(data) object end |