Sha256: bbf5a15993615493030ab066646ba5d62903c4e9ab0331f320037b2a4f7ba988
Contents?: true
Size: 647 Bytes
Versions: 65
Compression:
Stored size: 647 Bytes
Contents
require 'fog/core/collection' require 'fog/aws/models/rds/server' module Fog module AWS class RDS class Servers < Fog::Collection model Fog::AWS::RDS::Server def all data = service.describe_db_instances.body['DescribeDBInstancesResult']['DBInstances'] load(data) # data is an array of attribute hashes end def get(identity) data = service.describe_db_instances(identity).body['DescribeDBInstancesResult']['DBInstances'].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