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