Sha256: 0fc51df834a960a9679e152bcc3b4b9265cd8d8071ad648aa77586162ed63034

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

require 'fog/core/collection'
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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fog-aws-0.1.1 lib/fog/aws/models/rds/security_groups.rb
fog-aws-0.1.0 lib/fog/aws/models/rds/security_groups.rb
fog-aws-0.0.8 lib/fog/aws/models/rds/security_groups.rb
fog-aws-0.0.7 lib/fog/aws/models/rds/security_groups.rb
fog-aws-0.0.6 lib/fog/aws/models/rds/security_groups.rb
fog-aws-0.0.5 lib/fog/aws/models/rds/security_groups.rb