1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/bin/aws.rb

76 lines
2.2 KiB
Ruby
Raw Normal View History

class AWS < Fog::Bin
class << self
def class_for(key)
case key
when :cdn
Fog::AWS::CDN
when :compute, :ec2
Fog::AWS::Compute
when :dns
Fog::AWS::DNS
when :elb
Fog::AWS::ELB
when :iam
Fog::AWS::IAM
when :sdb
Fog::AWS::SimpleDB
when :ses
Fog::AWS::SES
when :eu_storage, :s3, :storage
Fog::AWS::Storage
else
# @todo Replace most instances of ArgumentError with NotImplementedError
# @todo For a list of widely supported Exceptions, see:
# => http://www.zenspider.com/Languages/Ruby/QuickRef.html#35
raise ArgumentError, "Unsupported #{self} service: #{key}"
end
end
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :cdn
Fog::CDN.new(:provider => 'AWS')
when :compute
Fog::Compute.new(:provider => 'AWS')
when :dns
Fog::DNS.new(:provider => 'AWS')
when :ec2
location = caller.first
warning = "[yellow][WARN] AWS[:ec2] is deprecated, use AWS[:compute] instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Compute.new(:provider => 'AWS')
when :elb
Fog::AWS::ELB.new
when :iam
Fog::AWS::IAM.new
2010-09-23 13:48:52 -04:00
when :eu_storage
Fog::Storage.new(:provider => 'AWS', :region => 'eu-west-1')
when :sdb
Fog::AWS::SimpleDB.new
when :ses
Fog::AWS::SES.new
when :s3
location = caller.first
warning = "[yellow][WARN] AWS[:s3] is deprecated, use AWS[:storage] instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
Fog::Storage.new(:provider => 'AWS')
when :storage
Fog::Storage.new(:provider => 'AWS')
else
raise ArgumentError, "Unrecognized service: #{service}"
end
end
@@connections[service]
end
def services
[:cdn, :compute, :dns, :elb, :iam, :sdb, :ses, :storage]
end
end
end