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