Sha256: f10d0ead4981b877c1697c45e2f6275ff7ee82b893a423752187bdb6e77a748c

Contents?: true

Size: 646 Bytes

Versions: 1

Compression:

Stored size: 646 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module ElasticBeanstalk

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

          def initialize
            super("UpdateApplicationResult")
            tag 'Application', :object
            tag 'Versions', :string, :list
            tag 'ConfigurationTemplates', :string, :list
            tag 'ApplicationName', :string
            tag 'Description', :string
            tag 'DateCreated', :datetime
            tag 'DateUpdated', :datetime
          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_application.rb