Sha256: 6be9c9cf2d129d214159faeba26dcc6506d59285f75ed2bf39916b172668c1e5
Contents?: true
Size: 888 Bytes
Versions: 26
Compression:
Stored size: 888 Bytes
Contents
module Awspec::Type class RdsDbParameterGroup < Base def resource_via_client return @resource_via_client if @resource_via_client parameters = {} res = rds_client.describe_db_parameters({ db_parameter_group_name: @display_name }) loop do res.parameters.each do |param| parameters[param.parameter_name] = param.parameter_value end (res.next_page? && res = res.next_page) || break end @resource_via_client ||= parameters end def id @id ||= @display_name unless resource_via_client.empty? end def method_missing(name) param_name = name.to_s if resource_via_client.include?(param_name) resource_via_client[param_name].to_s else super end end end end
Version data entries
26 entries across 26 versions & 1 rubygems