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/compute/requests/aws/delete_security_group.rb

50 lines
1.4 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2010-03-16 18:46:21 -04:00
class Real
require 'fog/compute/parsers/aws/basic'
# Delete a security group that you own
#
# ==== Parameters
# * group_name<~String> - Name of the security group.
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteSecurityGroup.html]
def delete_security_group(name)
request(
'Action' => 'DeleteSecurityGroup',
'GroupName' => name,
:idempotent => true,
2010-09-08 17:40:02 -04:00
:parser => Fog::Parsers::AWS::Compute::Basic.new
)
end
end
2010-03-16 18:46:21 -04:00
class Mock
def delete_security_group(name)
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2010-03-16 18:46:21 -04:00
if @data[:security_groups][name]
@data[:security_groups].delete(name)
response.status = 200
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
response
else
2010-09-09 20:50:38 -04:00
raise Fog::AWS::Compute::NotFound.new("The security group '#{name}' does not exist")
end
end
end
end
end
end