Sha256: 24c83d482a5696874d1f4102ff6bccac9c89545ff25c1eb29f253cf1f7ecbb12

Contents?: true

Size: 747 Bytes

Versions: 4

Compression:

Stored size: 747 Bytes

Contents

module Fog
  module Compute
    class HuaweiCloud
      class Real
        def get_snapshot_details(snapshot_id)
          request(
            :expects => 200,
            :method  => 'GET',
            :path    => "os-snapshots/#{snapshot_id}"
          )
        end
      end

      class Mock
        def get_snapshot_details(snapshot_id)
          response = Excon::Response.new
          if snapshot = list_snapshots_detail.body['snapshots'].find do |snap|
            snap['id'] == snapshot_id
          end
            response.status = 200
            response.body = {'snapshot' => snapshot}
            response
          else
            raise Fog::Compute::HuaweiCloud::NotFound
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/compute/huaweicloud/requests/get_snapshot_details.rb
fog-huaweicloud-0.0.2 lib/fog/compute/huaweicloud/requests/get_snapshot_details.rb
fog-huaweicloud-0.1.3 lib/fog/compute/huaweicloud/requests/get_snapshot_details.rb
fog-huaweicloud-0.1.2 lib/fog/compute/huaweicloud/requests/get_snapshot_details.rb