Sha256: c793af97dc10f2546be7a622c612e0ff5f2644187326b00ef9785319ca5a672a
Contents?: true
Size: 608 Bytes
Versions: 21
Compression:
Stored size: 608 Bytes
Contents
module Fog module Brightbox class Compute class Real # @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/#account_list_accounts # def list_accounts(options = {}) options.merge!(:nested => "false") unless options.key?(:nested) wrapped_request("get", "/1.0/accounts", [200], options) end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems