Sha256: 414656dde3c6341f88083a4e3aeae555fd6980296291c7f794fbfef47c20b8c6
Contents?: true
Size: 585 Bytes
Versions: 12
Compression:
Stored size: 585 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get full details of the application. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] The JSON response parsed to a Hash # # @see https://api.gb1.brightbox.com/1.0/#application_get_application # def get_application(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/applications/#{identifier}", [200]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems