public function getUpdateMapping(UpdateMappingRequest $updateMappingRequest, UpdateMappingRequestOptions $options)
 {
     $response = $this->doSimpleRequest($this->getMappingIdURL($options->getMappingId()), Connector::PUT, $this->generateUpdateMappingXML($updateMappingRequest));
     $xml = simplexml_load_string($response);
     return $this->buildUpdateMapping($xml);
 }