Sha256: 33d9ba8895ffc418ab3ad8b94c9dfc7d8d69cec10541e01b850cc6ed0b476330
Contents?: true
Size: 563 Bytes
Versions: 2
Compression:
Stored size: 563 Bytes
Contents
module Fog module Compute class StormOnDemand class Notifications < Fog::Collection model Fog::Compute::StormOnDemand::Notification def all(options = {}) data = service.list_notifications(options).body['items'] load(data) end def current(options = {}) data = service.current_notifications(options).body['items'] load(data) end def get(options) data = service.get_notification(options).body new(data) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-storm_on_demand-0.1.0 | lib/fog/compute/storm_on_demand/models/notifications.rb |
fog-storm_on_demand-0.0.1 | lib/fog/compute/storm_on_demand/models/notifications.rb |