Sha256: 0a51711b19600bf1f3b29aea83999261927d6193690f70e0343c3a7309709048

Contents?: true

Size: 709 Bytes

Versions: 34

Compression:

Stored size: 709 Bytes

Contents

require 'fog/openstack/models/collection'
require 'fog/shared_file_system/openstack/models/snapshot'

module Fog
  module SharedFileSystem
    class OpenStack
      class Snapshots < Fog::OpenStack::Collection
        model Fog::SharedFileSystem::OpenStack::Snapshot

        def all(options = {})
          load_response(service.list_snapshots_detail(options), 'snapshots')
        end

        def find_by_id(id)
          snapshot_hash = service.get_snapshot(id).body['snapshot']
          new(snapshot_hash.merge(:service => service))
        end

        alias get find_by_id

        def destroy(id)
          snapshot = find_by_id(id)
          snapshot.destroy
        end
      end
    end
  end
end

Version data entries

34 entries across 32 versions & 3 rubygems

Version Path
fog-openstack-0.1.31 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.10 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.1.30 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.1.29 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.9 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.1.28 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.8 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.7 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.6 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.5 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.4 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.3 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.2 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.3.0 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.2.4 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.2.3 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.2.2 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.2.1 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-openstack-0.2.0 lib/fog/shared_file_system/openstack/models/snapshots.rb
fog-zj-0.1.28 lib/fog/shared_file_system/openstack/models/snapshots.rb