Sha256: c2048a1309d63c806ea38d2e9e4ab8a65bd5bc084aba1350ef9e246148617cea

Contents?: true

Size: 1.09 KB

Versions: 83

Compression:

Stored size: 1.09 KB

Contents

module Fog
  module Parsers
    module AWS
      module ElasticBeanstalk

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

          def initialize
            super("CreateEnvironmentResult")
            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

83 entries across 83 versions & 13 rubygems

Version Path
fog-1.3.1 lib/fog/aws/parsers/beanstalk/create_environment.rb
fog-1.3.0 lib/fog/aws/parsers/beanstalk/create_environment.rb
fog-1.2.0 lib/fog/aws/parsers/beanstalk/create_environment.rb