Sha256: 0b0a2984bd4313a337a0a20b74b453aa8c4c8bec64f7efd47bda1ca65e6e0ab3
Contents?: true
Size: 1.54 KB
Versions: 3
Compression:
Stored size: 1.54 KB
Contents
module Sdbport class CLI class Destroy def initialize @config = Config.new end def destroy opts = read_options access_key = @config.access_key opts[:account] secret_key = @config.secret_key opts[:account] access_key = opts[:access_key] if opts[:access_key] secret_key = opts[:secret_key] if opts[:secret_key] logger = SdbportLogger.new :log_level => opts[:level] domain = Domain.new :name => opts[:name], :region => opts[:region], :access_key => access_key, :secret_key => secret_key, :logger => logger exit 1 unless domain.destroy end def read_options Trollop::options do version Sdbport::VERSION banner <<-EOS Destroy SimpleDB Domain Usage: sdbport destroy -a xxx -k yyy -r us-west-1 -n domain EOS opt :help, "Display Help" opt :account, "Account Credentials", :type => :string, :default => 'default' opt :level, "Log Level", :type => :string, :default => 'info' opt :name, "Simple DB Domain Name", :type => :string opt :region, "AWS Region", :type => :string opt :access_key, "AWS Access Key ID", :type => :string, :short => 'k' opt :secret_key, "AWS Secret Access Key", :type => :string end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sdbport-0.4.1 | lib/sdbport/cli/destroy.rb |
sdbport-0.4.0 | lib/sdbport/cli/destroy.rb |
sdbport-0.3.0 | lib/sdbport/cli/destroy.rb |