Sha256: 7b2a16c70d13839aafa1270beea4618c9a0e4dca7c00fdb9c26d8d43108287f2
Contents?: true
Size: 749 Bytes
Versions: 13
Compression:
Stored size: 749 Bytes
Contents
module Fog module Compute class Brightbox class Real # Create a new API client for the account. # # @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/#api_client_create_api_client # def create_api_client(options) wrapped_request("post", "/1.0/api_clients", [201], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems