Sha256: 78e1088fb8a13471f19885f7bdfd111ee7f0ed07bf6be066a423da51c5aa40b4
Contents?: true
Size: 881 Bytes
Versions: 13
Compression:
Stored size: 881 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 # @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
13 entries across 11 versions & 2 rubygems