Sha256: ba81a934852c2272d8f83c6bb40560877ffc2bc3ffa4789b08a803a38d7e77e1
Contents?: true
Size: 751 Bytes
Versions: 13
Compression:
Stored size: 751 Bytes
Contents
module Fog module Compute class Brightbox class Real # Create a new application for the user. # # @param [Hash] options # @option options [String] :name # @option options [String] :description # @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 # @return [NilClass] if no options were passed # # @see https://api.gb1.brightbox.com/1.0/#application_create_application # def create_application(options) wrapped_request("post", "/1.0/applications", [201], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems