Sha256: 5e31ee6ba3ad99a75f36f4fcdec8671974a792582b2fc05e6e7f5bdb55de37d8
Contents?: true
Size: 760 Bytes
Versions: 22
Compression:
Stored size: 760 Bytes
Contents
module Fog module Brightbox class Compute class Real # Destroy the API client. # # @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/#api_client_delete_api_client # def delete_api_client(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/api_clients/#{identifier}", [200], options) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems