# File lib/fog/profitbricks/requests/compute/remove_nic_association.rb, line 27 def remove_nic_association(datacenter_id, load_balancer_id, _nic_id) if load_balancer = data[:load_balancers]['items'].find do |lb| lb["datacenter_id"] == datacenter_id && lb["id"] == load_balancer_id end else raise Fog::Errors::NotFound, "The requested resource could not be found" end response = Excon::Response.new response.status = 202 response end