Sha256: c4fae3637f35a955bbb82f04062b4110f7cde9ffa0efa14c72c4240ef79560a1
Contents?: true
Size: 804 Bytes
Versions: 35
Compression:
Stored size: 804 Bytes
Contents
module Fog module HP class Network class Real # Delete an existing network # # ==== Parameters # * 'network_id'<~String> - UUId for the network to delete def delete_network(network_id) request( :expects => 204, :method => 'DELETE', :path => "networks/#{network_id}" ) end end class Mock def delete_network(network_id) response = Excon::Response.new if list_networks.body['networks'].detect {|_| _['id'] == network_id} self.data[:networks].delete(network_id) response.status = 204 response else raise Fog::HP::Network::NotFound end end end end end end
Version data entries
35 entries across 35 versions & 2 rubygems