Class: Fog::AWS::RDS::Parameters

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Parameters

Returns a new instance of Parameters.



12
13
14
15
16
17
18
# File 'lib/fog/aws/models/rds/parameters.rb', line 12

def initialize(attributes)
  self.filters ||= {}
  if attributes[:source]
    filters[:source] = attributes[:source]
  end
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/fog/aws/models/rds/parameters.rb', line 20

def all(filters = filters)
  self.filters = filters
  result = []
  marker = nil
  finished = false
  while !finished
    data = service.describe_db_parameters(group.id, filters.merge(:marker => marker)).body
    result.concat(data['DescribeDBParametersResult']['Parameters'])
    marker = data['DescribeDBParametersResult']['Marker']
    finished = marker.nil?
  end
  load(result) # data is an array of attribute hashes
end