Sha256: 9ef53f904b5738fd4cc746d3eaf0c35f1200a1422cd9d7165d7c252ecb7fb777
Contents?: true
Size: 680 Bytes
Versions: 22
Compression:
Stored size: 680 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 = service.describe_db_subnet_groups.body['DescribeDBSubnetGroupsResult']['DBSubnetGroups'] load(data) # data is an array of attribute hashes end 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 end end end end
Version data entries
22 entries across 22 versions & 5 rubygems