// ExtractRequestID extracts the Azure server generated request identifier from the // x-ms-request-id header. func ExtractRequestID(resp *http.Response) string { return autorest.ExtractHeaderValue(HeaderRequestID, resp) }
// ExtractClientID extracts the client identifier from the x-ms-client-request-id header set on the // http.Request sent to the service (and returned in the http.Response) func ExtractClientID(resp *http.Response) string { return autorest.ExtractHeaderValue(HeaderClientID, resp) }