Class: Fog::Vcloud::Collection
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Vcloud::Collection
- Defined in:
- lib/fog/vcloud/compute.rb
Direct Known Subclasses
Fog::Vcloud::Compute::CatalogItems, Fog::Vcloud::Compute::Catalogs, Fog::Vcloud::Compute::Ips, Fog::Vcloud::Compute::Networks, Fog::Vcloud::Compute::Organizations, Fog::Vcloud::Compute::Servers, Fog::Vcloud::Compute::Tasks, Fog::Vcloud::Compute::Vapps, Fog::Vcloud::Compute::Vdcs
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Collection
#clear, #create, #destroy, #initialize, #inspect, 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
#check_href!(opts = {}) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/fog/vcloud/compute.rb', line 13 def check_href!(opts = {}) self.href = connection.default_vdc_href unless href unless href if opts.is_a?(String) t = Hash.new t[:parent] = opts opts = t end msg = ":href missing, call with a :href pointing to #{if opts[:message] opts[:message] elsif opts[:parent] "the #{opts[:parent]} whos #{self.class.to_s.split('::').last.downcase} you want to enumerate" else "the resource" end}" raise Fog::Errors::Error.new(msg) end end |
#load(objects) ⇒ Object
8 9 10 11 |
# File 'lib/fog/vcloud/compute.rb', line 8 def load(objects) objects = [ objects ] if objects.is_a?(Hash) super end |