Sha256: 9220fd3e0b2dce20694b8e936942798e833fbfc87bf2d2d68efd07ef8003a136

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

module Fog
  module Parsers
    module AWS
      module ElasticBeanstalk

        require 'rackspace-fog/aws/parsers/beanstalk/parser'
        class UpdateEnvironment < Fog::Parsers::AWS::ElasticBeanstalk::BaseParser

          def initialize
            super("UpdateEnvironmentResult")
            tag 'ApplicationName', :string
            tag 'CNAME', :string
            tag 'DateCreated', :datetime
            tag 'DateUpdated', :datetime
            tag 'Description', :string
            tag 'EndpointURL', :string
            tag 'EnvironmentId', :string
            tag 'EnvironmentName', :string
            tag 'Health', :string
            tag 'Resources', :object
            tag 'LoadBalancer', :object
            tag 'Domain', :string
            tag 'LoadBalancerName', :string
            tag 'Listeners', :object, :list
            tag 'Port', :integer
            tag 'Protocol', :string
            tag 'SolutionStackName', :string
            tag 'Status', :string
            tag 'TemplateName', :string
            tag 'VersionLabel', :string
          end

        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/parsers/beanstalk/update_environment.rb