4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# File 'lib/fog/compute.rb', line 4
def self.new(attributes)
attributes = attributes.dup case provider = attributes[:provider] when 'AWS'
require 'fog/compute/aws'
Fog::AWS::Compute.new(attributes)
when 'Bluebox'
require 'fog/compute/bluebox'
Fog::Bluebox::Compute.new(attributes)
when 'Brightbox'
require 'fog/compute/brightbox'
Fog::Brightbox::Compute.new(attributes)
when 'Ecloud'
require 'fog/compute/ecloud'
Fog::Ecloud::Compute.new(attributes)
when 'GoGrid'
require 'fog/compute/go_grid'
Fog::GoGrid::Compute.new(attributes)
when 'Linode'
require 'fog/compute/linode'
Fog::Linode::Compute.new(attributes)
when 'NewServers'
require 'fog/compute/new_servers'
Fog::NewServers::Compute.new(attributes)
when 'Rackspace'
require 'fog/compute/rackspace'
Fog::Rackspace::Compute.new(attributes)
when 'Voxel'
require 'fog/compute/voxel'
Fog::Voxel::Compute.new(attributes)
when 'Slicehost'
require 'fog/compute/slicehost'
Fog::Slicehost::Compute.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized compute provider")
end
end
|