fog/fog-storm_on_demand

View on GitHub
lib/fog/compute/storm_on_demand/models/notification.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Compute
    class StormOnDemand
      class Notification < Fog::Model
        identity :id
        attribute :category
        attribute :description
        attribute :enddate
        attribute :last_alert
        attribute :modifieddate
        attribute :resolved
        attribute :severity
        attribute :startdate
        attribute :system
        attribute :system_identifier
        attribute :uniq_id

        def resolve
          requires :identity
          service.resolve_notification(:id => identity).body
        end
      end
    end
  end
end