Sha256: fa7883d61ea86979158e66cb713908d207848f994809e9625d027e2a13a78594
Contents?: true
Size: 537 Bytes
Versions: 23
Compression:
Stored size: 537 Bytes
Contents
require 'fog/core/collection' require 'fog/clodo/models/compute/image' module Fog module Compute class Clodo class Images < Fog::Collection model Fog::Compute::Clodo::Image def all data = connection.list_images_detail.body['images'] load(data) end def get(image_id) image = connection.get_image_details(image_id).body['image'] new(image) if image rescue Fog::Compute::Clodo::NotFound nil end end end end end
Version data entries
23 entries across 23 versions & 11 rubygems