Sha256: f2b83b2a509999aaa531d82f3277a53b6380f080600e1565cf2f0f4b48d25c70
Contents?: true
Size: 590 Bytes
Versions: 13
Compression:
Stored size: 590 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(connection.list_snapshots(detailed).body['snapshots']) end def get(snapshot_id) if snapshot = connection.get_snapshot_details(snapshot_id).body['snapshot'] new(snapshot) end rescue Fog::Compute::OpenStack::NotFound nil end end end end end
Version data entries
13 entries across 13 versions & 7 rubygems