Sha256: 028d58b715a31fd079ce050b2c0d3cc2a34a44b727b959198ba683637225305a
Contents?: true
Size: 804 Bytes
Versions: 22
Compression:
Stored size: 804 Bytes
Contents
module Fog module Brightbox class Compute class Real # Shows details of the specified 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_get_user_collaboration # def get_user_collaboration(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/user/collaborations/#{identifier}", [200], options) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems