Sha256: 8224b8424cc4edf2d2ba25d33f72ee5701e4971f59d4d512b4932a21bee15b45
Contents?: true
Size: 799 Bytes
Versions: 13
Compression:
Stored size: 799 Bytes
Contents
module Fog module Compute class Brightbox class Real # Rejects the 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_reject_user_collaboration # def reject_user_collaboration(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/user/collaborations/#{identifier}/reject", [200], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems