2010-09-21 14:11:15 -04:00
|
|
|
class AWS < Fog::Bin
|
2010-02-12 00:41:37 -05:00
|
|
|
class << self
|
2010-09-07 18:39:38 -04:00
|
|
|
|
2010-12-06 22:49:58 -05:00
|
|
|
def class_for(key)
|
|
|
|
case key
|
2011-06-12 16:07:42 -04:00
|
|
|
when :auto_scaling
|
|
|
|
Fog::AWS::AutoScaling
|
2012-03-15 20:19:15 -04:00
|
|
|
when :beanstalk
|
|
|
|
Fog::AWS::ElasticBeanstalk
|
2010-12-06 22:49:58 -05:00
|
|
|
when :cdn
|
2011-06-15 20:32:15 -04:00
|
|
|
Fog::CDN::AWS
|
2011-02-26 15:18:42 -05:00
|
|
|
when :cloud_formation
|
|
|
|
Fog::AWS::CloudFormation
|
2011-05-17 12:29:17 -04:00
|
|
|
when :cloud_watch
|
|
|
|
Fog::AWS::CloudWatch
|
2011-02-16 18:07:42 -05:00
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute::AWS
|
2012-01-21 21:31:36 -05:00
|
|
|
when :ddb, :dynamodb
|
|
|
|
Fog::AWS::DynamoDB
|
2010-12-14 00:04:23 -05:00
|
|
|
when :dns
|
2011-06-15 20:25:01 -04:00
|
|
|
Fog::DNS::AWS
|
2011-09-06 15:51:30 -04:00
|
|
|
when :elasticache
|
|
|
|
Fog::AWS::Elasticache
|
2010-12-06 22:49:58 -05:00
|
|
|
when :elb
|
|
|
|
Fog::AWS::ELB
|
2011-11-03 13:57:21 -04:00
|
|
|
when :emr
|
|
|
|
Fog::AWS::EMR
|
2010-12-06 22:49:58 -05:00
|
|
|
when :iam
|
|
|
|
Fog::AWS::IAM
|
2011-02-09 19:39:37 -05:00
|
|
|
when :sdb, :simpledb
|
2010-12-06 22:49:58 -05:00
|
|
|
Fog::AWS::SimpleDB
|
2011-01-25 20:28:03 -05:00
|
|
|
when :ses
|
|
|
|
Fog::AWS::SES
|
2011-07-19 16:10:26 -04:00
|
|
|
when :sqs
|
|
|
|
Fog::AWS::SQS
|
2011-02-16 19:41:39 -05:00
|
|
|
when :eu_storage, :storage
|
2011-06-15 17:26:43 -04:00
|
|
|
Fog::Storage::AWS
|
2011-02-27 16:09:12 -05:00
|
|
|
when :rds
|
|
|
|
Fog::AWS::RDS
|
2011-03-18 01:43:59 -04:00
|
|
|
when :sns
|
|
|
|
Fog::AWS::SNS
|
2011-11-13 15:16:22 -05:00
|
|
|
when :sts
|
|
|
|
Fog::AWS::STS
|
2010-12-09 21:44:22 -05:00
|
|
|
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
|
2010-12-06 22:49:58 -05:00
|
|
|
raise ArgumentError, "Unsupported #{self} service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
2011-01-14 13:41:12 -05:00
|
|
|
hash[key] = case key
|
2011-06-12 16:07:42 -04:00
|
|
|
when :auto_scaling
|
|
|
|
Fog::AWS::AutoScaling.new
|
2012-03-28 22:06:05 -04:00
|
|
|
when :beanstalk
|
|
|
|
Fog::AWS::ElasticBeanstalk.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :cdn
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("AWS[:cdn] is not recommended, use CDN[:aws] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::CDN.new(:provider => 'AWS')
|
2011-03-14 21:19:20 -04:00
|
|
|
when :cloud_formation
|
|
|
|
Fog::AWS::CloudFormation.new
|
2011-05-17 12:29:17 -04:00
|
|
|
when :cloud_watch
|
|
|
|
Fog::AWS::CloudWatch.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :compute
|
2012-01-14 18:39:15 -05:00
|
|
|
Fog::Logger.warning("AWS[:compute] is not recommended, use Compute[:aws] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Compute.new(:provider => 'AWS')
|
2012-01-21 21:31:36 -05:00
|
|
|
when :ddb, :dynamodb
|
|
|
|
Fog::AWS::DynamoDB.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :dns
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("AWS[:dns] is not recommended, use DNS[:aws] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::DNS.new(:provider => 'AWS')
|
2011-09-06 15:51:30 -04:00
|
|
|
when :elasticache
|
|
|
|
Fog::AWS::Elasticache.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :elb
|
|
|
|
Fog::AWS::ELB.new
|
2011-11-03 13:57:21 -04:00
|
|
|
when :emr
|
|
|
|
Fog::AWS::EMR.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :iam
|
|
|
|
Fog::AWS::IAM.new
|
2011-02-27 16:09:12 -05:00
|
|
|
when :rds
|
|
|
|
Fog::AWS::RDS.new
|
2010-09-23 13:48:52 -04:00
|
|
|
when :eu_storage
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Storage.new(:provider => 'AWS', :region => 'eu-west-1')
|
2011-02-09 19:39:37 -05:00
|
|
|
when :sdb, :simpledb
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::AWS::SimpleDB.new
|
2011-01-25 20:28:03 -05:00
|
|
|
when :ses
|
|
|
|
Fog::AWS::SES.new
|
2011-07-19 16:10:26 -04:00
|
|
|
when :sqs
|
|
|
|
Fog::AWS::SQS.new
|
2011-01-12 20:55:24 -05:00
|
|
|
when :storage
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("AWS[:storage] is not recommended, use Storage[:aws] for portability")
|
2011-01-12 20:55:24 -05:00
|
|
|
Fog::Storage.new(:provider => 'AWS')
|
2011-03-18 01:43:59 -04:00
|
|
|
when :sns
|
|
|
|
Fog::AWS::SNS.new
|
2012-01-19 15:14:34 -05:00
|
|
|
when :sts
|
|
|
|
Fog::AWS::STS.new
|
2010-12-06 22:49:58 -05:00
|
|
|
else
|
2011-02-04 11:17:30 -05:00
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
|
|
|
end
|
2010-09-21 14:11:15 -04:00
|
|
|
@@connections[service]
|
|
|
|
end
|
2010-02-12 00:41:37 -05:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
def services
|
2011-02-04 11:17:30 -05:00
|
|
|
Fog::AWS.services
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|
2010-09-02 19:01:19 -04:00
|
|
|
|
2010-09-21 14:11:15 -04:00
|
|
|
end
|
2010-02-12 00:41:37 -05:00
|
|
|
end
|