Sha256: a68524564c762b4fd92fd6c3d882bf7ef695caec7321f2b041c2ee89d0f826cb

Contents?: true

Size: 1.36 KB

Versions: 20

Compression:

Stored size: 1.36 KB

Contents

module Fog
  module Parsers
    module AWS
      module AutoScaling

        class DescribeScheduledActions < Fog::Parsers::Base

          def reset
            reset_scheduled_update_group_action
            @results = { 'ScheduledUpdateGroupActions' => [] }
            @response = { 'DescribeScheduledActionsResult' => {}, 'ResponseMetadata' => {} }
          end

          def reset_scheduled_update_group_action
            @scheduled_update_group_action = {}
          end

          def end_element(name)
            case name
            when 'member'
              @results['ScheduledUpdateGroupActions'] << @scheduled_update_group_action
              reset_scheduled_update_group_action

            when 'AutoScalingGroupName', 'ScheduledActionARN', 'ScheduledActionName'
              @activity[name] = value
            when 'DesiredCapacity', 'MaxSize', 'MinSize'
              @scheduled_update_group_action[name] = value.to_i
            when 'Time'
              @scheduled_update_group_action[name] = Time.parse(value)

            when 'NextToken'
              @results[name] = value

            when 'RequestId'
              @response['ResponseMetadata'][name] = value

            when 'DescribeScheduledActionsResponse'
              @response['DescribeScheduledActionsResult'] = @results
            end
          end

        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 4 rubygems

Version Path
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog-1.1.2 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog_tractical-1.1.4 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog_tractical-1.1.3 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog-1.1.1 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog-1.1.0 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
tag-fog-1.0.1 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog-1.0.0 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog-0.11.0 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
fog-0.10.0 lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb