Sha256: 4a6871e22881e1a91ce85862e7962ec584c88eb549b42e44ead8423602cc1e7a
Contents?: true
Size: 527 Bytes
Versions: 65
Compression:
Stored size: 527 Bytes
Contents
require 'fog/core/collection' require 'fog/voxel/models/compute/image' module Fog module Compute class Voxel class Images < Fog::Collection model Fog::Compute::Voxel::Image def all data = service.images_list.body['images'] load(data) end def get(image_id) data = service.images_list(image_id).body['images'] if data.empty? nil else new(data.first) end end end end end end
Version data entries
65 entries across 65 versions & 6 rubygems