Class: Fog::AWS::RDS::SubnetGroups

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/aws/models/rds/subnet_groups.rb

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
# File 'lib/fog/aws/models/rds/subnet_groups.rb', line 10

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

#get(identity) ⇒ Object



15
16
17
18
19
20
# File 'lib/fog/aws/models/rds/subnet_groups.rb', line 15

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