File: describe_cluster_subnet_groups.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 (55 lines) | stat: -rw-r--r-- 1,818 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
module Fog
  module Parsers
    module Redshift
      module AWS
        class DescribeClusterSubnetGroups < Fog::Parsers::Base
          # :marker - (String)
          # :cluster_subnet_groups - (Array<Hash>)
          #   :cluster_subnet_group_name - (String)
          #   :description - (String)
          #   :vpc_id - (String)
          #   :subnet_group_status - (String)
          #   :subnets - (Array<Hash>)
          #     :subnet_identifier - (String)
          #     :subnet_availability_zone - (Hash)
          #       :name - (String)
          #     :subnet_status - (String)

          def reset
            @response = { 'ClusterSubnetGroups' => [] }
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'ClusterSubnetGroups'
              @cluster_subnet_group = {'Subnets' => []}
            end
          end

          def end_element(name)
            super
            case name
            when 'Marker'
              @response[name] = value
            when 'ClusterSubnetGroup'
              @response['ClusterSubnetGroups'] << {name => @cluster_subnet_group}
              @cluster_subnet_group = {'Subnets' => []}
            when 'ClusterSubnetGroupName', 'Description', 'VpcId', 'SubnetGroupStatus'
              @cluster_subnet_group[name] = value
            when 'Subnet'
              @cluster_subnet_group['Subnets'] << {name => @subnet} if @subnet
              @subnet = {}
            when 'SubnetAvailabilityZone'
              @subnet['SubnetAvailabilityZone'] = {}
            when 'Name'
              @subnet['SubnetAvailabilityZone']['Name'] = value
            when 'SubnetIdentifier', 'SubnetStatus'
              @subnet[name] = value
            end
          end
        end
      end
    end
  end
end