Sha256: 6ee440161967c790c57e56a29d484977d3840315bd88525f8a3860da1286172c

Contents?: true

Size: 825 Bytes

Versions: 39

Compression:

Stored size: 825 Bytes

Contents

require 'fog/volume/openstack/requests/get_snapshot_details'

module Fog
  module Volume
    class OpenStack
      class V2
        class Real
          include Fog::Volume::OpenStack::Real
        end

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

Version data entries

39 entries across 37 versions & 3 rubygems

Version Path
fog-openstack-0.1.27 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-openstack-0.1.26/lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-openstack-0.1.26/lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-openstack-0.1.26/lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.26 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.25 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.24 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.23 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.22 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.21 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.20 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.19 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.18 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.17 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.15 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.14 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.13 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.12 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb
fog-openstack-0.1.11 lib/fog/volume/openstack/v2/requests/get_snapshot_details.rb