Sha256: c5d9c480f3d558e8b5858e7bb3dccb3209dd47b8ca8b2487c771715d19b01e4c
Contents?: true
Size: 488 Bytes
Versions: 17
Compression:
Stored size: 488 Bytes
Contents
require 'fog/ecloud/models/compute/operating_system' module Fog module Compute class Ecloud class OperatingSystems < Fog::Ecloud::Collection model Fog::Compute::Ecloud::OperatingSystem identity :data def all load(data) end def get(uri) if data = service.get_operating_system(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
17 entries across 17 versions & 5 rubygems