Sha256: 090dcc3885be5b8f2753e6201746f44909f1d258d93f0949bb9b52e0ba5996a7
Contents?: true
Size: 942 Bytes
Versions: 98
Compression:
Stored size: 942 Bytes
Contents
module Fog module AWS class ElasticBeanstalk class Real require '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
98 entries across 96 versions & 6 rubygems