Sha256: 003a55195f86a37db7b7202179ba058b734cf102d2d287daf3b9f4506c459724

Contents?: true

Size: 953 Bytes

Versions: 1

Compression:

Stored size: 953 Bytes

Contents

module Fog
  module AWS
    class ElasticBeanstalk
      class Real

        require 'rackspace-fog/aws/parsers/beanstalk/describe_events'

        # Returns list of event descriptions matching criteria up to the last 6 weeks.
        #
        # ==== Options
        # * ApplicationName<~String>: If specified, AWS Elastic Beanstalk restricts the returned descriptions
        #   to include only those that are associated with this application.
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html
        #
        def describe_events(options={})
          request({
                      'Operation'    => 'DescribeEvents',
                      :parser     => Fog::Parsers::AWS::ElasticBeanstalk::DescribeEvents.new
                  }.merge(options))
        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/requests/beanstalk/describe_events.rb