Sha256: 1748188f7f5c2d4d85374fb3463450fc4b13f59d8750435b05f7fcd294dc3d57
Contents?: true
Size: 683 Bytes
Versions: 65
Compression:
Stored size: 683 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
65 entries across 65 versions & 6 rubygems