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
2014-06-16 08:32:34 +02:00

22 lines
370 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class OpenNebula
class Group < Fog::Model
identity :id
attribute :name
def save
raise Fog::Errors::Error.new('Creating a new group is not yet implemented. Contributions welcome!')
end
def to_label
name
end
end
end
end
end