class CfnMonitor::Commands

Public Instance Methods

__print_version() click to toggle source
# File lib/cfn_monitor.rb, line 13
def __print_version
  puts CfnMonitor::VERSION
end
deploy() click to toggle source
# File lib/cfn_monitor.rb, line 71
def deploy
  CfnMonitor::Deploy.run(options)
end
generate() click to toggle source
# File lib/cfn_monitor.rb, line 48
def generate
  CfnMonitor::Generate.run(options)
  if options['validate']
    CfnMonitor::Validate.run(options)
  end
end
query() click to toggle source
# File lib/cfn_monitor.rb, line 62
def query
  CfnMonitor::Query.run(options)
end
validate() click to toggle source
# File lib/cfn_monitor.rb, line 80
def validate
  CfnMonitor::Validate.run(options)
end