1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
require 'fog/aws/models/rds/security_group'
module Fog
module AWS
class RDS
class SecurityGroups < Fog::Collection
attribute :server
attribute :filters
model Fog::AWS::RDS::SecurityGroup
def initialize(attributes={})
self.filters ||= {}
if attributes[:server]
filters[:identifier] = attributes[:server].id
end
super
end
def all(filters_arg = filters)
filters = filters_arg
data = service.describe_db_security_groups(filters).body['DescribeDBSecurityGroupsResult']['DBSecurityGroups']
load(data) # data is an array of attribute hashes
end
# Example:
# get('my_db_security_group') # => model for my_db_security_group
def get(identity)
data = service.describe_db_security_groups(identity).body['DescribeDBSecurityGroupsResult']['DBSecurityGroups'].first
new(data) # data is an attribute hash
rescue Fog::AWS::RDS::NotFound
nil
end
def new(attributes = {})
super
end
end
end
end
end
|