Sha256: c42050ff9f09c0b6198c44b581856efa51c9132b9a518a0cd9d11c1f09df7b07
Contents?: true
Size: 547 Bytes
Versions: 1
Compression:
Stored size: 547 Bytes
Contents
module Fog module Compute class Brightbox class Real def update_api_client(identifier, options = {}) return nil if identifier.nil? || identifier == "" return nil if options.empty? || options.nil? request( :expects => [200], :method => 'PUT', :path => "/1.0/api_clients/#{identifier}", :headers => {"Content-Type" => "application/json"}, :body => MultiJson.encode(options) ) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-0.10.0 | lib/fog/compute/requests/brightbox/update_api_client.rb |