2010-03-16 18:46:21 -04:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class AWS
|
2010-03-16 18:46:21 -04:00
|
|
|
class Real
|
2009-08-17 12:45:00 -04:00
|
|
|
|
2011-08-24 21:37:00 -04:00
|
|
|
require 'fog/aws/parsers/compute/basic'
|
2011-02-22 22:05:14 -05:00
|
|
|
|
2009-08-17 12:45:00 -04:00
|
|
|
# Create a new security group
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * group_name<~String> - Name of the security group.
|
|
|
|
# * group_description<~String> - Description of group.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-08-17 12:45:00 -04:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'return'<~Boolean> - success?
|
2011-05-19 12:31:56 -04:00
|
|
|
#
|
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateSecurityGroup.html]
|
2009-08-17 12:45:00 -04:00
|
|
|
def create_security_group(name, description)
|
2010-03-16 01:15:33 -04:00
|
|
|
request(
|
|
|
|
'Action' => 'CreateSecurityGroup',
|
|
|
|
'GroupName' => name,
|
2011-03-23 17:13:31 -04:00
|
|
|
'GroupDescription' => description,
|
2011-06-16 19:28:54 -04:00
|
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
2010-03-16 01:15:33 -04:00
|
|
|
)
|
2009-08-17 12:45:00 -04:00
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
|
2010-03-16 18:46:21 -04:00
|
|
|
class Mock
|
2009-08-17 12:45:00 -04:00
|
|
|
|
|
|
|
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]
|
2009-08-17 12:45:00 -04:00
|
|
|
data = {
|
2011-03-23 17:13:31 -04:00
|
|
|
'groupDescription' => description,
|
|
|
|
'groupName' => name,
|
2009-08-17 12:45:00 -04:00
|
|
|
'ipPermissions' => [],
|
2011-05-19 18:35:33 -04:00
|
|
|
'ownerId' => self.data[:owner_id]
|
2009-08-17 12:45:00 -04:00
|
|
|
}
|
2011-05-19 18:35:33 -04:00
|
|
|
self.data[:security_groups][name] = data
|
2009-08-17 12:45:00 -04:00
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
2010-05-26 01:26:20 -04:00
|
|
|
response
|
2009-08-17 12:45:00 -04:00
|
|
|
else
|
2011-06-16 19:28:54 -04:00
|
|
|
raise Fog::Compute::AWS::Error.new("InvalidGroup.Duplicate => The security group '#{name}' already exists")
|
2009-08-17 12:45:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|