class Fog::Compute::StormOnDemand::Notifications

Public Instance Methods

all(options={}) click to toggle source
# File lib/fog/storm_on_demand/models/compute/notifications.rb, line 10
def all(options={})
  data = service.list_notifications(options).body['items']
  load(data)
end
current(options={}) click to toggle source
# File lib/fog/storm_on_demand/models/compute/notifications.rb, line 15
def current(options={})
  data = service.current_notifications(options).body['items']
  load(data)
end
get(options) click to toggle source
# File lib/fog/storm_on_demand/models/compute/notifications.rb, line 20
def get(options)
  data = service.get_notification(options).body
  new(data)
end