mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
432 B
Ruby
23 lines
432 B
Ruby
![]() |
module Fog
|
||
|
module Compute
|
||
|
class RackspaceV2
|
||
|
class Real
|
||
|
def update_server(server_id, name)
|
||
|
data = {
|
||
|
'server' => {
|
||
|
'name' => name
|
||
|
}
|
||
|
}
|
||
|
|
||
|
request(
|
||
|
:body => Fog::JSON.encode(data),
|
||
|
:expects => [200],
|
||
|
:method => 'PUT',
|
||
|
:path => "servers/#{server_id}"
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|