Sha256: 654768b79d73b6b413bb9777a37eadd92dbb24b71569b844042ad5e35b6973b9
Contents?: true
Size: 492 Bytes
Versions: 13
Compression:
Stored size: 492 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 = connection.get_operating_system(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
13 entries across 13 versions & 7 rubygems