1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/models/orchestration/event.rb
2014-12-12 14:22:07 -05:00

18 lines
354 B
Ruby

module Fog
module Rackspace
class Orchestration
class Event < Fog::Model
include Reflectable
identity :id
%w{resource_name event_time links logical_resource_id resource_status
resource_status_reason physical_resource_id}.each do |a|
attribute a.to_sym
end
end
end
end
end