1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

38 lines
1.1 KiB
Ruby

module Fog
module AWS
class Elasticache
class Real
require 'fog/aws/parsers/elasticache/describe_cache_clusters'
# Deletes a Cache Cluster
#
# === Parameter (required):
# * id <~String> - The ID of the cache cluster to delete
# === Returns
# * response <~Excon::Response>:
# * body <~Hash>
def delete_cache_cluster(cluster_id)
request(
'Action' => 'DeleteCacheCluster',
'CacheClusterId' => cluster_id,
:parser => Fog::Parsers::AWS::Elasticache::DescribeCacheClusters.new
)
end
end
class Mock
def delete_cache_cluster(cluster_id)
response = Excon::Response.new
cluster = self.data[:clusters][cluster_id]
cluster['CacheClusterStatus'] = 'deleting'
response.body = {
'CacheClusters' => self.data[:clusters].values,
'ResponseMetadata' => { 'RequestId' => Fog::AWS::Mock.request_id }
}
self.data[:clusters].delete(cluster_id)
response
end
end
end
end
end