Sha256: b067b6668189aec7eb10785a3bbf459ffd709b818753d58f3fba16d29890bb56

Contents?: true

Size: 901 Bytes

Versions: 76

Compression:

Stored size: 901 Bytes

Contents

module Fog
  module Volume 
    class OpenStack
      class Real

        def get_snapshot_details(snapshot_id)

          request(
            :expects  => 200,
            :method   => 'GET',
            :path     => "snapshots/#{snapshot_id}"
          )
        end

      end

      class Mock

        def get_snapshot_details(detailed=true)
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'snapshot' => {
              'id'                 => '1',
              'display_name'        => 'Snapshot1',
              'display_description' => 'Volume1 snapshot',
              'size'               => 1,
              'volume_id'           => '1',
              'status'             => 'available',
              'created_at'          => Time.now
            }
          }
          response
        end
      end

    end
  end
end

Version data entries

76 entries across 76 versions & 10 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/requests/volume/get_snapshot_details.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/requests/volume/get_snapshot_details.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-1.20.0 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-1.19.0 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/openstack/requests/volume/get_snapshot_details.rb