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

Version Path
fog-1.31.0 lib/fog/openstack/models/compute/snapshots.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/openstack/models/compute/snapshots.rb
fog-1.30.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.29.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.28.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.27.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.26.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.25.0 lib/fog/openstack/models/compute/snapshots.rb
nsidc-fog-1.24.1 lib/fog/openstack/models/compute/snapshots.rb
fog-1.24.0 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.11 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.10 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.9 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.8 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.7 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.6 lib/fog/openstack/models/compute/snapshots.rb
fog-1.23.0 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.4 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.3 lib/fog/openstack/models/compute/snapshots.rb
ns-fog-1.22.2 lib/fog/openstack/models/compute/snapshots.rb