Sha256: e3607bc66e8a62349c17ce742f9097b7b7f5ff10caca6f7c27092381657be474
Contents?: true
Size: 752 Bytes
Versions: 2
Compression:
Stored size: 752 Bytes
Contents
class S3Secure::Lifecycle class List < Base def run presenter = CliFormat::Presenter.new(@options) presenter.header = ["Bucket", "Has Lifecycle Rules?"] buckets.each do |bucket| $stderr.puts "Getting lifecycle policy for bucket #{bucket.color(:green)}" show = Show.new(bucket: bucket) row = [bucket, show.any?] if @options[:lifecycle].nil? presenter.rows << row # always show policy elsif @options[:lifecycle] presenter.rows << row if status # only show if bucket has some encryption rules else presenter.rows << row unless status # only show if bucket doesnt have any encryption rules end end presenter.show end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
s3-secure-0.5.1 | lib/s3_secure/lifecycle/list.rb |
s3-secure-0.5.0 | lib/s3_secure/lifecycle/list.rb |