lib/fog/joyent/requests/compute/get_machine_metadata.rb in fog-1.22.0 vs lib/fog/joyent/requests/compute/get_machine_metadata.rb in fog-1.22.1
- old
+ new
@@ -1,10 +1,9 @@
module Fog
module Compute
class Joyent
class Real
-
def get_machine_metadata(machine_id, options = {})
query = {}
if options[:credentials]
if options[:credentials].is_a?(Boolean)
query[:credentials] = options[:credentials]
@@ -17,10 +16,9 @@
:path => "/my/machines/#{machine_id}/metadata",
:query => query,
:idempotent => true
)
end
-
end
end
end
end