# File lib/wsman.rb, line 456
  def create_targeted_config_job(svc_class_uri, fqdd)
    puts "Creating targeted config job..."

    cmd = "#{INVOKE_CMD} -a CreateTargetedConfigJob -k Target=#{fqdd} -k ScheduledStartTime=TIME_NOW -k RebootJobType=1"
    output = self.command(cmd, svc_class_uri)
    returnVal = self.current_value(output, "CreateTargetedConfigJob")

    if returnVal.to_i == RETURN_CFG_JOB
      puts "Successfully created a config job..."

      wsInstance = self.process_response(output,'["Body"]["CreateTargetedConfigJob_OUTPUT"]["Job"]')
      jobURI = get_job_selector(wsInstance)

      if jobURI.nil?
        puts "Unable to parse JID for targeted config job on #{fqdd}...Exiting"
      else
        poll_job_for_completion(jobURI)
      end
    end
  end