Sha256: e6fc8fae9594c6aa415bbeb96da560a2ffa7b01c57269951cc5a7b33d646ccb8

Contents?: true

Size: 1.15 KB

Versions: 48

Compression:

Stored size: 1.15 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 = filters)
          self.filters = filters
          data = connection.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 = connection.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

48 entries across 48 versions & 14 rubygems

Version Path
fog-0.11.0 lib/fog/aws/models/rds/security_groups.rb
fog-0.10.0 lib/fog/aws/models/rds/security_groups.rb
fog4encbs-0.9.0.1 lib/fog/aws/models/rds/security_groups.rb
fog4encbs-0.9.0 lib/fog/aws/models/rds/security_groups.rb
fog-0.9.0 lib/fog/aws/models/rds/security_groups.rb
fog-0.8.2 lib/fog/aws/models/rds/security_groups.rb
fog-0.8.1 lib/fog/aws/models/rds/security_groups.rb
fog-0.8.0 lib/fog/aws/models/rds/security_groups.rb