def parse_response(self, response):
     response_dict = requestbuilder.request.AWSQueryRequest.parse_response(
         self, response)
     # EUARE responses enclose their useful data inside FooResponse
     # elements.  If that's all we have after stripping out ResponseMetadata
     # then just return its contents.
     return strip_response_metadata(response_dict)
Exemple #2
0
 def parse_response(self, response):
     response_dict = requestbuilder.request.AWSQueryRequest.parse_response(
         self, response)
     # EUARE responses enclose their useful data inside FooResponse
     # elements.  If that's all we have after stripping out ResponseMetadata
     # then just return its contents.
     return strip_response_metadata(response_dict)
Exemple #3
0
 def parse_response(self, response):
     response_dict = requestbuilder.request.AWSQueryRequest.parse_response(
         self, response)
     return strip_response_metadata(response_dict)
Exemple #4
0
 def parse_response(self, response):
     response_dict = AWSQueryRequest.parse_response(self, response)
     return strip_response_metadata(response_dict)