Sha256: 8a0c1a9b06483b350f322044b94d4566be28a46a3d28a4bed183b3ef153f3de0

Contents?: true

Size: 1.24 KB

Versions: 7

Compression:

Stored size: 1.24 KB

Contents

module Fog
  module Volume
    class OpenStack
      class Real
        def list_snapshots(options = true, options_deprecated = {})
          if options.is_a?(Hash)
            path  = 'snapshots'
            query = options
          else
            # Backwards compatibility layer, when 'detailed' boolean was sent as first param
            if options
              Fog::Logger.deprecation('Calling OpenStack[:volume].list_snapshots(true) is deprecated, use .list_snapshots_detailed instead')
            else
              Fog::Logger.deprecation('Calling OpenStack[:volume].list_snapshots(false) is deprecated, use .list_snapshots({}) instead')
            end
            path  = options ? 'snapshots/detail' : 'snapshots'
            query = options_deprecated
          end

          request(
            :expects  => 200,
            :method   => 'GET',
            :path     => path,
            :query    => query
          )
        end
      end

      class Mock
        def list_snapshots(detailed=true, options={})
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'snapshots' => [get_snapshot_details.body["snapshot"]]
          }
          response
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
fog-1.36.0 lib/fog/openstack/requests/volume/list_snapshots.rb
fog-1.35.0 lib/fog/openstack/requests/volume/list_snapshots.rb
fog-2.0.0.pre.0 lib/fog/openstack/requests/volume/list_snapshots.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/openstack/requests/volume/list_snapshots.rb
fog-1.34.0 lib/fog/openstack/requests/volume/list_snapshots.rb
fog-1.33.0 lib/fog/openstack/requests/volume/list_snapshots.rb
fog-1.32.0 lib/fog/openstack/requests/volume/list_snapshots.rb