Sha256: 637d0c4609c783582bf36dd3679dbd929c3b03675488c9cb512e89adf0b36660

Contents?: true

Size: 554 Bytes

Versions: 6

Compression:

Stored size: 554 Bytes

Contents

require "sfn"

module Sfn
  class Config

    # Export command configuration
    class Export < Config
      attribute(
        :name, String,
        :description => "Export file base name",
      )
      attribute(
        :path, String,
        :description => "Local path prefix for dump file",
      )
      attribute(
        :bucket, String,
        :description => "Remote storage bucket",
      )
      attribute(
        :bucket_prefix, String,
        :description => "Remote key prefix within bucket for dump file",
      )
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sfn-3.1.8 lib/sfn/config/export.rb
sfn-3.1.6 lib/sfn/config/export.rb
sfn-3.1.4 lib/sfn/config/export.rb
sfn-3.1.2 lib/sfn/config/export.rb
sfn-3.1.0 lib/sfn/config/export.rb
sfn-3.0.32 lib/sfn/config/export.rb