2012-02-16 03:14:54 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
2012-02-21 11:09:26 -05:00
|
|
|
class OpenStack
|
2012-02-16 03:14:54 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
def delete_security_group(security_group_id)
|
|
|
|
request(
|
|
|
|
:expects => 202,
|
|
|
|
:method => 'DELETE',
|
|
|
|
:path => "os-security-groups/#{security_group_id}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
2012-02-23 03:43:00 -05:00
|
|
|
def delete_security_group(security_group_id)
|
2013-12-06 18:32:52 -05:00
|
|
|
self.data[:security_groups].delete security_group_id.to_s
|
2012-12-05 22:29:19 -05:00
|
|
|
|
2012-02-23 03:43:00 -05:00
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 202
|
|
|
|
response.headers = {
|
|
|
|
"Content-Type" => "text/html; charset=UTF-8",
|
|
|
|
"Content-Length" => "0",
|
|
|
|
"Date" => Date.new
|
|
|
|
}
|
|
|
|
response.body = {}
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end # mock
|
|
|
|
end # openstack
|
|
|
|
end # compute
|
|
|
|
end #fog
|