Module: Awspec::Helper::Finder::Rds
- Included in:
- Awspec::Helper::Finder
- Defined in:
- lib/awspec/helper/finder/rds.rb
Instance Method Summary collapse
- #find_rds(id) ⇒ Object
- #select_all_rds_db_cluster_parameters(parameter_group) ⇒ Object
- #select_all_rds_db_parameters(parameter_group) ⇒ Object
- #select_rds_by_vpc_id(vpc_id) ⇒ Object
Instance Method Details
#find_rds(id) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/awspec/helper/finder/rds.rb', line 4 def find_rds(id) begin res = rds_client.describe_db_instances({ db_instance_identifier: id }) rescue res = rds_client.describe_db_instances({ filters: [{ name: 'db-instance-id', values: [id] }] }) end res.db_instances.single_resource(id) end |
#select_all_rds_db_cluster_parameters(parameter_group) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/awspec/helper/finder/rds.rb', line 42 def select_all_rds_db_cluster_parameters(parameter_group) parameters = {} next_marker = nil loop do res = rds_client.describe_db_cluster_parameters({ marker: next_marker, db_cluster_parameter_group_name: parameter_group }) res.parameters.each do |param| parameters[param.parameter_name] = param.parameter_value end (res.marker.present? && next_marker = res.marker) || break end parameters end |
#select_all_rds_db_parameters(parameter_group) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/awspec/helper/finder/rds.rb', line 24 def select_all_rds_db_parameters(parameter_group) parameters = {} res = rds_client.describe_db_parameters({ db_parameter_group_name: parameter_group }) loop do res.parameters.each do |param| parameters[param.parameter_name] = param.parameter_value end break if res.marker.nil? res = rds_client.describe_db_parameters({ db_parameter_group_name: parameter_group, marker: res.marker }) end parameters end |
#select_rds_by_vpc_id(vpc_id) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/awspec/helper/finder/rds.rb', line 17 def select_rds_by_vpc_id(vpc_id) res = rds_client.describe_db_instances res.db_instances.select do |db_instance| db_instance.db_subnet_group.vpc_id == vpc_id end end |