コード例 #1
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)
コード例 #2
0
ファイル: __init__.py プロジェクト: bdacode/euca2ools
 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)
コード例 #3
0
ファイル: __init__.py プロジェクト: exg77/euca2ools
 def parse_response(self, response):
     response_dict = requestbuilder.request.AWSQueryRequest.parse_response(
         self, response)
     return strip_response_metadata(response_dict)
コード例 #4
0
ファイル: __init__.py プロジェクト: Juniper/euca2ools
 def parse_response(self, response):
     response_dict = AWSQueryRequest.parse_response(self, response)
     return strip_response_metadata(response_dict)