Class: Fog::AWS::RDS::Servers

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/aws/models/rds/servers.rb

Instance Method Summary collapse

Instance Method Details

#allObject



12
13
14
15
# File 'lib/fog/aws/models/rds/servers.rb', line 12

def all
  data = service.describe_db_instances.body['DescribeDBInstancesResult']['DBInstances']
  load(data) # data is an array of attribute hashes
end

#get(identity) ⇒ Object



17
18
19
20
21
22
# File 'lib/fog/aws/models/rds/servers.rb', line 17

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