Sha256: 23c290a71b5b46f49060b8b991c28cbf96b9f8449dcb974d12d76ddf90aa8091

Contents?: true

Size: 768 Bytes

Versions: 23

Compression:

Stored size: 768 Bytes

Contents

module Fog
  module Brightbox
    class Compute
      class Real
        # Get full details of the application.
        #
        # @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/#application_get_application
        #
        def get_application(identifier, options = {})
          return nil if identifier.nil? || identifier == ""
          wrapped_request("get", "/1.0/applications/#{identifier}", [200], options)
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
fog-brightbox-1.1.0 lib/fog/brightbox/requests/compute/get_application.rb
fog-brightbox-1.0.0 lib/fog/brightbox/requests/compute/get_application.rb
fog-brightbox-1.0.0.rc2 lib/fog/brightbox/requests/compute/get_application.rb