# File lib/fog/aws/models/rds/servers.rb, line 12 def all data = connection.describe_db_instances.body['DescribeDBInstancesResult']['DBInstances'] load(data) # data is an array of attribute hashes end
# File lib/fog/aws/models/rds/servers.rb, line 17 def get(identity) data = connection.describe_db_instances(identity).body['DescribeDBInstancesResult']['DBInstances'].first new(data) # data is an attribute hash rescue Fog::AWS::RDS::NotFound nil end