2012-10-19 11:38:44 -04:00
|
|
|
require "fog/core/collection"
|
|
|
|
require "fog/brightbox/models/compute/user_collaboration"
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Brightbox
|
|
|
|
class UserCollaborations < Fog::Collection
|
|
|
|
model Fog::Compute::Brightbox::UserCollaboration
|
|
|
|
|
|
|
|
def all
|
2013-08-07 07:54:49 -04:00
|
|
|
data = service.list_user_collaborations
|
2012-10-19 11:38:44 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
2013-08-07 06:30:58 -04:00
|
|
|
def get(identifier)
|
|
|
|
return nil if identifier.nil? || identifier == ""
|
|
|
|
data = service.get_user_collaboration(identifier)
|
|
|
|
new(data)
|
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2012-10-19 11:38:44 -04:00
|
|
|
def destroy
|
|
|
|
requires :identity
|
2013-08-07 07:54:49 -04:00
|
|
|
service.destroy_user_collaboration(identity)
|
2012-10-19 11:38:44 -04:00
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|