Sha256: 0ce092c33d22448a22c4648688dbb3114e9c1264123a7d2289407f9f820d5b43
Contents?: true
Size: 502 Bytes
Versions: 9
Compression:
Stored size: 502 Bytes
Contents
module Fog module Brightbox class Compute class Real def activate_console_server(identifier, options = {}) return nil if identifier.nil? || identifier == "" request( :expects => [202], :method => 'POST', :path => "/1.0/servers/#{identifier}/activate_console", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end end end end
Version data entries
9 entries across 9 versions & 2 rubygems