Sha256: 395c175e99ae6eaa31d8694820c92558636aa9a8831462e1ff0e533b2cae2a82

Contents?: true

Size: 900 Bytes

Versions: 2

Compression:

Stored size: 900 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

2 entries across 2 versions & 1 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/requests/volume/get_snapshot_details.rb
fog-1.21.0 lib/fog/openstack/requests/volume/get_snapshot_details.rb