Sha256: 375eb945bfdc0f583b47d96a30a1a5e6d0ba9aeaa0e51810188c88269662eea7
Contents?: true
Size: 582 Bytes
Versions: 21
Compression:
Stored size: 582 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
21 entries across 21 versions & 4 rubygems