Sha256: 90129c7df0b4103a8709368d0c898627f9559156e3785c1f2d88fa873a803042

Contents?: true

Size: 380 Bytes

Versions: 4

Compression:

Stored size: 380 Bytes

Contents

class AwsInventory::Rds < AwsInventory::Base
  autoload :Shared, "aws_inventory/rds/shared"
  autoload :Summary, "aws_inventory/rds/summary"
  autoload :Port, "aws_inventory/rds/port"

  # Default is the open report because it seems like the most useful report
  def report
    Summary.new(@options).report if show(:summary)
    Port.new(@options).report if show(:port)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-inventory-0.4.5 lib/aws_inventory/rds.rb
aws-inventory-0.4.3 lib/aws_inventory/rds.rb
aws-inventory-0.4.2 lib/aws_inventory/rds.rb
aws-inventory-0.4.0 lib/aws_inventory/rds.rb