Sha256: 7b3b21792fed7f14f32f61fce5e3c1ba969ef35223a5b39867f88e31aa2ec4f9

Contents?: true

Size: 362 Bytes

Versions: 5

Compression:

Stored size: 362 Bytes

Contents

class Inventory::Rds < Inventory::Base
  autoload :Shared, "inventory/rds/shared"
  autoload :Summary, "inventory/rds/summary"
  autoload :Port, "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

5 entries across 5 versions & 1 rubygems

Version Path
aws-inventory-0.3.2 lib/inventory/rds.rb
aws-inventory-0.3.1 lib/inventory/rds.rb
aws-inventory-0.3.0 lib/inventory/rds.rb
aws-inventory-0.2.1 lib/inventory/rds.rb
aws-inventory-0.2.0 lib/inventory/rds.rb