mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
380 B
Ruby
20 lines
380 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Orchestration
|
|
class OpenStack
|
|
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
|