Sha256: 9b1da9cec8bc2ebef4369c257878252249ea63a8ea5a07a313b9580bf34d5e63
Contents?: true
Size: 584 Bytes
Versions: 71
Compression:
Stored size: 584 Bytes
Contents
require 'fog/core/collection' require 'fog/openstack/models/compute/snapshot' module Fog module Compute class OpenStack class Snapshots < Fog::Collection model Fog::Compute::OpenStack::Snapshot def all(detailed=true) load(service.list_snapshots(detailed).body['snapshots']) end def get(snapshot_id) if snapshot = service.get_snapshot_details(snapshot_id).body['snapshot'] new(snapshot) end rescue Fog::Compute::OpenStack::NotFound nil end end end end end
Version data entries
71 entries across 71 versions & 7 rubygems