Class: Fog::Vcloud::Collection

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/vcloud/compute.rb

Instance Method Summary collapse

Instance Method Details

#check_href!(opts = {}) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/vcloud/compute.rb', line 11

def check_href!(opts = {})
  self.href = service.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]} whose #{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



6
7
8
9
# File 'lib/fog/vcloud/compute.rb', line 6

def load(objects)
  objects = [ objects ] if objects.is_a?(Hash)
  super
end