# File lib/fog/openstack/requests/compute/remove_fixed_ip.rb, line 12
        def remove_fixed_ip(server_id, address)
          body = {
            'removeFixedIp' => {
              'address' => address
            }
          }
          server_action(server_id, body).status == 202
        end