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/cdn/delete_distribution.rb
2010-11-02 11:17:09 -07:00

36 lines
916 B
Ruby

module Fog
module AWS
class CDN
class Real
# Delete a distribution from CloudFront
#
# ==== Parameters
# * distribution_id<~String> - Id of distribution to delete
# * etag<~String> - etag of that distribution from earlier get or put
#
# ==== See Also
# http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DeleteDistribution.html
def delete_distribution(distribution_id, etag)
request({
:expects => 204,
:headers => { 'If-Match' => etag },
:idempotent => true,
:method => 'DELETE',
:path => "/distribution/#{distribution_id}"
})
end
end
class Mock # :nodoc:all
def delete_distribution(distribution_id, etag)
Fog::Mock.not_implemented
end
end
end
end
end