Sha256: b49eee4fa11e0687eefa368e4925d7d767d89ac17676d0b1ede2fb32afcb963d
Contents?: true
Size: 707 Bytes
Versions: 16
Compression:
Stored size: 707 Bytes
Contents
require "fog/brightbox/models/compute/user_collaboration" module Fog module Compute class Brightbox class UserCollaborations < Fog::Collection model Fog::Compute::Brightbox::UserCollaboration def all data = service.list_user_collaborations load(data) end def get(identifier) return nil if identifier.nil? || identifier == "" data = service.get_user_collaboration(identifier) new(data) rescue Excon::Errors::NotFound nil end def destroy requires :identity service.destroy_user_collaboration(identity) true end end end end end
Version data entries
16 entries across 14 versions & 3 rubygems