Sha256: a66c5f31db695f7bbfdc1b2fe918cea968b1598463c16019056e663f9689c721
Contents?: true
Size: 528 Bytes
Versions: 8
Compression:
Stored size: 528 Bytes
Contents
module Fog module Brightbox class Compute class Real def create_load_balancer(options = {}) request( :expects => [202], :method => 'POST', :path => "/1.0/load_balancers", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def create_load_balancer(options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
8 entries across 8 versions & 2 rubygems