Sha256: 3fe2e0f75aaf5bf983ff2ea39681c99879748784286e650756a5b497aa5a3a2a

Contents?: true

Size: 1.63 KB

Versions: 98

Compression:

Stored size: 1.63 KB

Contents

module Fog
  module Parsers
    module Redshift
      module AWS
        class DescribeOrderableClusterOptions < Fog::Parsers::Base
          # :marker - (String)
          # :orderable_cluster_options - (Array)
          #   :cluster_version - (String)
          #   :cluster_type - (String)
          #   :node_type - (String)
          #   :availability_zones - (Array)
          #     :name - (String)

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

          def fresh_orderable_cluster_option
           {'AvailabilityZones' => []}
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'OrderableClusterOptions'
              @orderable_cluster_option = fresh_orderable_cluster_option
            when 'AvailabilityZones'
              @availability_zone = {}
            end
          end

          def end_element(name)
            super
            case name
            when 'Marker'
              @response[name] = value
            when 'ClusterVersion', 'ClusterType', 'NodeType'
              @orderable_cluster_option[name] = value
            when 'Name'
              @availability_zone[name] = value
            when 'AvailabilityZone'
              @orderable_cluster_option['AvailabilityZones'] << {name => @availability_zone}
              @availability_zone = {}
            when 'OrderableClusterOption'
              @response['OrderableClusterOptions'] << {name => @orderable_cluster_option}
              @orderable_cluster_option = fresh_orderable_cluster_option
            end
          end
        end
      end
    end
  end
end

Version data entries

98 entries across 96 versions & 6 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.29.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.28.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.27.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.26.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.25.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.24.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.23.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.22.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.21.1 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.21.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.20.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.19.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.18.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.17.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.16.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.15.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.14.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.13.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
fog-aws-3.12.0 lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb