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/opennebula/models/compute/group.rb

23 lines
370 B
Ruby
Raw Normal View History

2014-04-24 04:49:02 -04:00
require 'fog/core/model'
module Fog
module Compute
class OpenNebula
class Group < Fog::Model
identity :id
attribute :name
def save
2014-05-14 02:55:12 -04:00
raise Fog::Errors::Error.new('Creating a new group is not yet implemented. Contributions welcome!')
2014-04-24 04:49:02 -04:00
end
2014-05-15 07:54:57 -04:00
def to_label
name
end
2014-04-24 04:49:02 -04:00
end
end
end
end