Sha256: 266032d432700a7bf108eeb17b58022123717326b380ab936a01659a9a14c2f1
Contents?: true
Size: 552 Bytes
Versions: 26
Compression:
Stored size: 552 Bytes
Contents
module Fog module Brightbox class Compute class Real def resize_server(identifier, options = {}) request( :expects => [202], :method => 'POST', :path => "/1.0/servers/#{identifier}/resize", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def resize_server(identifier, options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems