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

58 lines
1.7 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module Compute
class AWS
2010-03-16 18:46:21 -04:00
class Real
require 'fog/aws/parsers/compute/basic'
# Create a new security group
#
# ==== Parameters
# * group_name<~String> - Name of the security group.
# * group_description<~String> - Description of 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-CreateSecurityGroup.html]
def create_security_group(name, description)
request(
'Action' => 'CreateSecurityGroup',
'GroupName' => name,
'GroupDescription' => description,
:parser => Fog::Parsers::Compute::AWS::Basic.new
)
end
end
2010-03-16 18:46:21 -04:00
class Mock
def create_security_group(name, description)
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2011-05-19 18:35:33 -04:00
unless self.data[:security_groups][name]
data = {
'groupDescription' => description,
'groupName' => name,
'ipPermissions' => [],
2011-05-19 18:35:33 -04:00
'ownerId' => self.data[:owner_id]
}
2011-05-19 18:35:33 -04:00
self.data[:security_groups][name] = data
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
response
else
raise Fog::Compute::AWS::Error.new("InvalidGroup.Duplicate => The security group '#{name}' already exists")
end
end
end
end
end
end