Class: Fog::Parsers::Storage::AWS::GetBucketLifecycle

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb', line 25

def end_element(name)
  if @in_expiration
    case name
    when 'Days'
      @expiration[name] = value.to_i
    when 'Date'
      @expiration[name] = value
    when 'Expiration'
      @rule['Expiration'] = @expiration
      @in_expiration = false
      @expiration = {}
    end
  elsif @in_transition
    case name
    when 'StorageClass', 
      @transition['StorageClass'] = value
    when 'Date'
      @transition[name] = value
    when 'Days'
      @transition[name] = value.to_i
    when 'Transition'
      @rule['Transition'] = @transition
      @in_transition = false
      @transition = {}
    end
  else
    case name
    when 'ID', 'Prefix'
      @rule[name] = value
    when 'Status'
      @rule['Enabled'] = value == 'Enabled'
    when 'Rule'
      @response['Rules'] << @rule
      @rule = {}
    end 
  end
end

#resetObject



8
9
10
11
12
13
# File 'lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb', line 8

def reset
  @expiration = {}
  @transition = {}
  @rule = {}
  @response = { 'Rules' => [] }
end

#start_element(name, attrs = []) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb', line 15

def start_element(name, attrs=[])
  super
  case name
  when 'Expiration'
    @in_expiration = true
  when 'Transition'
    @in_transition = true
  end
end