Esempio n. 1
0
 def parse_response(self, response):
     response_dict = AWSQueryRequest.parse_response(self, response)
     useful_keys = list(filter(lambda x: x != "ResponseMetadata", response_dict.keys()))
     if len(useful_keys) == 1:
         return response_dict[useful_keys[0]] or {}
     else:
         return response_dict
Esempio n. 2
0
 def parse_response(self, response):
     response_dict = AWSQueryRequest.parse_response(self, response)
     useful_keys = list(
         filter(lambda x: x != 'ResponseMetadata', response_dict.keys()))
     if len(useful_keys) == 1:
         return response_dict[useful_keys[0]] or {}
     else:
         return response_dict
Esempio n. 3
0
 def parse_response(self, response):
     response_dict = AWSQueryRequest.parse_response(self, response)
     return strip_response_metadata(response_dict)
Esempio n. 4
0
 def __init__(self, **kwargs):
     AWSQueryRequest.__init__(self, **kwargs)
Esempio n. 5
0
 def parse_response(self, response):
     response_dict = AWSQueryRequest.parse_response(self, response)
     return strip_response_metadata(response_dict)
Esempio n. 6
0
 def __init__(self, **kwargs):
     AWSQueryRequest.__init__(self, **kwargs)