Class: Fog::Parsers::Redshift::AWS::DescribeResize

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

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



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
# File 'lib/fog/aws/parsers/redshift/describe_resize.rb', line 29

def end_element(name)
  super
  case name
  when 'TargetNodeType', 'TargetClusterType', 'Status'
    @response[name] = value
  when 'TargetNumberOfNodes'
    @response[name] = value.to_i
  when 'ImportTablesCompleted'
    @in_import_tables_completed = false
  when 'ImportTablesInProgress'
    @in_import_tables_in_progress = false
  when 'ImportTablesNotStarted'
    @in_import_tables_not_started = false
  when 'member'
    if @in_import_tables_completed
      @response['ImportTablesCompleted'] << value
    end
    if @in_import_tables_not_started
      @response['ImportTablesNotStarted'] << value
    end
    if @in_import_tables_in_progress
      @response['ImportTablesInProgress'] << value
    end
  end
end

#resetObject

:target_node_type - (String) :target_number_of_nodes - (Integer) :target_cluster_type - (String) :status - (String) :import_tables_completed - (Array) :import_tables_in_progress - (Array) :import_tables_not_started - (Array)



13
14
15
# File 'lib/fog/aws/parsers/redshift/describe_resize.rb', line 13

def reset
  @response = { 'ImportTablesCompleted' => [], 'ImportTablesInProgress' => [], 'ImportTablesNotStarted' => []}
end

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



17
18
19
20
21
22
23
24
25
26
27
# File 'lib/fog/aws/parsers/redshift/describe_resize.rb', line 17

def start_element(name, attrs = [])
  super
  case name
  when 'ImportTablesCompleted'
    @in_import_tables_completed = true
  when 'ImportTablesInProgress'
    @in_import_tables_in_progress = true
  when 'ImportTablesNotStarted'
    @in_import_tables_not_started = true
  end
end