Class: Fog::Vcloud::Compute::Servers
- Inherits:
-
Fog::Vcloud::Collection
- Object
- Array
- Collection
- Fog::Vcloud::Collection
- Fog::Vcloud::Compute::Servers
- Defined in:
- lib/fog/compute/models/vcloud/servers.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Fog::Vcloud::Collection
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, #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/vcloud/servers.rb', line 15 def all check_href!(:parent => "Vdc") load(_vapps) end |
#create(options) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/fog/compute/models/vcloud/servers.rb', line 30 def create check_href! [:vdc_uri] = href data = connection.instantiate_vapp_template().body object = new(data) object end |
#get(uri) ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/fog/compute/models/vcloud/servers.rb', line 20 def get(uri) if data = connection.get_vapp(uri) # If no tasks returned, set a mock entry to flush on reload data.body[:Tasks] = {} unless data.body[:Tasks] new(data.body) end rescue Fog::Errors::NotFound nil end |