lib/fog/aws/elasticache.rb in fog-1.15.0 vs lib/fog/aws/elasticache.rb in fog-1.16.0
- old
+ new
@@ -3,10 +3,11 @@
class Elasticache < Fog::Service
extend Fog::AWS::CredentialFetcher::ServiceMethods
class IdentifierTaken < Fog::Errors::Error; end
class InvalidInstance < Fog::Errors::Error; end
+ class AuthorizationAlreadyExists < Fog::Errors::Error; end
requires :aws_access_key_id, :aws_secret_access_key
recognizes :region, :host, :path, :port, :scheme, :persistent, :use_iam_profile, :aws_session_token, :aws_credentials_expire_at
request_path 'fog/aws/requests/elasticache'
@@ -128,9 +129,10 @@
def self.data
@data ||= Hash.new do |hash, region|
hash[region] = Hash.new do |region_hash, key|
region_hash[key] = {
:clusters => {}, # cache cluster data, indexed by cluster ID
+ :security_groups => {}, # security groups
}
end
end
end