1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[brightbox|compute] Remove resize request since not available

This commit is contained in:
Paul Thornthwaite 2012-05-09 10:01:16 +01:00
parent 3e9b9b306a
commit 00896b88ac
2 changed files with 0 additions and 20 deletions

View file

@ -86,7 +86,6 @@ module Fog
request :remove_servers_server_group
request :reset_ftp_password_account
request :reset_secret_api_client
request :resize_server
request :shutdown_server
request :snapshot_server
request :start_server

View file

@ -1,19 +0,0 @@
module Fog
module Compute
class Brightbox
class Real
def resize_server(identifier, options = {})
request(
:expects => [202],
:method => 'POST',
:path => "/1.0/servers/#{identifier}/resize",
:headers => {"Content-Type" => "application/json"},
:body => Fog::JSON.encode(options)
)
end
end
end
end
end