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

Version Path
fog-1.22.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.21.0 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/models/compute/snapshots.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/models/compute/snapshots.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/models/compute/snapshots.rb
fog-1.20.0 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/models/compute/snapshots.rb
fog-1.19.0 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/models/compute/snapshots.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/models/compute/snapshots.rb