Sha256: 44763878fcbdbe5e4dd6d2c75aee47d5c560e26bf715bd469f07714b8f72eee1
Contents?: true
Size: 431 Bytes
Versions: 18
Compression:
Stored size: 431 Bytes
Contents
require 'fog/core/collection' require 'fog/aws/models/beanstalk/event' module Fog module AWS class ElasticBeanstalk class Events < Fog::Collection model Fog::AWS::ElasticBeanstalk::Event def all(options={}) data = connection.describe_events(options).body['DescribeEventsResult']['Events'] load(data) # data is an array of attribute hashes end end end end end
Version data entries
18 entries across 18 versions & 9 rubygems