File: describe_resize.rb

package info (click to toggle)
ruby-fog-aws 3.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,816 kB
  • sloc: ruby: 68,587; makefile: 6
file content (58 lines) | stat: -rw-r--r-- 1,980 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
module Fog
  module Parsers
    module Redshift
      module AWS
        class DescribeResize < Fog::Parsers::Base
          # :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)
          def reset
            @response = { 'ImportTablesCompleted' => [], 'ImportTablesInProgress' => [], 'ImportTablesNotStarted' => []}
          end

          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

          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
        end
      end
    end
  end
end