Sha256: 5b270ed3b6f341de45978dee8cb4bc9d8f8f3b072319ff974cc024443682809e
Contents?: true
Size: 592 Bytes
Versions: 66
Compression:
Stored size: 592 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] if successful Hash version of JSON object # # @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
66 entries across 66 versions & 4 rubygems