class Fog::Parsers::Redshift::AWS::DescribeResize

Public Instance Methods

end_element(name) click to toggle source
Calls superclass method
# 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
reset() click to toggle source

: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)

# File lib/fog/aws/parsers/redshift/describe_resize.rb, line 13
def reset
  @response = { 'ImportTablesCompleted' => [], 'ImportTablesInProgress' => [], 'ImportTablesNotStarted' => []}
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# 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