mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
19 lines
354 B
Ruby
19 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
|