2009-08-17 12:45:00 -04:00
|
|
|
unless Fog.mocking?
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
|
|
|
# Delete a security group that you own
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * group_name<~String> - Name of the security group.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Fog::AWS::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'return'<~Boolean> - success?
|
|
|
|
def delete_security_group(name)
|
|
|
|
request({
|
|
|
|
'Action' => 'DeleteSecurityGroup',
|
|
|
|
'GroupName' => name
|
|
|
|
}, Fog::Parsers::AWS::EC2::Basic.new)
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
|
|
|
|
end
|
2009-08-17 12:45:00 -04:00
|
|
|
end
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
|
2009-08-17 12:45:00 -04:00
|
|
|
else
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
def delete_security_group(name)
|
|
|
|
response = Fog::Response.new
|
2009-08-20 22:25:52 -04:00
|
|
|
if Fog::AWS::EC2.data[:security_groups][name]
|
|
|
|
Fog::AWS::EC2.data[:security_groups].delete(name)
|
2009-08-17 12:45:00 -04:00
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
|
|
|
else
|
|
|
|
response.status = 400
|
|
|
|
raise(Fog::Errors.status_error(200, 400, response))
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
2009-08-17 12:45:00 -04:00
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|