class Fog::Compute::Ecloud::OperatingSystems
Public Instance Methods
all()
click to toggle source
# File lib/fog/compute/ecloud/models/operating_systems.rb, line 11 def all load(data) end
get(uri)
click to toggle source
# 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 ServiceError => e raise e unless e.status_code == 404 nil end