Sha256: 322b842b822b9aefd41dd02869f2db5df1c40414484d9939783710df9ff3d174
Contents?: true
Size: 1.61 KB
Versions: 3
Compression:
Stored size: 1.61 KB
Contents
module Sdbport class CLI class Import def initialize @config = Config.new end def import 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.import opts[:input] end def read_options Trollop::options do version Sdbport::VERSION banner <<-EOS Import SimpleDB domain. Usage: sdbport import -a xxx -k yyy -r us-west-1 -i /tmp/file -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 :input, "Input File", :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/import.rb |
sdbport-0.4.0 | lib/sdbport/cli/import.rb |
sdbport-0.3.0 | lib/sdbport/cli/import.rb |