Sha256: 57717ac7f73913369aa00f3dfa7f9e424c0d4dad10f040eaf5fe09819b8fc3b1
Contents?: true
Size: 881 Bytes
Versions: 23
Compression:
Stored size: 881 Bytes
Contents
module Fog module Brightbox class Compute 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 # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @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
23 entries across 23 versions & 1 rubygems