Sha256: b60e19452171432877b9ca58cdd3c6d71fe0a6e63bac971ba90ac17213dd67ef
Contents?: true
Size: 751 Bytes
Versions: 23
Compression:
Stored size: 751 Bytes
Contents
module Fog module Brightbox class Compute 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
23 entries across 23 versions & 1 rubygems