Class: Fog::Compute::Ecloud::OperatingSystems

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

Instance Method Summary collapse

Methods inherited from Ecloud::Collection

#check_href!, #load

Instance Method Details

#allObject



11
12
13
# File 'lib/fog/compute/ecloud/models/operating_systems.rb', line 11

def all
  load(data)
end

#get(uri) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/fog/compute/ecloud/models/operating_systems.rb', line 15

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