Sha256: b65dcf380178e9a186415530dcee434a27bc8c1092faab01890bb5b3124f2d31
Contents?: true
Size: 476 Bytes
Versions: 43
Compression:
Stored size: 476 Bytes
Contents
require 'fog/core/collection' require 'fog/ibm/models/compute/image' module Fog module Compute class IBM class Images < Fog::Collection model Fog::Compute::IBM::Image def all load(service.list_images.body['images']) end def get(image_id) begin new(service.get_image(image_id).body) rescue Fog::Compute::IBM::NotFound nil end end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems