2014-12-30 17:25:09 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
2015-01-02 12:34:40 -05:00
|
|
|
class AWS
|
2014-12-30 17:25:09 -05:00
|
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/compute/basic'
|
|
|
|
|
|
|
|
# Delete an EBS volume
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * volume_id<~String> - Id of volume to delete.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'return'<~Boolean> - success?
|
|
|
|
#
|
2015-01-02 12:34:40 -05:00
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteVolume.html]
|
2014-12-30 17:25:09 -05:00
|
|
|
def delete_volume(volume_id)
|
|
|
|
request(
|
|
|
|
'Action' => 'DeleteVolume',
|
|
|
|
'VolumeId' => volume_id,
|
|
|
|
:idempotent => true,
|
|
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def delete_volume(volume_id)
|
|
|
|
response = Excon::Response.new
|
|
|
|
if volume = self.data[:volumes][volume_id]
|
|
|
|
if volume["attachmentSet"].any?
|
|
|
|
attach = volume["attachmentSet"].first
|
|
|
|
raise Fog::Compute::AWS::Error.new("Client.VolumeInUse => Volume #{volume_id} is currently attached to #{attach["instanceId"]}")
|
|
|
|
end
|
|
|
|
self.data[:deleted_at][volume_id] = Time.now
|
|
|
|
volume['status'] = 'deleting'
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
|
|
|
response
|
|
|
|
else
|
|
|
|
raise Fog::Compute::AWS::NotFound.new("The volume '#{volume_id}' does not exist.")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|