2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/collection'
|
2011-08-24 21:37:00 -04:00
|
|
|
require 'fog/aws/models/compute/security_group'
|
2010-03-16 18:46:21 -04:00
|
|
|
|
2009-09-18 11:56:42 -04:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class AWS
|
2009-09-18 11:56:42 -04:00
|
|
|
|
|
|
|
class SecurityGroups < Fog::Collection
|
|
|
|
|
2010-10-04 18:46:12 -04:00
|
|
|
attribute :filters
|
2009-09-25 12:01:51 -04:00
|
|
|
|
2011-06-16 19:28:54 -04:00
|
|
|
model Fog::Compute::AWS::SecurityGroup
|
2009-10-30 02:35:28 -04:00
|
|
|
|
2010-11-29 18:44:44 -05:00
|
|
|
# Creates a new security group
|
|
|
|
#
|
|
|
|
# AWS.security_groups.new
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
#
|
|
|
|
# Returns the details of the new image
|
|
|
|
#
|
|
|
|
#>> AWS.security_groups.new
|
|
|
|
# <Fog::AWS::Compute::SecurityGroup
|
|
|
|
# name=nil,
|
|
|
|
# description=nil,
|
|
|
|
# ip_permissions=nil,
|
|
|
|
# owner_id=nil
|
2011-12-23 08:40:47 -05:00
|
|
|
# vpc_id=nil
|
2010-11-29 18:44:44 -05:00
|
|
|
# >
|
|
|
|
#
|
|
|
|
|
2009-09-28 00:31:15 -04:00
|
|
|
def initialize(attributes)
|
2010-11-19 16:45:45 -05:00
|
|
|
self.filters ||= {}
|
2009-09-28 00:31:15 -04:00
|
|
|
super
|
|
|
|
end
|
2010-11-29 18:44:44 -05:00
|
|
|
|
|
|
|
# Returns an array of all security groups that have been created
|
|
|
|
#
|
|
|
|
# AWS.security_groups.all
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
#
|
|
|
|
# Returns an array of all security groups
|
|
|
|
#
|
|
|
|
#>> AWS.security_groups.all
|
|
|
|
# <Fog::AWS::Compute::SecurityGroups
|
|
|
|
# filters={}
|
|
|
|
# [
|
|
|
|
# <Fog::AWS::Compute::SecurityGroup
|
|
|
|
# name="default",
|
|
|
|
# description="default group",
|
|
|
|
# ip_permissions=[{"groups"=>[{"groupName"=>"default", "userId"=>"312571045469"}], "fromPort"=>-1, "toPort"=>-1, "ipRanges"=>[], "ipProtocol"=>"icmp"}, {"groups"=>[{"groupName"=>"default", "userId"=>"312571045469"}], "fromPort"=>0, "toPort"=>65535, "ipRanges"=>[], "ipProtocol"=>"tcp"}, {"groups"=>[{"groupName"=>"default", "userId"=>"312571045469"}], "fromPort"=>0, "toPort"=>65535, "ipRanges"=>[], "ipProtocol"=>"udp"}],
|
|
|
|
# owner_id="312571045469"
|
2011-12-23 08:40:47 -05:00
|
|
|
# vpc_id=nill
|
2010-11-29 18:44:44 -05:00
|
|
|
# >
|
|
|
|
# ]
|
|
|
|
# >
|
|
|
|
#
|
2009-09-28 00:31:15 -04:00
|
|
|
|
2010-11-19 16:45:45 -05:00
|
|
|
def all(filters = filters)
|
2010-10-11 16:45:26 -04:00
|
|
|
unless filters.is_a?(Hash)
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.deprecation("all with #{filters.class} param is deprecated, use all('group-name' => []) instead [light_black](#{caller.first})[/]")
|
2010-10-11 16:45:26 -04:00
|
|
|
filters = {'group-name' => [*filters]}
|
|
|
|
end
|
2010-11-19 16:45:45 -05:00
|
|
|
self.filters = filters
|
2010-11-30 19:43:28 -05:00
|
|
|
data = connection.describe_security_groups(filters).body
|
2010-03-06 23:02:10 -05:00
|
|
|
load(data['securityGroupInfo'])
|
2009-09-18 11:56:42 -04:00
|
|
|
end
|
|
|
|
|
2010-11-29 18:44:44 -05:00
|
|
|
# Used to retreive a security group
|
|
|
|
# group name is required to get the associated flavor information.
|
|
|
|
#
|
|
|
|
# You can run the following command to get the details:
|
|
|
|
# AWS.security_groups.get("default")
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
#
|
|
|
|
#>> AWS.security_groups.get("default")
|
|
|
|
# <Fog::AWS::Compute::SecurityGroup
|
|
|
|
# name="default",
|
|
|
|
# description="default group",
|
|
|
|
# ip_permissions=[{"groups"=>[{"groupName"=>"default", "userId"=>"312571045469"}], "fromPort"=>-1, "toPort"=>-1, "ipRanges"=>[], "ipProtocol"=>"icmp"}, {"groups"=>[{"groupName"=>"default", "userId"=>"312571045469"}], "fromPort"=>0, "toPort"=>65535, "ipRanges"=>[], "ipProtocol"=>"tcp"}, {"groups"=>[{"groupName"=>"default", "userId"=>"312571045469"}], "fromPort"=>0, "toPort"=>65535, "ipRanges"=>[], "ipProtocol"=>"udp"}],
|
|
|
|
# owner_id="312571045469"
|
2011-12-23 08:40:47 -05:00
|
|
|
# vpc_id=nil
|
2010-11-29 18:44:44 -05:00
|
|
|
# >
|
|
|
|
#
|
|
|
|
|
2009-09-25 12:01:51 -04:00
|
|
|
def get(group_name)
|
2009-10-22 23:46:15 -04:00
|
|
|
if group_name
|
2010-10-04 18:46:12 -04:00
|
|
|
self.class.new(:connection => connection).all('group-name' => group_name).first
|
2009-10-22 23:46:15 -04:00
|
|
|
end
|
2009-09-25 12:01:51 -04:00
|
|
|
end
|
|
|
|
|
2009-09-18 11:56:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|