# File lib/fog/nfv/openstack/requests/create_vnf.rb, line 26
        def create_vnf(_)
          response = Excon::Response.new
          response.status = 201

          create_data = data[:vnfs].first.merge("vnfd_id" => "id")
          response.body = {"vnf" => create_data}
          response
        end