Sha256: 41da10eb43938ee27957a3ebbd7e092213eac2c39e6fff597edf0ada66f4d2bc

Contents?: true

Size: 1.15 KB

Versions: 17

Compression:

Stored size: 1.15 KB

Contents

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

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

        def all(options = {})
          if !options.is_a?(Hash)
            if options
              Fog::Logger.deprecation('Calling OpenStack[:compute].snapshots.all(true) is deprecated, use .snapshots.all')
            else
              Fog::Logger.deprecation('Calling OpenStack[:compute].snapshots.all(false) is deprecated, use .snapshots.summary')
            end
            load_response(service.list_snapshots(options), 'snapshots')
          else
            load_response(service.list_snapshots_detail(options), 'snapshots')
          end
        end

        def summary(options = {})
          load_response(service.list_snapshots(options), '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

17 entries across 17 versions & 2 rubygems

Version Path
fog-openstack-0.1.10 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.9 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.8 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.7 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.6 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.5 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.4 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.3 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.2 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.1 lib/fog/openstack/models/compute/snapshots.rb
fog-openstack-0.1.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.37.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.36.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.35.0 lib/fog/openstack/models/compute/snapshots.rb
fog-2.0.0.pre.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.34.0 lib/fog/openstack/models/compute/snapshots.rb
fog-1.33.0 lib/fog/openstack/models/compute/snapshots.rb