class Fog::AWS::RDS::Servers
Public Instance Methods
Source
# File lib/fog/aws/models/rds/servers.rb, line 9 def all data = service.describe_db_instances.body['DescribeDBInstancesResult']['DBInstances'] load(data) # data is an array of attribute hashes end
Source
# File lib/fog/aws/models/rds/servers.rb, line 14 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
Source
# File lib/fog/aws/models/rds/servers.rb, line 21 def restore(options) create(options) end