Sha256: 01d1dd1a2bbdb12354a89bc91e0856b8de361600da971224cb15c5741fa112cd
Contents?: true
Size: 489 Bytes
Versions: 65
Compression:
Stored size: 489 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
65 entries across 65 versions & 6 rubygems