mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
module Fog
|
|
module Compute
|
|
class Aws
|
|
class Real
|
|
require 'fog/aws/parsers/compute/basic'
|
|
|
|
# Deletes a network ACL.
|
|
#
|
|
# ==== Parameters
|
|
# * network_acl_id<~String> - The ID of the network ACL you want to delete.
|
|
#
|
|
# === Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'requestId'<~String> - Id of request
|
|
# * 'return'<~Boolean> - Returns true if the request succeeds.
|
|
#
|
|
# {Amazon API Reference}[http://docs.aws.amazon.com/AwsEC2/latest/APIReference/ApiReference-query-DeleteNetworkAcl.html]
|
|
def delete_network_acl(network_acl_id)
|
|
request(
|
|
'Action' => 'DeleteNetworkAcl',
|
|
'NetworkAclId' => network_acl_id,
|
|
:parser => Fog::Parsers::Compute::AWS::Basic.new
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_network_acl(network_acl_id)
|
|
response = Excon::Response.new
|
|
if self.data[:network_acls][network_acl_id]
|
|
|
|
if self.data[:network_acls][network_acl_id]['associationSet'].any?
|
|
raise Fog::Compute::AWS::Error.new("ACL is in use")
|
|
end
|
|
|
|
self.data[:network_acls].delete(network_acl_id)
|
|
|
|
response.status = 200
|
|
response.body = {
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
'return' => true
|
|
}
|
|
response
|
|
else
|
|
raise Fog::Compute::AWS::NotFound.new("The network ACL '#{network_acl_id}' does not exist")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|