Sha256: 1371b7847cd0416d15671f0fa12c93d561331db3e1f5585e3b0623b8470060fc
Contents?: true
Size: 694 Bytes
Versions: 23
Compression:
Stored size: 694 Bytes
Contents
module Fog module Brightbox class Compute class Real # Get full details of the account. # # @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/#account_get_account # def get_account(identifier = nil, options = {}) wrapped_request("get", "/1.0/accounts/#{identifier}", [200], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems