Sha256: 8a623ce87370c813cea759306ae715f67231281ac033cc3336c434c34e36a665
Contents?: true
Size: 551 Bytes
Versions: 28
Compression:
Stored size: 551 Bytes
Contents
module Fog module Compute class Cloudstack class Real # A command to list events. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listEvents.html] def list_events(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listEvents') else options.merge!('command' => 'listEvents') end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems