Sha256: 22a56806215910ed2fe9bacf8f13d906d4dcf5da1bdef7c6fbbc3e3a660bec44
Contents?: true
Size: 621 Bytes
Versions: 26
Compression:
Stored size: 621 Bytes
Contents
module Fog module Brightbox class Compute class Real def destroy_api_client(identifier, options = {}) return nil if identifier.nil? || identifier == "" request( :expects => [200], :method => 'DELETE', :path => "/1.0/api_clients/#{identifier}", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def destroy_api_client(identifier, options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems