1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#
module Fog
module OpenStack
class Compute
#
class Real
def create_volume(name, description, size, options = {})
data = {
'volume' => {
'display_name' => name,
'display_description' => description,
'size' => size
}
}
vanilla_options = [
:snapshot_id,
:availability_zone,
:volume_type,
:metadata
]
vanilla_options.select { |o| options[o] }.each do |key|
data['volume'][key] = options[key]
end
request(
:body => Fog::JSON.encode(data),
:expects => [200, 202],
:method => 'POST',
:path => 'os-volumes'
)
end
end
#
class Mock
def create_volume(name, description, size, options = {})
response = Excon::Response.new
response.status = 202
data = {'id' => Fog::Mock.random_numbers(2),
'displayName' => name,
'displayDescription' => description,
'size' => size,
'status' => 'creating',
'snapshotId' => options[:snapshot_id],
'volumeType' => options[:volume_type] || 'None',
'availabilityZone' => options[:availability_zone] || 'nova',
'createdAt' => Time.now.strftime('%FT%T.%6N'),
'attachments' => [], 'metadata' => options[:metadata] || {}}
self.data[:volumes][data['id']] = data
response.body = {'volume' => data}
response
end
end
end
end
end
|