1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/ec2/describe_volumes.rb

87 lines
2.8 KiB
Ruby
Raw Normal View History

2009-08-15 18:19:07 -04:00
unless Fog.mocking?
module Fog
module AWS
class EC2
# Describe all or specified volumes.
#
# ==== Parameters
# * volume_id<~Array> - List of volumes to describe, defaults to all
#
# ==== Returns
# * response<~Excon::Response>:
2009-08-15 18:19:07 -04:00
# * body<~Hash>:
# * 'volumeSet'<~Array>:
# * 'availabilityZone'<~String> - Availability zone for volume
# * 'createTime'<~Time> - Timestamp for creation
# * 'size'<~Integer> - Size in GiBs for volume
# * 'snapshotId'<~String> - Snapshot volume was created from, if any
# * 'status'<~String> - State of volume
# * 'volumeId'<~String> - Reference to volume
# * 'attachmentSet'<~Array>:
# * 'attachmentTime'<~Time> - Timestamp for attachment
# * 'device'<~String> - How value is exposed to instance
# * 'instanceId'<~String> - Reference to attached instance
# * 'status'<~String> - Attachment state
# * 'volumeId'<~String> - Reference to volume
def describe_volumes(volume_id = [])
params = AWS.indexed_param('VolumeId', volume_id)
2009-08-15 18:19:07 -04:00
request({
'Action' => 'DescribeVolumes',
:parser => Fog::Parsers::AWS::EC2::DescribeVolumes.new
}.merge!(params))
2009-08-15 18:19:07 -04:00
end
end
2009-08-15 18:19:07 -04:00
end
end
else
2009-08-15 18:19:07 -04:00
module Fog
module AWS
class EC2
def describe_volumes(volume_id = [])
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
volume_id = [*volume_id]
2009-08-15 18:19:07 -04:00
if volume_id != []
volume_set = Fog::AWS::EC2.data[:volumes].reject {|key,value| !volume_id.include?(key)}.values
2009-08-15 18:19:07 -04:00
else
volume_set = Fog::AWS::EC2.data[:volumes].values
2009-08-15 18:19:07 -04:00
end
volume_set.each do |volume|
case volume['status']
when 'creating'
if Time.now - volume['createTime'] > 2
volume['status'] = 'available'
end
when 'deleting'
if Time.now - Fog::AWS::EC2.data[:deleted_at][volume['volumeId']] > 2
Fog::AWS::EC2.data[:deleted_at].delete(volume['volumeId'])
Fog::AWS::EC2.data[:volumes].delete(volume['volumeId'])
2009-08-15 18:19:07 -04:00
end
end
end
if volume_id.length == 0 || volume_id.length == volume_set.length
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'volumeSet' => volume_set
}
else
response.status = 400
2009-11-20 14:08:08 -05:00
raise(Excon::Errors.status_error({:expects => 200}, response))
2009-08-15 18:19:07 -04:00
end
response
end
end
end
end
2009-08-15 18:19:07 -04:00
end