Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def _convert_response_to_queue(response):
root = ETree.fromstring(response.body)
return _convert_etree_element_to_queue(root)
def _convert_response_to_event_hub(response):
root = ETree.fromstring(response.body)
return _convert_etree_element_to_event_hub(root)
def _convert_response_to_topic(response):
root = ETree.fromstring(response.body)
return _convert_etree_element_to_topic(root)