Sha256: bef5817ba73d76aeb1c6b082c80d5b38f0874772944af0f185db4305c2d393a1
Contents?: true
Size: 1.13 KB
Versions: 13
Compression:
Stored size: 1.13 KB
Contents
module Fog module Compute class Brightbox class Real # Get full details of the account. # # @overload get_account(identifier, options = {}) # @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. # # @overload get_account() # @deprecated Use {Fog::Compute::Brightbox::Real#get_scoped_account} instead # # @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 = {}) if identifier.nil? || identifier.empty? Fog::Logger.deprecation("get_account() without a parameter is deprecated, use get_scoped_account instead [light_black](#{caller.first})[/]") get_scoped_account else wrapped_request("get", "/1.0/accounts/#{identifier}", [200], options) end end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems