lib/fog/openstack/models/compute/image.rb in fog-1.22.0 vs lib/fog/openstack/models/compute/image.rb in fog-1.22.1
- old
+ new
@@ -2,13 +2,11 @@
require 'fog/openstack/models/compute/metadata'
module Fog
module Compute
class OpenStack
-
class Image < Fog::Model
-
identity :id
attribute :name
attribute :created_at, :aliases => 'created'
attribute :updated_at, :aliases => 'updated'
@@ -48,11 +46,9 @@
end
def ready?
status == 'ACTIVE'
end
-
end
-
end
end
end