Sha256: 8e62c393752ac8786184dc8ab3ef8cb23c71c66bf47e3b99336fe75fb3ca847f
Contents?: true
Size: 591 Bytes
Versions: 7
Compression:
Stored size: 591 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
7 entries across 7 versions & 2 rubygems