Sha256: a31cba28c182a0f90ccd37085cf2dc0cc1c82eae406040c32c2426f6b7fc405f
Contents?: true
Size: 816 Bytes
Versions: 43
Compression:
Stored size: 816 Bytes
Contents
module Fog module Compute class CloudSigma class Real def open_vnc(server_id) request(:path => "servers/#{server_id}/action/", :method => 'POST', :query => {:do => :open_vnc}, :expects => [200, 202]) end end class Mock def open_vnc(server_id) response = Excon::Response.new response.status = 200 host = @init_options[:cloudsigma_host] port = Fog::Mock.random_number(65000) vnc_url = "vnc://#{host}:#{port}" response.body = { 'action' => 'open_vnc', 'result' => 'success', 'uuid' => server_id, 'vnc_url' => vnc_url } response end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems