Sha256: 9aea13a60bff87506834af6f1f5de71100ce31eab46074ca5ca21f755453f8ff

Contents?: true

Size: 759 Bytes

Versions: 7

Compression:

Stored size: 759 Bytes

Contents

module Fog
  module Compute
    class Brightbox
      class Real
        # Lists events related to the account.
        #
        # @api private
        #
        # @param [Hash] options
        # @option options [String] :limit Limit of pagination
        # @option options [String] :offset Offset of pagination
        # @option options [String] :resource_id Filter events for given resource_id
        #
        # @return [Hash] if successful Hash version of JSON object
        # @return [NilClass] if no options were passed
        #
        # @see https://api.gb1.brightbox.com/1.0/#event_list_events
        #
        def list_events(options = {})
          wrapped_request("get", "/1.0/events", [200], options)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-brightbox-0.9.0/lib/fog/brightbox/requests/compute/list_events.rb
fog-brightbox-0.9.0 lib/fog/brightbox/requests/compute/list_events.rb
fog-brightbox-0.8.0 lib/fog/brightbox/requests/compute/list_events.rb
fog-brightbox-0.7.2 lib/fog/brightbox/requests/compute/list_events.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-brightbox-0.7.1/lib/fog/brightbox/requests/compute/list_events.rb
fog-brightbox-0.7.1 lib/fog/brightbox/requests/compute/list_events.rb
fog-brightbox-0.7.0 lib/fog/brightbox/requests/compute/list_events.rb