mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0c34ca84f5
Added support for OpenStack Network Connectivity (Quantum).
30 lines
No EOL
672 B
Ruby
30 lines
No EOL
672 B
Ruby
module Fog
|
|
module Network
|
|
class OpenStack
|
|
|
|
class Real
|
|
def delete_subnet(subnet_id)
|
|
request(
|
|
:expects => 204,
|
|
:method => 'DELETE',
|
|
:path => "subnets/#{subnet_id}"
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_subnet(subnet_id)
|
|
response = Excon::Response.new
|
|
if list_subnets.body['subnets'].map { |r| r['id'] }.include? subnet_id
|
|
self.data[:subnets].delete(subnet_id)
|
|
response.status = 204
|
|
response
|
|
else
|
|
raise Fog::Network::OpenStack::NotFound
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end |