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/aws/requests/elasticache/delete_cache_cluster.rb

32 lines
790 B
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)
Fog::Mock.not_implemented
end
end
end
end
end