fog--fog/lib/fog/vsphere.rb

18 lines
303 B
Ruby
Raw Normal View History

require 'fog/core'
module Fog
module Vsphere
extend Fog::Provider
module Errors
class ServiceError < Fog::Errors::Error; end
class SecurityError < ServiceError; end
class NotFound < ServiceError; end
end
service(:compute, 'vsphere/compute', 'Compute')
end
end