Sha256: 56e1baad5cdce8a61a226befbbfb314720c0b9575ecaffe2a27c0ef840431800

Contents?: true

Size: 689 Bytes

Versions: 7

Compression:

Stored size: 689 Bytes

Contents

require 'fog/core/collection'
require 'fog/aws/models/rds/subnet_group'

module Fog
  module AWS
    class RDS

      class SubnetGroups < Fog::Collection

        model Fog::AWS::RDS::SubnetGroup

        def all
          data = connection.describe_db_subnet_groups.body['DescribeDBSubnetGroupsResult']['DBSubnetGroups']
          load(data) # data is an array of attribute hashes
        end

        def get(identity)
          data = connection.describe_db_subnet_groups(identity).body['DescribeDBSubnetGroupsResult']['DBSubnetGroups'].first
          new(data) # data is an attribute hash
        rescue Fog::AWS::RDS::NotFound
          nil
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 5 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/aws/models/rds/subnet_groups.rb
fog-nirvanix-1.8.1 lib/fog/aws/models/rds/subnet_groups.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/aws/models/rds/subnet_groups.rb
fog-sgonyea-1.8.1 lib/fog/aws/models/rds/subnet_groups.rb
fog-1.8.0 lib/fog/aws/models/rds/subnet_groups.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/aws/models/rds/subnet_groups.rb
fog-1.7.0 lib/fog/aws/models/rds/subnet_groups.rb