Sha256: c17938301960e43b17c219d3a98392049799a36f74c4be1987c9a8f18d70fd9b
Contents?: true
Size: 652 Bytes
Versions: 48
Compression:
Stored size: 652 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 = connection.describe_db_instances.body['DescribeDBInstancesResult']['DBInstances'] load(data) # data is an array of attribute hashes end 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 end end end end
Version data entries
48 entries across 48 versions & 14 rubygems