fog--fog/lib/fog/joyent/requests/compute/update_machine_metadata.rb

16 lines
312 B
Ruby

module Fog
module Compute
class Joyent
class Real
def update_machine_metadata(machine_id, metadata)
request(
:method => "POST",
:path => "/my/machines/#{machine_id}/metadata",
:body => metadata
)
end
end
end
end
end