Sha256: 21c47d4a096f21aea01137c3d3ac91314b3f75e1b6f090734f689a45896cf007
Contents?: true
Size: 810 Bytes
Versions: 23
Compression:
Stored size: 810 Bytes
Contents
module Fog module Brightbox class Compute class Real # Ends an existing 'accepted' collaboration # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#user_collaboration_delete_user_collaboration # def delete_user_collaboration(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/user/collaborations/#{identifier}", [200], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems