Sha256: bf0a7a239aea5409bc948db5451097953c726054b75be1f34511fbb8cfd024e9
Contents?: true
Size: 555 Bytes
Versions: 17
Compression:
Stored size: 555 Bytes
Contents
require 'fog/ecloud/models/compute/detached_disk' module Fog module Compute class Ecloud class DetachedDisks < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::DetachedDisk def all data = service.get_detached_disks(href).body[:DetachedDisk] data = [] if data.nil? load(data) end def get(uri) data = service.get_detached_disk(uri).body new(data) rescue Fog::Errors::NotFound nil end end end end end
Version data entries
17 entries across 17 versions & 5 rubygems